cts:valid-tde-context

cts:valid-tde-context(
   $string as xs:string,
   [$map as map:map?]
) as xs:boolean

Summary

Parses path expressions and resolves namespaces using the $map parameter. Returns true if the argument is permissible as a context element in a TDE template.

Parameters
string The path to be tested as a string.
map A map of namespace bindings. The keys should be namespace prefixes and the values should be namespace URIs. These namespace bindings will be added to the in-scope namespace bindings in the evaluation of the path.

Example

  cts:valid-tde-context("/foo/bar[@baz = '1']")
  => true

Example

  xquery version "1.0-ml";
  let $namespaces := map:map()
  let $_ := map:put($namespaces, "ns1", "http://example.org/myns")
  return cts:valid-tde-context("/ns1:foo/ns1:bar[@baz = '1']",$namespaces)
  => true
Powered by MarkLogic Server | Terms of Use | Privacy Policy