<?xml version="1.0" encoding="iso-8859-1"?>
<rdf:RDF xmlns="http://oaei.ontologymatching.org/2010/benchmarks/233/onto.rdf#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:ical="http://www.w3.org/2002/12/cal/ical#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:base="http://oaei.ontologymatching.org/2010/benchmarks/233/onto.rdf#">

<!-- 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>08/06/2005</dc:date>
    <rdfs:label>Bibliographic references</rdfs:label>
    <rdfs:comment>Possible ontology to describe bibTeX entries.</rdfs:comment>
    <owl:versionInfo>$Id: onto.rdf,v 1.30 2008/05/27 14:41:13 euzenat Exp $</owl:versionInfo>
  </owl:Ontology>

  <!-- Every entity (even external) must be typed in OWL-DL. -->

  <!-- this is for satisfying the OWL Species validator
       (which is not satisfied anyway) -->
  <owl:Class rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
  <rdf:List rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
  <owl:ObjectProperty rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#first">
      <rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest">
      <rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
      <rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
  </owl:ObjectProperty>

  <owl:DatatypeProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
  <owl:DatatypeProperty rdf:about="http://purl.org/dc/elements/1.1/contributor"/>
  <owl:DatatypeProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
  <owl:DatatypeProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>

  <!-- foaf extensions -->
  <owl:Class rdf:about="http://xmlns.com/foaf/0.1/Person"/>
  <owl:Class rdf:about="http://xmlns.com/foaf/0.1/Organization"/>
  <owl:DatatypeProperty rdf:about="http://xmlns.com/foaf/0.1/firstName"/>
  
  <owl:DatatypeProperty rdf:about="http://xmlns.com/foaf/0.1/name"/>

  <!--
    ********  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: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: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: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: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:label xml:lang="en">Informal</rdfs:label>
    <rdfs:comment xml:lang="en">A document that was informally published or not published.</rdfs:comment>
    
  </owl:Class>

  <owl:Class rdf:ID="Booklet">
    
    <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:label xml:lang="en">Part</rdfs:label>
    <rdfs:comment xml:lang="en">A part of something (either Book or Proceedings).</rdfs:comment>
    
    
    <!-- This is forbiden for transitive properties in OWL-DL -->
    <!--rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#isPartOf" />
	<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf-->
  </owl:Class>

  <owl:Class rdf:ID="Chapter">
    
    <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: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: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: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:label xml:lang="en">LectureNotes</rdfs:label>
    <rdfs:comment xml:lang="en">Lecture notes.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Manual">
    
    <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: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: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: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: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: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: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: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: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: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:label xml:lang="en">MotionPicture</rdfs:label>
    <rdfs:comment xml:lang="en">A film/movie/motion picture.</rdfs:comment>
  </owl:Class>

  <!-- SPECIAL CLASSES -->

  <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:label xml:lang="en">Institution</rdfs:label>
    <rdfs:comment xml:lang="en">An institution.</rdfs:comment>
    
    
    
  </owl:Class>

  <owl:Class rdf:ID="Publisher">
    
    <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:label xml:lang="en">School</rdfs:label>
    <rdfs:comment xml:lang="en">A school or university.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="PersonList">
    
    <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>
    
  <!--
    ********  FIELDS  ********

    Note: all rdfs:comment values for the entries come from http://newton.ex.ac.uk/tex/pack/bibtex/btxdoc/node7.html
  -->

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  <!--
    ********  "META" PROPERTIES  ********
  -->

  

  

  

  

  

  

  

  

  

  

  

  

  

  

<!-- PEOPLE -->

<foaf:Person rdf:about="#a04570373">
	<rdfs:label>John-Jules Meyer</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">John-Jules Meyer</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">John-Jules</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a43836633">
	<rdfs:label>Jeen Broekstra</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jeen Broekstra</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jeen</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a85228505">
	<rdfs:label>Alexander Mädche</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alexander Mädche</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alexander</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a48552212">
	<rdfs:label>Björn Schnizler</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Björn Schnizler</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Björn</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a971541439">
	<rdfs:label>Alberto Trombetta</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alberto Trombetta</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alberto</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a11090777">
	<rdfs:label>Christine Parent</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Christine Parent</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Christine</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a250331360">
	<rdfs:label>R. Schmidt</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R. Schmidt</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R.</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a79573306">
	<rdfs:label>York Sure</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">York Sure</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">York</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a885257047">
	<rdfs:label>M. Punceva</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M. Punceva</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">M.</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a74993404">
	<rdfs:label>I. V. Levenshtein</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I. V. Levenshtein</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">I. V.</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a71003986">
	<rdfs:label>Steffen Staab</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Steffen Staab</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Steffen</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a572406328">
	<rdfs:label>Frank Boer</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Boer</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a139477786">
	<rdfs:label>Maarten Menken</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Maarten Menken</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Maarten</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a337716610">
	<rdfs:label>Manfred Hauswirth</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Manfred Hauswirth</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Manfred</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a086379337">
	<rdfs:label>Wiebe Hoek</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wiebe Hoek</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wiebe</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a712561038">
	<rdfs:label>Marc Ehrig</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Marc Ehrig</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Marc</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a066600210">
	<rdfs:label>Danilo Montesi</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Danilo Montesi</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Danilo</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a093016135">
	<rdfs:label>Rogier Eijk</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Rogier Eijk</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Rogier</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a944339054">
	<rdfs:label>Frank van Harmelen</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank van Harmelen</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a98078619">
	<rdfs:label>Philippe Cudré-Mauroux</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Philippe Cudré-Mauroux</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Philippe</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a39510672">
	<rdfs:label>Z. Despotovic</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Z. Despotovic</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Z.</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a431956276">
	<rdfs:label>Stefano Spaccapietra</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Stefano Spaccapietra</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Stefano</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a431956276b">
	<rdfs:label>Mike Papazoglou</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mike Papazoglou</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mike</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a431956276c">
	<rdfs:label>Zahir Tari</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zahir Tari</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zahir</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a70955601">
	<rdfs:label>A. Datta</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A. Datta</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A.</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a467748807">
	<rdfs:label>Ateret Anaby-Tavor</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ateret Anaby-Tavor</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ateret</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a3105947">
	<rdfs:label>Ronny Siebes</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ronny Siebes</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ronny</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a29105611">
	<rdfs:label>Karl Aberer</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Karl Aberer</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Karl</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a958684218">
	<rdfs:label>Peter Mika</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Peter Mika</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Peter</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a94533498">
	<rdfs:label>Peter Haase</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Peter Haase</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Peter</foaf:firstName>
	
</foaf:Person>

<foaf:Person rdf:about="#a900366022">
	<rdfs:label>Avigdor Gal</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Avigdor Gal</foaf:name>
	<foaf:firstName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Avigdor</foaf:firstName>
	
</foaf:Person>

<!-- INSTITUTIONS -->

<Journal rdf:about="#a246119474">
	<rdfs:label>Journal of Web Semantics</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Journal of Web Semantics</foaf:name>
	
</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>
	
	
	
	<!--location>
		<Address>
			<city></city>
			<state></state>
			<country></country>
		</Address>
	</location-->
	
</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>

