<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
     <!ENTITY rdf  "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
     <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
     <!ENTITY xsd  "http://www.w3.org/2001/XMLSchema#" >
     <!ENTITY owl  "http://www.w3.org/2002/07/owl#" >
     <!ENTITY address "http://daml.umbc.edu/ontologies/ittalks/address#" >
   ]>


<rdf:RDF
  xmlns:rdf 	= "&rdf;"
  xmlns:rdfs 	= "&rdfs;"
  xmlns:owl 	= "&owl;"
  xmlns:address = "&address;"
  xmlns     	= "&address;"
  xml:base     	= "http://daml.umbc.edu/ontologies/ittalks/address"
>


<owl:Ontology rdf:about="">
  <rdfs:comment> 
	This file describe the postal address. We are more consider about 
        the delivery aspect rather than accurate geographical localtion, 
	such as latitude and longitude.It is created by 
		Li Ding -- http://www.csee.umbc.edu/~dingli1/,
	        Harry Chen -- http://www.csee.umbc.edu/~hchen4/,
		Lalana Kagal -- http://www.cs.umbc.edu/~lkagal1/, 
		Tim Finin -- http://www.csee.umbc.edu/~finin/. 
  </rdfs:comment> 			
  <owl:versionInfo>$Revision: 1.1 $</owl:versionInfo>
</owl:Ontology>


<owl:Class rdf:ID="Address">
  <rdfs:label>Address</rdfs:label>
  <rdfs:comment>Address</rdfs:comment>
</owl:Class>

<owl:DatatypeProperty rdf:ID="roomNumber">
  <rdfs:domain rdf:resource="#Address"/>
  <rdfs:range rdf:resource="&xsd;string" />
</owl:DatatypeProperty >

<owl:DatatypeProperty rdf:ID="streetAddress">
  <rdfs:domain rdf:resource="#Address"/>
  <rdfs:range rdf:resource="&xsd;string" />
</owl:DatatypeProperty >

<owl:DatatypeProperty rdf:ID="city">
  <rdfs:domain rdf:resource="#Address"/>
  <rdfs:range rdf:resource="&xsd;string" />
</owl:DatatypeProperty >

<owl:DatatypeProperty rdf:ID="state">
  <rdfs:domain rdf:resource="#Address"/>
  <rdfs:range rdf:resource="&xsd;string" />
</owl:DatatypeProperty >

<owl:DatatypeProperty rdf:ID="zip">
  <rdfs:domain rdf:resource="#Address"/>
  <rdfs:range rdf:resource="&xsd;string" />
</owl:DatatypeProperty >

<owl:DatatypeProperty rdf:ID="country">
  <rdfs:domain rdf:resource="#Address"/>
  <rdfs:range rdf:resource="&xsd;string" />
</owl:DatatypeProperty >


</rdf:RDF>