that error.
==XPST: Static XPath Errors==
{| class="wikitable" width="100%"
| • A QName uses a prefix that has not been bound to any namespace, or<br />• A pragma or option declaration has not been prefixed.
|<code>unknown:x<hr/>(# pragma #) { 1 }</code>
|}
==XPST: Static XQuery Errors==
{| class="wikitable" width="100%"
! width="5%"|Code
! width="65%"|Description
! width="30%"|Examples
|- valign="top" scope="row"
|<code>XQST0009</code>
| The query imports a schema. Schema information is not supported in BaseX.
|<code>import schema "x"; ()</code>
|- valign="top" scope="row"
|<code></code>
|
|<code></code>
|}
|- valign="top" scope="row"
|<code>XQDY0074</code>
| The name of a computed attribute or element is invalid, or has uses an unknown unbound prefix.
|<code>element { "x y" } { "" }</code>
|- valign="top" scope="row"
|<code>XQDY0095</code>
| A sequence with more than one item was bound to a <code>group by</code> clause.
|<code>let $a := (1,2) group by $a return $a</code>
|- valign="top" scope="row"
|<code>XQDY0096</code>
| The node name of an element uses certain pre-defined prefixes or namespaces.
|<code>element { fn:QName("uri", "xml:n") } {}</code>
|}
==In Progress==