<?xml version="1.0"?>

<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:xsd ="http://www.w3.org/2000/10/XMLSchema#"
  xmlns:daml="http://www.daml.org/2001/03/daml+oil#"
  xmlns:per ="http://www.cs.umd.edu/projects/plus/DAML/onts/personal1.0.daml#"
  xmlns:car ="http://opencyc.sourceforge.net/daml/cyc-transportation.daml#"
  xmlns:geo ="http://www.daml.org/projects/integration/projects-20010811#"
  xml:base = "http://www.cs.umd.edu/~sengcy/classes/828y/scy_auto-ont.daml"
  xmlns   ="http://www.cs.umd.edu/~sengcy/classes/828y/scy_auto-ont.daml#"
>

<daml:Ontology rdf:about="">
  <daml:versionInfo>$Id: scy_auto-ont.daml,v 0.1 2002/09/30 12:12:00  $</daml:versionInfo>
  <rdfs:comment>
    This ontology describes cars.
  </rdfs:comment>
  <daml:imports rdf:resource="http://www.daml.org/2001/03/daml+oil"/>
</daml:Ontology>

<daml:ObjectProperty rdf:ID="prevOwned">
   <rdfs:comment>
	prevOwned(x,y) means that Person x has previously owned car y and is currently not owning it
   </rdfs:comment>
   <rdfs:domain rdf:resource="http://www.cs.umd.edu/projects/plus/DAML/onts/personal1.0.daml#Person"/>
   <rdfs:range rdf:resource="http://www.cs.umd.edu/~sengcy/classes/828y/scy_auto-ont.daml#Automobile"/>
</daml:ObjectProperty>

<daml:ObjectProperty rdf:ID="currentOwned">
   <rdfs:comment>
	currentOwned(x,y) means that Person x is currently owning car y 
   </rdfs:comment>
   <rdfs:domain rdf:resource="http://www.cs.umd.edu/projects/plus/DAML/onts/personal1.0.daml#Person"/>
   <rdfs:range rdf:resource="http://www.cs.umd.edu/~sengcy/classes/828y/scy_auto-ont.daml#Automobile"/>
</daml:ObjectProperty>

<daml:ObjectProperty rdf:ID="dreamToOwn">
   <rdfs:comment>
	dreamToOwn(x,y) means that Person x dreams to own car y 
   </rdfs:comment>
   <rdfs:domain rdf:resource="http://www.cs.umd.edu/projects/plus/DAML/onts/personal1.0.daml#Person"/>
   <rdfs:range rdf:resource="http://www.cs.umd.edu/~sengcy/classes/828y/scy_auto-ont.daml#Automobile"/>
</daml:ObjectProperty>

<daml:DatatypeProperty rdf:ID="VIN">
   <rdfs:comment>
	a unique identification number for each car
   </rdfs:comment>
   <rdf:type rdf:resource="http://www.daml.org/2001/03/daml+oil#UniqueProperty"/>
   <rdfs:range rdf:resource="http://www.w3.org/2000/10/XMLSchema#nonNegativeInteger"/>
</daml:DatatypeProperty>

<daml:ObjectProperty rdf:ID="inCountry">
   <rdfs:comment>
	inCountry(x,y) means automobile x is owned in country y. Assuming car ownership cannot
	be transferred from one country to another, a car can only be owned in one country
   </rdfs:comment>
   <rdf:type rdf:resource="http://www.daml.org/2001/03/daml+oil#UniqueProperty"/>
   <rdf:domain rdf:resource="http://opencyc.sourceforge.net/daml/cyc-transportation.daml#Automobile"/>
   <rdf:range rdf:resource="http://www.daml.org/projects/integration/projects-20010811#Country"/>
</daml:ObjectProperty>

</rdf:RDF>


 
   
