andrewjwelch.com
schema-aware.com
schema-aware XSLT and XQuery examples
SAXONICA

Result validation - the hello world example

			
import schema default element namespace "http://www.w3.org/1999/xhtml" 
  at "http://www.w3.org/2002/08/xhtml/xhtml1-strict.xsd";
  
validate strict { 
    <html>
        <head>
            <title>Schema Aware XQuery example</title>
        </head>
        <body>
            <div>Hello World</div>
        </body>
    </html>
}
The hello world example for result validation in XQuery