Loading TOC...

schematron:get

schematron:get(
   $schematron-uri as xs:string
) as document-node()

Summary

This function returns the validator XSLT from the modules database. If Schematron schema is not found a SCHEMATRON-SCHEMANOTFOUND error is thrown. If validator XSLT is not found, SCHEMATRON-VALIDATORNOTFOUND error is thrown.

Parameters
schematron-uri The URI of the Schematron schema in the schema database.

Example


xquery version "1.0-ml"; 
 
import module namespace schematron = "http://marklogic.com/xdmp/schematron" 
      at "/MarkLogic/schematron/schematron.xqy";

schematron:get("/userSchema.sch")   

==>

returns the compiled Schematorn schema (validator XSLT)   
 
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.