<rdf:RDF
  xmlns:rdf ="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  xmlns     ="http://www.daml.org/2000/11/daml-oil#"
  xmlns:daml="http://www.daml.org/2000/11/daml-oil#"
  xmlns:types="http://www.daml.org/committee/minutes/2000-12-19-mdean-example.xsd#"
  >

  <Ontology about="">
    <versionInfo>$Id: 2000-12-19-mdean-example-ont.daml,v 1.2 2000/12/19 07:17:06 mdean Exp $</versionInfo>
    <rdfs:comment>Example ontology showing the proposed use of concrete types.</rdfs:comment>
    <imports rdf:resource="http://www.daml.org/2000/10/daml-ont"/>
  </Ontology>

  <rdf:Property rdf:ID="name"/>
  <rdf:Property rdf:ID="ssn"/>
  <rdf:Property rdf:ID="age"/>

  <rdfs:Class rdf:ID="USCitizen">
    <rdfs:label>Citizen of the United States of America</rdfs:label>
    <restrictedBy>
      <Restriction>
        <onProperty resource="#name"/>
        <toClass type="rdfs:Literal"/>
      </Restriction>
    </restrictedBy>
    <restrictedBy>
      <Restriction>
        <onProperty resource="#ssn"/>
        <toClass type="types:ssn"/>
      </Restriction>
    </restrictedBy>
    <restrictedBy>
      <Restriction>
        <onProperty resource="#age"/>
        <toClass type="types:age"/>
      </Restriction>
    </restrictedBy>
  </rdfs:Class>

</rdf:RDF>