<?xml version="1.0" encoding="UTF-8" ?> 
<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:owl="http://www.w3.org/2002/07/owl#" 
>

<owl:Ontology>
  <owl:imports rdf:resource="http://swat.cse.lehigh.edu/resources/onto/citeseer.owl" />
  <owl:imports rdf:resource="http://purl.org/dc/elements/1.1/" />
  <owl:imports rdf:resource="http://purl.org/dc/terms/" />
</owl:Ontology>

<owl:Class rdf:about="http://swat.cse.lehigh.edu/resources/onto/citeseer.owl#Record">
	<rdfs:subClassOf rdf:resource="http://purl.org/dc/terms/BibliographicResource"/>
</owl:Class>
<rdf:Property rdf:about="http://swat.cse.lehigh.edu/resources/onto/citeseer.owl#author">
	<!--cite:Record, which is the domain for cite:author, is subclass of dc:BiblicographicResource.-->
	<!--cite:Person, which is the range for cite:author, is subclass of dc:Agent.-->
	<!--a subproperty could also help as a smaller table in some specific query-->
	<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/creator"/>
</rdf:Property>
<rdf:Property rdf:about="http://swat.cse.lehigh.edu/resources/onto/citeseer.owl#cites">
	<!--similar reasons as above.-->
	<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/references"/>
</rdf:Property>
<rdf:Property rdf:about="http://swat.cse.lehigh.edu/resources/onto/citeseer.owl#title">
	<!--similar reasons as above.-->
	<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/title"/>
</rdf:Property>
<rdf:Property rdf:about="http://swat.cse.lehigh.edu/resources/onto/citeseer.owl#date">
	<!--similar reasons as above.-->
	<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/date"/>
</rdf:Property>
</rdf:RDF>