<!DOCTYPE xsd:schema 
  PUBLIC "-//W3C//DTD XMLSCHEMA 200105//EN"
         "http://www.w3.org/2001/XMLSchema.dtd" [
<!ENTITY % schemaAttrs "
  xmlns:this CDATA #IMPLIED
  xmlns:xsd  CDATA #IMPLIED"
>
<!ENTITY % p "xsd:">
<!ENTITY % s ":xsd">
<!--* 
<!ENTITY % html-for-documentation SYSTEM
  "/SGML/Public/w3c/xhtml-divs.dtd">
%html-for-documentation;
*-->
]>
<xsd:schema 
 xmlns:xsd ="http://www.w3.org/2001/XMLSchema" 
 xmlns:this="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
 targetNamespace="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 elementFormDefault="qualified" 
 >
 <xsd:annotation>
  <xsd:documentation>
   <div xmlns="http://www.w3.org/1999/xhtml"
   >
    <p>Simple XML Schema document for some bits of RDF we need
     for a demonstration.  This is <strong>not</strong> a
     real or realistic schema for the XML serialization of
     RDF.  Sorry if you got your hopes up.</p>
    <p>If you are viewing this with an HTML browser and all 
     you see is English prose, you may wish to select
     <em>View Source</em> or an equivalent option, so you
     can see the actual declarations.  Or you can trust the
     documentation. Really.  It's trustworthy. Trust me.</p>
    <p>We define:</p>
    <ul>
     <li>the rdf:RDF element</li>
     <li>the rdf:about attribute</li>
     <li>the rdf:resource attribute</li>
    </ul>
    <p>
     Created for use with OAI/CC demonstration of GRDDL.
     C. M. Sperberg-McQueen, 2 February 2005.
    </p>
   </div>
  </xsd:documentation>
 </xsd:annotation>
 
 <xsd:element name="RDF">
  <xsd:annotation>
   <xsd:documentation>
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>The rdf:RDF element contains an XML serialization of an
      RDF graph.</p>
     <p>We let the element default to the type <em>anyType</em>,
      so the allowed contents are any XML at all.</p>
    </div>
   </xsd:documentation>
  </xsd:annotation>
 </xsd:element>

 <xsd:attribute name="about" type="xsd:anyURI">
  <xsd:annotation>
   <xsd:documentation>
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>The rdf:about attribute identifies the resource being
      described by a bit of XML.</p>
     <p>The value must name a resource, so it has to be a URI.</p>
    </div>
   </xsd:documentation>
  </xsd:annotation>
 </xsd:attribute>

 <xsd:attribute name="resource" type="xsd:anyURI">
  <xsd:annotation>
   <xsd:documentation>
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>The rdf:resource names the object of a statement; the value of the property.</p>
     <p>The value must name a resource, so it has to be a URI.</p>
    </div>
   </xsd:documentation>
  </xsd:annotation>
 </xsd:attribute>

</xsd:schema>
<!-- Keep this comment at the end of the file
Local variables: 
mode: xml 
sgml-default-dtd-file:nil 
sgml-omittag:t 
sgml-shorttag:t 
End:
-->

