#Processed by Id: cwm.py,v 1.121 2003/02/02 16:09:06 timbl Exp 
        #    using base http://www.daml.ri.cmu.edu/ont/State.daml
        
#  Notation3 generation by
#       notation3.py,v 1.133 2003/02/02 16:09:09 timbl Exp

#   Base was: http://www.daml.ri.cmu.edu/ont/State.daml
     @prefix : <#> .
     @prefix city: <City.n3#> .
     @prefix country: <Country.n3#> .
     @prefix daml: <http://www.daml.org/2001/03/daml+oil#> .
     @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
     @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
    
    <>     a daml:Ontology;
         daml:imports <http://www.daml.org/2001/03/daml+oil>,
                <http://www.w3.org/1999/02/22-rdf-syntax-ns>,
                <http://www.w3.org/2000/01/rdf-schema>;
         daml:versionInfo """
      $Id: State.n3,v 1.1 2003/02/03 04:05:37 timbl Exp $
    """;
         rdfs:comment """
      Top Level State/County Ontology.  Usefull for creating
      ontologies for such things as US States, or UK Counties.
    """ .
    
    :State     a rdfs:Class;
         rdfs:comment """
      Information about some geographic region, such as a US state.
    """;
         rdfs:label "State";
         rdfs:subClassOf daml:Thing .
    
    :borderstate     a rdf:Property;
         rdfs:domain :State;
         rdfs:range :State .
    
    :capital     a rdf:Property;
         rdfs:domain :State;
         rdfs:range city:City .
    
    :code     a rdf:Property;
         rdfs:domain :State;
         rdfs:range rdfs:Literal .
    
    :country     a rdf:Property;
         rdfs:domain :State;
         rdfs:range country:Country .
    
    :name     a rdf:Property;
         rdfs:domain :State;
         rdfs:range rdfs:Literal .
    
#ENDS

