<!-- stylesheet that returns an empty RDF document -->
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  xmlns:d = "http://www.w3.org/2001/sw/grddl-wg/td/dbns#"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 >

<!-- Output method XML -->
<xsl:output method="xml" 
  indent="yes"
  omit-xml-declaration="no" 
  encoding="utf-8"  />

  <xsl:template match="/d:db">
    <rdf:RDF>
       <rdf:Description rdf:value="validated input to db2"/>
    </rdf:RDF>
  </xsl:template>  
  <xsl:template match="/db">
    <rdf:RDF>
       <rdf:Description rdf:value="not validated input to db2"/>
    </rdf:RDF>
  </xsl:template>
</xsl:stylesheet>
