<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE rdf:RDF [
	 <!ENTITY daml 'http://www.daml.org/2001/03/daml+oil#'>
	 <!ENTITY xsd 'http://www.w3.org/2000/10/XMLSchema#'>  
	 <!ENTITY countries-ont 'http://www.daml.org/2001/09/countries/fips-10-4-ont#'>  
]>

<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:daml="http://www.daml.org/2001/03/daml+oil#"
>

<daml:Ontology rdf:about="">
  <daml:versionInfo>$Id: milservices-ont.daml,v 1.2 2003/01/15 20:33:56 drager Exp $</daml:versionInfo>
  <rdfs:comment>Military Service Ontology</rdfs:comment>
</daml:Ontology>

<rdfs:Class rdf:ID="Service">
  <rdfs:subClassOf>
    <daml:Restriction>
      <daml:onProperty rdf:resource="#fullName"/>
      <daml:toClass rdf:resource="&xsd;string"/>
    </daml:Restriction>
  </rdfs:subClassOf>
  <rdfs:subClassOf>
    <daml:Restriction>
      <daml:onProperty rdf:resource="#abbreviation"/>
      <daml:toClass rdf:resource="&xsd;string"/>
    </daml:Restriction>
  </rdfs:subClassOf>
  <rdfs:subClassOf>
    <daml:Restriction>
      <daml:onProperty rdf:resource="#country"/>
      <daml:toClass rdf:resource="&countries-ont;Country"/>
    </daml:Restriction>
  </rdfs:subClassOf>
  <rdfs:subClassOf>
    <daml:Restriction>
      <daml:onProperty rdf:resource="#homePage"/>
      <daml:toClass rdf:resource="&xsd;uriReference"/>
    </daml:Restriction>
  </rdfs:subClassOf>
</rdfs:Class>

<daml:DatatypeProperty rdf:ID="abbreviation"/>
<daml:ObjectProperty rdf:ID="country"/>
<daml:DatatypeProperty rdf:ID="fullName"/>
<daml:DatatypeProperty rdf:ID="homePage">
  <rdfs:comment>make this an UnambiguousProperty?</rdfs:comment>
</daml:DatatypeProperty>
<daml:ObjectProperty rdf:ID="service"/>
<daml:TransitiveProperty rdf:ID="outranks"/>

</rdf:RDF>
