@prefix :      <http://www.daml.org/2001/09/countries/iso-3166-ont#> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix daml:  <http://www.daml.org/2001/03/daml+oil#> .

:name   a       daml:DatatypeProperty .

<http://www.daml.org/2001/09/countries/iso-3166-ont>
        a                 daml:Ontology ;
        rdfs:comment      "ISO 3166 Country Codes" ;
        daml:versionInfo  "$Id: iso-3166-ont.daml,v 1.3 2003/08/11 23:26:13 mdean Exp $" .

:code   a       daml:DatatypeProperty .

:Country  a              rdfs:Class ;
        rdfs:subClassOf  <http://www.daml.org/2001/09/countries/country-ont#Country> ;
        rdfs:subClassOf  [ a                 daml:Restriction ;
                           daml:cardinality  "1" ;
                           daml:onProperty   :name ;
                           daml:toClass      <http://www.w3.org/2000/10/XMLSchema#string>
                         ] ;
        rdfs:subClassOf  [ a                 daml:Restriction ;
                           daml:cardinality  "1" ;
                           daml:onProperty   :code ;
                           daml:toClass      <http://www.w3.org/2000/10/XMLSchema#string>
                         ] .
