<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE rdf:RDF [
          <!ENTITY xsd		"http://www.w3.org/2001/XMLSchema#" >
	  <!ENTITY rdf		"http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
	  <!ENTITY rdfs		"http://www.w3.org/2000/01/rdf-schema#" >
	  <!ENTITY dc		"http://purl.org/dc/elements/1.1/" >
	  <!ENTITY owl		"http://www.w3.org/2002/07/owl#" >
	  <!ENTITY units	"http://visus.mit.edu/fontomri/0.01/units.owl#" >
	  <!ENTITY foaf 	"http://xmlns.com/foaf/0.1/#">
	  <!ENTITY ical 	"http://www.w3.org/2002/12/cal/#">
	  <!ENTITY dcterms 	"http://purl.org/dc/terms/">
	  <!ENTITY dctype 	"http://purl.org/dc/dcmitype/"> ]>

<rdf:RDF
 xmlns="http://co4.inrialpes.fr/align/Contest/228/onto.rdf#"
 xmlns:units	="&units;"
 xmlns:foaf	="&foaf;"
 xmlns:ical	="&ical;"
 xmlns:rdf	="&rdf;"
 xmlns:xsd	="&xsd;"
 xmlns:rdfs	="&rdfs;"
 xmlns:owl	="http://www.w3.org/2002/07/owl#"
 xmlns:wot	="http://xmlns.com/wot/0.1/"
 xmlns:dc	="&dc;"
 xmlns:dcterms	="&dcterms;"
 xmlns:dctype	="&dctype;">

<!-- This ontology describes bibliographic references.
     -->
  
  <owl:Ontology rdf:about="">
    <dc:creator>Nick Knouf &lt;nknouf@mit.edu&gt;</dc:creator>
    <dc:contributor>Antoine Zimmermann &lt;antoine.zimmermann@inrialpes.fr&gt;</dc:contributor>
    <dc:contributor>Jérôme Euzenat</dc:contributor>
    <dc:description>Bibliographic references in OWL</dc:description>
    <dc:date>01/06/2004</dc:date>
    <rdfs:label>Bibliographic references</rdfs:label>
    <rdfs:comment>Possible ontology to describe bibTeX entries.</rdfs:comment>
    <owl:versionInfo>$Id$</owl:versionInfo>
  </owl:Ontology>

<!-- This is due to the Species Validator. -->
<owl:Class rdf:about="&foaf;Person" />
<owl:Class rdf:about="&foaf;Organization" />
<owl:Class rdf:about="&rdf;List" />
<rdf:List rdf:about="&rdf;nil" />
<owl:ObjectProperty rdf:about="&rdf;first" />
<owl:ObjectProperty rdf:about="&rdf;rest" />
<owl:DatatypeProperty rdf:about="&dc;creator" />
<owl:DatatypeProperty rdf:about="&dc;contributor" />
<owl:DatatypeProperty rdf:about="&dc;description" />
<owl:DatatypeProperty rdf:about="&dc;date" />
<owl:DatatypeProperty rdf:about="http://co4.inrialpes.fr/align/Contest/228/onto-noinst.rdf#firstName" />
<owl:DatatypeProperty rdf:about="http://co4.inrialpes.fr/align/Contest/228/onto-noinst.rdf#lastName" />
<owl:DatatypeProperty rdf:about="http://co4.inrialpes.fr/align/Contest/228/onto-noinst.rdf#name" />
<owl:DatatypeProperty rdf:about="http://co4.inrialpes.fr/align/Contest/228/onto-noinst.rdf#shortName" />

  <!--
    ********  ENTRIES  ********
    
    Entries form the basis of a bibTeX database and are categorized by their type, such as a book, journal article, conference proceedings, etc.  Each entry type has a specific set of fields that are required in bibTeX; as a first pass, these fields will also be required in the OWL ontology.
    
    Note: all rdfs:comment values for the entries come from http://newton.ex.ac.uk/tex/pack/bibtex/btxdoc/node6.html.
  -->

  <owl:Class rdf:ID="Reference">
    <rdfs:label xml:lang="en">Reference</rdfs:label>
    <rdfs:comment xml:lang="en">Base class for all entries</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Article">
    <rdfs:subClassOf rdf:resource="#Part" />
    <rdfs:label xml:lang="en">Article</rdfs:label>
    <rdfs:comment xml:lang="en">An article from a journal or magazine.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Book">
    <rdfs:subClassOf rdf:resource="#Reference" />
    <rdfs:label xml:lang="en">Book</rdfs:label>
    <rdfs:comment xml:lang="en">A book that may be a monograph or a collection of written texts.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Monograph">
    <rdfs:subClassOf rdf:resource="#Book" />
    <rdfs:label xml:lang="en">Monograph</rdfs:label>
    <rdfs:comment xml:lang="en">A book that is a single entity, as opposed to a collection.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Collection">
    <rdfs:subClassOf rdf:resource="#Book" />
    <rdfs:label xml:lang="en">Collection</rdfs:label>
    <rdfs:comment xml:lang="en">A book that is collection of texts or articles.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Informal">
    <rdfs:subClassOf rdf:resource="#Reference" />
    <rdfs:label xml:lang="en">Informal</rdfs:label>
    <rdfs:comment xml:lang="en">A document that that was informally published or not published.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Booklet">
    <rdfs:subClassOf rdf:resource="#Informal" />
    <rdfs:label xml:lang="en">Booklet</rdfs:label>
    <rdfs:comment xml:lang="en">A work that is printed and bound, but without a named publisher or sponsoring institution.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Part">
    <rdfs:subClassOf rdf:resource="#Reference" />
    <rdfs:label xml:lang="en">Part</rdfs:label>
    <rdfs:comment xml:lang="en">A part of something (either Book or Proceedings).</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Chapter">
    <rdfs:subClassOf rdf:resource="#Part" />
    <rdfs:label xml:lang="en">BookPart</rdfs:label>
    <rdfs:comment xml:lang="en">A chapter (or section or whatever) of a book having its own title.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="InBook">
    <rdfs:subClassOf rdf:resource="#Part" />
    <rdfs:label xml:lang="en">InBook</rdfs:label>
    <rdfs:comment xml:lang="en">A subpart of a book given by a range of pages.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="InCollection">
    <rdfs:subClassOf rdf:resource="#Part" />
    <rdfs:label xml:lang="en">Incollection</rdfs:label>
    <rdfs:comment xml:lang="en">A part of a book having its own title.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="InProceedings"> <!-- Communication -->
    <rdfs:subClassOf rdf:resource="#Part" />
    <rdfs:label xml:lang="en">InProceedings</rdfs:label>
    <rdfs:comment xml:lang="en">An article in a conference proceedings.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="LectureNotes">
    <rdfs:subClassOf rdf:resource="#Informal" />
    <rdfs:label xml:lang="en">LectureNotes</rdfs:label>
    <rdfs:comment xml:lang="en">Lecture notes.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Manual">
    <rdfs:subClassOf rdf:resource="#Informal" />
    <rdfs:label xml:lang="en">Manual</rdfs:label>
    <rdfs:comment xml:lang="en">Technical documentation.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Academic">
    <rdfs:subClassOf rdf:resource="#Reference" />
    <rdfs:label xml:lang="en">Academic</rdfs:label>
    <rdfs:comment xml:lang="en">A Master's or PhD thesis.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="MastersThesis">
    <rdfs:subClassOf rdf:resource="#Academic" />
    <rdfs:label xml:lang="en">MastersThesis</rdfs:label>
    <rdfs:comment xml:lang="en">A Master's thesis.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="PhdThesis">
    <rdfs:subClassOf rdf:resource="#Academic" />
    <rdfs:label xml:lang="en">PhdThesis</rdfs:label>
    <rdfs:comment xml:lang="en">A PhD thesis.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Misc">
    <rdfs:subClassOf rdf:resource="#Reference" />
    <rdfs:label xml:lang="en">Misc</rdfs:label>
    <rdfs:comment xml:lang="en">Use this type when nothing else fits.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Proceedings">
    <rdfs:subClassOf rdf:resource="#Book" />
    <rdfs:label xml:lang="en">Proceedings</rdfs:label>
    <rdfs:comment xml:lang="en">The proceedings of a conference.</rdfs:comment>
    <rdfs:comment xml:lang="en">A proceedings may be implicitly defined with an inproceedings.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Report">
    <rdfs:subClassOf rdf:resource="#Reference" />
    <rdfs:label xml:lang="en">Report</rdfs:label>
    <rdfs:comment xml:lang="en">A report published by an institution with some explicit policy.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="TechReport">
    <rdfs:subClassOf rdf:resource="#Report" />
    <rdfs:label xml:lang="en">TechReport</rdfs:label>
    <rdfs:comment xml:lang="en">A report published by a school or other institution, usually numbered within a series.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Deliverable">
    <rdfs:subClassOf rdf:resource="#Report" />
    <rdfs:label xml:lang="en">Deliverable report</rdfs:label>
    <rdfs:comment xml:lang="en">A report delivered for accomplishing a contract.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Unpublished">
    <rdfs:subClassOf rdf:resource="#Informal" />
    <rdfs:label xml:lang="en">Unpublished</rdfs:label>
    <rdfs:comment xml:lang="en">A document having an author and title, but not formally published.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="MotionPicture">
    <rdfs:subClassOf rdf:resource="#Reference" />
    <rdfs:label xml:lang="en">MotionPicture</rdfs:label>
    <rdfs:comment xml:lang="en">A film/movie/motion picture.</rdfs:comment>
  </owl:Class>

  <!-- SPECIAL CLASSES -->

  <!-- A journal is not a document nor an organization. -->
  <owl:Class rdf:ID="Journal">
    <rdfs:label xml:lang="en">Journal or magazine</rdfs:label>
    <rdfs:comment xml:lang="en">A periodical publication collecting works from different authors.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Conference">
    <rdfs:label xml:lang="en">The location of an event</rdfs:label>
    <rdfs:comment xml:lang="en">An event presenting work.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Address">
    <rdfs:label xml:lang="en">Address</rdfs:label>
    <rdfs:comment xml:lang="en">The street address of the location of some organization or event.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Institution">
    <rdfs:subClassOf rdf:resource="&foaf;Organization"/>
    <rdfs:label xml:lang="en">Institution</rdfs:label>
    <rdfs:comment xml:lang="en">An institution.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Publisher">
    <rdfs:subClassOf rdf:resource="#Institution" />
    <rdfs:label xml:lang="en">Publisher</rdfs:label>
    <rdfs:comment xml:lang="en">The publisher of books or journals.</rdfs:comment>
  </owl:Class>

  <!-- trouver une ontologie pour ca -->
  <owl:Class rdf:ID="School">
    <rdfs:subClassOf rdf:resource="#Institution" />
    <rdfs:label xml:lang="en">School</rdfs:label>
    <rdfs:comment xml:lang="en">A school or university.</rdfs:comment>
  </owl:Class>

  <!--owl:Class rdf:ID="Person">
    <rdfs:label xml:lang="en">Person</rdfs:label>
    <rdfs:comment xml:lang="en">A person.</rdfs:comment>
    <owl:equivalentClass rdf:resource="http://xmlns.com/foaf/0.1/Person" />
  </owl:Class-->

  <owl:Class rdf:ID="PersonList">
    <rdfs:subClassOf rdf:resource="&rdf;List"/>
    <rdfs:label xml:lang="en">Person list</rdfs:label>
    <rdfs:comment xml:lang="en">A list of persons.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="PageRange">
    <rdfs:label xml:lang="en">PageRange</rdfs:label>
    <rdfs:comment xml:lang="en">A range of pages.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Date">
    <rdfs:label xml:lang="en">Date</rdfs:label>
    <rdfs:comment xml:lang="en">Date of a day which can be unknown (i.e., only the year is known or only the year and month). This is for overcoming the limits of XML-Schema for wich a date is not separable.</rdfs:comment>
  </owl:Class>
    

<!-- PEOPLE -->

<foaf:Person rdf:about="#a04570373">
	<rdfs:label>John-Jules Meyer</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a43836633">
	<rdfs:label>Jeen Broekstra</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a85228505">
	<rdfs:label>Alexander Mädche</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a48552212">
	<rdfs:label>Björn Schnizler</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a971541439">
	<rdfs:label>Alberto Trombetta</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a11090777">
	<rdfs:label>Christine Parent</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a250331360">
	<rdfs:label>R. Schmidt</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a79573306">
	<rdfs:label>York Sure</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a885257047">
	<rdfs:label>M. Punceva</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a74993404">
	<rdfs:label>I. V. Levenshtein</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a71003986">
	<rdfs:label>Steffen Staab</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a572406328">
	<rdfs:label>Frank Boer</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a139477786">
	<rdfs:label>Maarten Menken</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a337716610">
	<rdfs:label>Manfred Hauswirth</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a086379337">
	<rdfs:label>Wiebe Hoek</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a712561038">
	<rdfs:label>Marc Ehrig</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a066600210">
	<rdfs:label>Danilo Montesi</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a093016135">
	<rdfs:label>Rogier Eijk</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a944339054">
	<rdfs:label>Frank van Harmelen</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a98078619">
	<rdfs:label>Philippe Cudré-Mauroux</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a39510672">
	<rdfs:label>Z. Despotovic</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a431956276">
	<rdfs:label>Stefano Spaccapietra</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a431956276b">
	<rdfs:label>Mike Papazoglou</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a431956276c">
	<rdfs:label>Zahir Tari</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a70955601">
	<rdfs:label>A. Datta</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a467748807">
	<rdfs:label>Ateret Anaby-Tavor</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a3105947">
	<rdfs:label>Ronny Siebes</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a29105611">
	<rdfs:label>Karl Aberer</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a958684218">
	<rdfs:label>Peter Mika</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a94533498">
	<rdfs:label>Peter Haase</rdfs:label>
</foaf:Person>

<foaf:Person rdf:about="#a900366022">
	<rdfs:label>Avigdor Gal</rdfs:label>
</foaf:Person>

<!-- INSTITUTIONS -->

<Journal rdf:about="#a246119474">
	<rdfs:label>Journal of Web Semantics</rdfs:label>
</Journal>

<Publisher rdf:about="#a131020767">
	<rdfs:label>Springer-Verlag</rdfs:label>
</Publisher>

<Journal rdf:about="#a70981683">
	<rdfs:label>Cybernetics and Control Theory</rdfs:label>
</Journal>

<Publisher rdf:about="#a85849488">
	<rdfs:label>The MIT Press</rdfs:label>
</Publisher>

<Journal rdf:about="#a362042121">
	<rdfs:label>International journal of intelligent system</rdfs:label>
</Journal>

<Journal rdf:about="#a674639524">
	<rdfs:label>ACM SIGMOD Record</rdfs:label>
</Journal>

<Journal rdf:about="#a906774044">
	<rdfs:label>VLDB Journal</rdfs:label>
</Journal>


<!-- EVENTS -->

<Conference rdf:about="#spg04">
	<rdfs:label>SemPGrid 04 Workshop</rdfs:label>
</Conference>

<Conference rdf:about="#a72192307c">
	<rdfs:label>13th Int. Conference on Knowledge Engineering and Management (EKAW-2002)</rdfs:label>
</Conference>

<Conference rdf:about="#a32071928c">
	<rdfs:label>First European Semantic Web Symposium</rdfs:label>
</Conference>

<!-- REFERENCES -->

<Proceedings rdf:about="#a060097576">
	<rdfs:label>Proceedings of the SemPGrid 04 Workshop</rdfs:label>
</Proceedings>

<InProceedings rdf:about="#a64263824">
	<rdfs:label>Bibster - A Semantics-Based Bibliographic Peer-to-Peer System</rdfs:label>
</InProceedings>

<!-- HERE -->

<InProceedings rdf:about="#a439508789">
	<rdfs:label>Measuring Similarity between Ontologies</rdfs:label>
</InProceedings>

<Article rdf:about="#a492378321">
	<rdfs:label>{P-Grid: A Self-organizing Structured P2P System}</rdfs:label>
</Article>

<Article rdf:about="#a475526642">
	<rdfs:label>Binary Codes capable of correcting deletions, insertions, and reversals</rdfs:label>
</Article>

<InBook rdf:about="#a71568377">
	<rdfs:label>Database integration: the key to data interoperability</rdfs:label>
</InBook>

<Proceedings rdf:about="#a72192307">
	<rdfs:label>Proc. Of the 13th Int. Conference on Knowledge Engineering and Management (EKAW-2002)</rdfs:label>
</Proceedings>

<Proceedings rdf:about="#a32071928">
	<rdfs:label>Proceedings of the First European Semantic Web Symposium</rdfs:label>
</Proceedings>

<Misc rdf:about="#a140583454">
	<rdfs:label>{QOM} - Quick Ontology Mapping</rdfs:label>
</Misc>

<InProceedings rdf:about="#a11065952">
	<rdfs:label>Ontology Mapping - An Integrated Approach</rdfs:label>
</InProceedings>

<Article rdf:about="#a80299267">
	<rdfs:label>Start making sense: The Chatty Web approach for global semantic agreements</rdfs:label>
</Article>

<Monograph rdf:about="#a108048723">
	<rdfs:label>Object-Oriented Data Modeling</rdfs:label>
</Monograph>

<Article rdf:about="#a456080390">
	<rdfs:label>On dynamically generated ontology translators in agent communication</rdfs:label>
</Article>

<Article rdf:about="#a846015923">
	<rdfs:label>A Framework for Modeling and Evaluating Automatic Semantic Reconciliation</rdfs:label>
</Article>

</rdf:RDF>
