<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE rdf:RDF [
	<!ENTITY xsd 'http://www.w3.org/2000/10/XMLSchema#'>
]>

<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: logistics-ont.daml,v 1.2 2001/12/01 06:46:10 mdean Exp $</daml:versionInfo>
  <rdfs:comment>Sample ontology used to demonstrate logistics properties</rdfs:comment>
</daml:Ontology>

<rdfs:Class rdf:ID="Inventory">
  <rdfs:subClassOf>
    <daml:Restriction>
      <daml:onProperty rdf:resource="#depot"/>
      <daml:toClass rdf:resource="#Depot"/>
    </daml:Restriction>
  </rdfs:subClassOf>
  <rdfs:subClassOf>
    <daml:Restriction>
      <daml:onProperty rdf:resource="#quantityOnHand"/>
      <daml:toClass rdf:resource="&xsd;float"/>
    </daml:Restriction>
  </rdfs:subClassOf>
</rdfs:Class>

<rdfs:Class rdf:ID="Depot">
  <rdfs:subClassOf>
    <daml:Restriction>
      <daml:onProperty rdf:resource="#id"/>
      <daml:toClass rdf:resource="&xsd;string"/>
    </daml:Restriction>
  </rdfs:subClassOf>
</rdfs:Class>

<daml:DatatypeProperty rdf:ID="cost"/>
<daml:ObjectProperty rdf:ID="depot"/>
<daml:DatatypeProperty rdf:ID="id"/>
<daml:ObjectProperty rdf:ID="inventory"/>
<daml:DatatypeProperty rdf:ID="nationalStockNumber"/>
<daml:DatatypeProperty rdf:ID="quantityOnHand"/>
<daml:DatatypeProperty rdf:ID="reorderLeadTime"/>

</rdf:RDF>
