admin.databasePathNamespace

admin.databasePathNamespace(
   prefix as String,
   namespace-uri as String
) as element(db.pathNamespace)

Summary

This function constructs a namespace element with the specified prefix and URI.

Parameters
prefix The namespace prefix.
namespace-uri The namespace URI.

Example

  
  const admin = require('/MarkLogic/admin.xqy');

  admin.databasePathNamespace("aaa", "http://aaa.com")
  =>
    <pathNamespace xmlns="http://marklogic.com/xdmp/database">
      <prefix>aaa</prefix>
      <namespaceUri>http://aaa.com</namespaceUri>
    </pathNamespace>
   
Powered by MarkLogic Server | Terms of Use | Privacy Policy