<?xml version="1.0" encoding="iso-8859-1"?>
<rdf:RDF xmlns="http://oaei.ontologymatching.org/2010/benchmarks/205/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/205/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 xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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:ID="lastName"/>
  <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="Entry">
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Entry</rdfs:label>
    <rdfs:comment xml:lang="en">Base class for all entries</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishingDate"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#heading"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#createdBy"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="JournalPaper">
    <rdfs:subClassOf rdf:resource="#Section"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">JournalPaper</rdfs:label>
    <rdfs:comment xml:lang="en">An article from a journal or magazine.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#writtenBy"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#pageRange"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#inPeriodical"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishingDate"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishingDate"/>
	<owl:allValuesFrom rdf:resource="#Date"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#number"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#volume"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Book">
    <rdfs:subClassOf rdf:resource="#Entry"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" 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>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#heading"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#volume"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishedBy"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#inSeries"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishingDate"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishingDate"/>
	<owl:allValuesFrom rdf:resource="#Date"/>
      </owl:Restriction>
    </rdfs:subClassOf>
     <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#writtenBy"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#issue"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Monography">
    <rdfs:subClassOf rdf:resource="#Book"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Monography</rdfs:label>
    <rdfs:comment xml:lang="en">A book that is a single entity, as opposed to a collection.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#sections"/>
	<owl:allValuesFrom rdf:resource="#Chapter"/>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Compilation">
    <rdfs:subClassOf rdf:resource="#Book"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Compilation</rdfs:label>
    <rdfs:comment xml:lang="en">A book that is collection of texts or articles.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#sections"/>
	<owl:allValuesFrom rdf:resource="#Chapter"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#tomes"/>
	<owl:allValuesFrom rdf:resource="#InCompilation"/>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="NonFormal">
    <rdfs:subClassOf rdf:resource="#Entry"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">NonFormal</rdfs:label>
    <rdfs:comment xml:lang="en">A document that was informally published or not published.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#heading"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Brochure">
    <rdfs:subClassOf rdf:resource="#NonFormal"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Brochure</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="Section">
    <rdfs:subClassOf rdf:resource="#Entry"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Section</rdfs:label>
    <rdfs:comment xml:lang="en">A part of something (either Book or Proceedings).</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#pageRange"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#heading"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <!-- 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:subClassOf rdf:resource="#Section"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" 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>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#section"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#section"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Extract">
    <rdfs:subClassOf rdf:resource="#Section"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Extract</rdfs:label>
    <rdfs:comment xml:lang="en">A subpart of a book given by a range of pages.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<!-- author OR editor (given in the Book description) ??? -->
	<owl:onProperty rdf:resource="#writtenBy"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#pageRange"/>
	<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#inVolume"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="InCompilation">
    <rdfs:subClassOf rdf:resource="#Section"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Incollection</rdfs:label>
    <rdfs:comment xml:lang="en">A part of a book having its own title.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#writtenBy"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#inCompilation"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Communication"> <!-- Communication -->
    <rdfs:subClassOf rdf:resource="#Section"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Communication</rdfs:label>
    <rdfs:comment xml:lang="en">An article in a conference proceedings.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#writtenBy"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#inMinutes"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="CourseMaterial">
    <rdfs:subClassOf rdf:resource="#NonFormal"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">CourseMaterial</rdfs:label>
    <rdfs:comment xml:lang="en">Lecture notes.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="ReferenceGuide">
    <rdfs:subClassOf rdf:resource="#NonFormal"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">ReferenceGuide</rdfs:label>
    <rdfs:comment xml:lang="en">Technical documentation.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#sponsoredBy"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#issue"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#heading"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="StudentReport">
    <rdfs:subClassOf rdf:resource="#Entry"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">StudentReport</rdfs:label>
    <rdfs:comment xml:lang="en">A Master's or PhD thesis.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#writtenBy"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#heading"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#issuer"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishingDate"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="MScThesis">
    <rdfs:subClassOf rdf:resource="#StudentReport"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">MScThesis</rdfs:label>
    <rdfs:comment xml:lang="en">A Master's thesis.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="DoctoralThesis">
    <rdfs:subClassOf rdf:resource="#StudentReport"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">DoctoralThesis</rdfs:label>
    <rdfs:comment xml:lang="en">A PhD thesis.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="Various">
    <rdfs:subClassOf rdf:resource="#Entry"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Various</rdfs:label>
    <rdfs:comment xml:lang="en">Use this type when nothing else fits.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="ConferenceMinutes">
    <rdfs:subClassOf rdf:resource="#Book"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">ConferenceMinutes</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>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#talks"/>
	<owl:allValuesFrom rdf:resource="#Communication"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#meeting"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#meeting"/>
	<owl:allValuesFrom rdf:resource="#Congress"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#coordinatedBy"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#sponsoredBy"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Report">
    <rdfs:subClassOf rdf:resource="#Entry"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Report</rdfs:label>
    <rdfs:comment xml:lang="en">A report published by an institution with some explicit policy.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#writtenBy"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#heading"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#issuedBy"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishingDate"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishingDate"/>
	<owl:allValuesFrom rdf:resource="#Date"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#number"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="TechnicalReport">
    <rdfs:subClassOf rdf:resource="#Report"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">TechnicalReport</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 xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Deliverable report</rdfs:label>
    <rdfs:comment xml:lang="en">A report delivered for accomplishing a contract.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#contract"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Manuscript">
    <rdfs:subClassOf rdf:resource="#NonFormal"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Manuscript</rdfs:label>
    <rdfs:comment xml:lang="en">A document having an author and title, but not formally published.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#writtenBy"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#heading"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#comment"/>
	<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Movie">
    <rdfs:subClassOf rdf:resource="#Entry"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Movie</rdfs:label>
    <rdfs:comment xml:lang="en">A film/movie/motion picture.</rdfs:comment>
  </owl:Class>

  <!-- SPECIAL CLASSES -->

  <owl:Class rdf:ID="Periodical">
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Journal or magazine</rdfs:label>
    <rdfs:comment xml:lang="en">A periodical publication collecting works from different authors.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#id"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
   <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#id"/>
	<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
      </owl:Restriction>
    </rdfs:subClassOf>
   <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#acronym"/>
	<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
      </owl:Restriction>
    </rdfs:subClassOf>
   <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#frequency"/>
	<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#publishedBy"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#inSeries"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#startDate"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#papers"/>
	<owl:allValuesFrom rdf:resource="#JournalPaper"/>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Congress">
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">The location of an event</rdfs:label>
    <rdfs:comment xml:lang="en">An event presenting work.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#id"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#organizedBy"/>
	<owl:allValuesFrom rdf:resource="#Organization"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#acronym"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#issue"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#place"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Directions">
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Directions</rdfs:label>
    <rdfs:comment xml:lang="en">The street address of the location of some organization or event.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#country"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#country"/>
	<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#state"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#state"/>
	<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#town"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#town"/>
	<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Organization">
    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Organization</rdfs:label>
    <rdfs:comment xml:lang="en">An institution.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#id"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#acronym"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#coordinates"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="PublishingHouse">
    <rdfs:subClassOf rdf:resource="#Organization"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">PublishingHouse</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="University">
    <rdfs:subClassOf rdf:resource="#Organization"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">University</rdfs:label>
    <rdfs:comment xml:lang="en">A school or university.</rdfs:comment>
  </owl:Class>

  <owl:Class rdf:ID="People">
    <rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Person list</rdfs:label>
    <rdfs:comment xml:lang="en">A list of persons.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#first"/>        
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#first"/>
	<owl:allValuesFrom rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"/>
	<owl:allValuesFrom>
	  <owl:Class>
	    <owl:unionOf rdf:parseType="Collection">
	      <owl:Class rdf:about="#People"/>
	      <owl:Class>
		<owl:oneOf rdf:parseType="Collection">
		  <rdf:List rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
		</owl:oneOf>
	      </owl:Class>
	    </owl:unionOf>
	  </owl:Class>
	</owl:allValuesFrom>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="PageInterval">
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">PageInterval</rdfs:label>
    <rdfs:comment xml:lang="en">A range of pages.</rdfs:comment>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#beginning"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#end"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>

  <owl:Class rdf:ID="Date">
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" 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>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#year"/>
	<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#year"/>
	<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#gYear"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#month"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#month"/>
	<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#gMonth"/>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#day"/>
	<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
	<owl:onProperty rdf:resource="#day"/>
	<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#gDay"/>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>
    
  <!--
    ********  FIELDS  ********

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

  <owl:DatatypeProperty rdf:ID="ref">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">ref</rdfs:label>
    <rdfs:comment xml:lang="en">The key for a particular entry. Note that the rdf:ID for each Reference instance could be the key as well, possibly making this property redundant.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="selection">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">howReviewed</rdfs:label>
    <rdfs:comment xml:lang="en">The selection process overcome by the publication (full, none, poster, invited are possible values).</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:ObjectProperty rdf:ID="sections">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="#Chapter"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">sections</rdfs:label>
    <rdfs:comment xml:lang="en">The chapters of a book (monograph or collection).</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="tomes">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="#Section"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">tomes</rdfs:label>
    <rdfs:comment xml:lang="en">The parts of some reference (chapters, sections).</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="talks">
    <rdfs:domain rdf:resource="#ConferenceMinutes"/>
    <rdfs:range rdf:resource="#Communication"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">talks</rdfs:label>
    <rdfs:comment xml:lang="en">The communications to a conference as collected in proceedings.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="papers">
    <rdfs:domain rdf:resource="#Periodical"/>
    <rdfs:range rdf:resource="#JournalPaper"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">papers</rdfs:label>
    <rdfs:comment xml:lang="en">The papers published by a journal.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="coordinates">
    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
    <rdfs:range rdf:resource="#Directions"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">coordinates</rdfs:label>
    <rdfs:comment xml:lang="en">The address of an institution or the place of a conference.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="meeting">
    <rdfs:domain rdf:resource="#ConferenceMinutes"/>
    <rdfs:range rdf:resource="#Congress"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">meeting</rdfs:label>
    <rdfs:comment xml:lang="en">The event concerned with the proceedings.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="organizedBy">
    <rdfs:domain rdf:resource="#Congress"/>
    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">organizedBy</rdfs:label>
    <rdfs:comment xml:lang="en">The organization taking in charge a conference.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:DatatypeProperty rdf:ID="annotation">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">annotation</rdfs:label>
    <rdfs:comment xml:lang="en">An annotation. It is not used by the standard bibliography styles, but may be used by others that produce an annotated bibliography.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="frequency">
    <rdfs:domain rdf:resource="#Periodical"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Periodicity</rdfs:label>
    <rdfs:comment xml:lang="en">The periodicity of a serial publication (yearly, biannual, quarterly, monthly, bimonthly, weekly, biweekly, dayly).</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:ObjectProperty rdf:ID="contract">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Contract</rdfs:label>
    <rdfs:comment xml:lang="en">The contract in relation of which a particular reference has been made.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:DatatypeProperty rdf:ID="startDate">
    <rdfs:domain rdf:resource="#Chapter"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">First published</rdfs:label>
    <rdfs:comment xml:lang="en">When the reference was first published.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="issue">
    <rdfs:domain>
      <owl:Class>
	<owl:unionOf rdf:parseType="Collection">
	  <owl:Class rdf:about="#Book"/>
	  <owl:Class rdf:about="#ReferenceGuide"/>
	</owl:unionOf>
      </owl:Class>
    </rdfs:domain>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">issue</rdfs:label>
    <rdfs:comment xml:lang="en">The edition of a book (for example, "Second"). This should be an ordinal.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:ObjectProperty rdf:ID="createdBy">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="#People"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">human creator</rdfs:label>
    <rdfs:comment xml:lang="en">The list of the human creators of a work.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="writtenBy">
    <rdfs:subPropertyOf rdf:resource="#createdBy"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">writtenBy</rdfs:label>
    <rdfs:comment xml:lang="en">The list of the author(s) of a work.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="coordinatedBy">
    <rdfs:subPropertyOf rdf:resource="#createdBy"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">coordinatedBy</rdfs:label>
    <rdfs:comment xml:lang="en">The list of persons who edited or coordinated a work.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="directedBy">
    <rdfs:subPropertyOf rdf:resource="#createdBy"/>
    <rdfs:domain rdf:resource="#Movie"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">directedBy</rdfs:label>
    <rdfs:comment xml:lang="en">The list of directors of a motion picture or theater play.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:DatatypeProperty rdf:ID="PublicationDetails">
    <rdfs:domain>
      <owl:Class>
	<owl:unionOf rdf:parseType="Collection">
	  <owl:Class rdf:about="#Various"/>
	  <owl:Class rdf:about="#Brochure"/>
	</owl:unionOf>
      </owl:Class>
    </rdfs:domain>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">published</rdfs:label>
    <rdfs:comment xml:lang="en">How something strange has been published.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:ObjectProperty rdf:ID="issuedBy">
    <rdfs:domain rdf:resource="#Report"/>
    <rdfs:range rdf:resource="#Organization"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">issuedBy</rdfs:label>
    <rdfs:comment xml:lang="en">The sponsoring institution of a technical report.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="componentOf">
    <rdfs:domain rdf:resource="#Section"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">is part of</rdfs:label>
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
    <rdfs:comment xml:lang="en">The document that contains a text or article.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="inPeriodical">
    <rdfs:domain rdf:resource="#JournalPaper"/>
    <rdfs:range rdf:resource="#Periodical"/>
    <rdfs:subPropertyOf rdf:resource="#componentOf"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">inPeriodical</rdfs:label>
    <rdfs:comment xml:lang="en">The journal in which an article is published.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="inVolume">
    <rdfs:domain rdf:resource="#Extract"/>
    <rdfs:range rdf:resource="#Monography"/>
    <rdfs:subPropertyOf rdf:resource="#componentOf"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">inVolume</rdfs:label>
    <rdfs:comment xml:lang="en">A reference to the book that contains the entry.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="inCompilation">
    <rdfs:domain rdf:resource="#InCompilation"/>
    <rdfs:range rdf:resource="#Compilation"/>
    <rdfs:subPropertyOf rdf:resource="#componentOf"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">inCompilation</rdfs:label>
    <rdfs:comment xml:lang="en">A reference to the book that contains the entry.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="inMinutes">
    <rdfs:domain rdf:resource="#Communication"/>
    <rdfs:range rdf:resource="#ConferenceMinutes"/>
    <rdfs:subPropertyOf rdf:resource="#componentOf"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">inMinutes</rdfs:label>
    <rdfs:comment xml:lang="en">A reference to the proceedings in which the entry appears.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="publishingDate">
    <rdfs:domain>
      <owl:Class>
	<owl:unionOf rdf:parseType="Collection">
	  <owl:Class rdf:about="#Entry"/>
	  <owl:Class rdf:about="#Congress"/>
	</owl:unionOf>
      </owl:Class>
    </rdfs:domain>
    <rdfs:range rdf:resource="#Date"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">publishingDate</rdfs:label>
    <rdfs:comment xml:lang="en">The date when the work was published or, for an unpublished work, in which it was written. This date can be incomplete (i.e., no known day or month) but must contain a year.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:DatatypeProperty rdf:ID="comment">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">comment</rdfs:label>
    <rdfs:comment xml:lang="en">Any additional information that can help the reader.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:ObjectProperty rdf:ID="sponsoredBy">
    <rdfs:domain>
      <owl:Class>
	<owl:unionOf rdf:parseType="Collection">
	  <owl:Class rdf:about="#ConferenceMinutes"/>
	  <owl:Class rdf:about="#ReferenceGuide"/>
	</owl:unionOf>
      </owl:Class>
    </rdfs:domain>
    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">sponsoredBy</rdfs:label>
    <rdfs:comment xml:lang="en">The organization that sponsors a conference or that publishes a manual.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="publishedBy">
    <rdfs:domain>
      <owl:Class>
	<owl:unionOf rdf:parseType="Collection">
	  <owl:Class rdf:about="#Entry"/>
	  <owl:Class rdf:about="#Periodical"/>
	</owl:unionOf>
      </owl:Class>
      </rdfs:domain>
    <rdfs:range rdf:resource="#PublishingHouse"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">publishedBy</rdfs:label>
    <rdfs:comment xml:lang="en">The publisher of a work.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:ObjectProperty rdf:ID="issuer">
    <rdfs:domain>
      <owl:Class>
	<owl:unionOf rdf:parseType="Collection">
	  <owl:Class rdf:about="#StudentReport"/>
	  <owl:Class rdf:about="#CourseMaterial"/>
	</owl:unionOf>
      </owl:Class>
    </rdfs:domain>
    <rdfs:range rdf:resource="#University"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">issuer</rdfs:label>
    <rdfs:comment xml:lang="en">The name of the school where a thesis was written.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:DatatypeProperty rdf:ID="inSeries">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">inSeries</rdfs:label>
    <rdfs:comment xml:lang="en">The name of a series or set of books. When citing an entire book, the the title field gives its title and an optional series field gives the name of a series or multi-volume set in which the book is published.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="heading">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">heading</rdfs:label>
    <rdfs:comment xml:lang="en">The title of the work.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="type">
    <rdfs:domain>
      <owl:Class>
	<owl:unionOf rdf:parseType="Collection">
	  <owl:Class rdf:about="#Chapter"/>
	  <owl:Class rdf:about="#TechnicalReport"/>
	  <owl:Class rdf:about="#StudentReport"/>
	</owl:unionOf>
      </owl:Class>
    </rdfs:domain>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">type</rdfs:label>
    <rdfs:comment xml:lang="en">The type of a technical report (for example, "Research Note").</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="company">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">company</rdfs:label>
    <rdfs:comment xml:lang="en">The authors affiliation.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="summary">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">summary</rdfs:label>
    <rdfs:comment xml:lang="en">The abstract of the work.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="table">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">ontents</rdfs:label>
    <rdfs:comment xml:lang="en">The Table of Contents.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="rights">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">rights</rdfs:label>
    <rdfs:comment xml:lang="en">The Copyright information.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="ISBN">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">ISBN</rdfs:label>
    <rdfs:comment xml:lang="en">The International Standard Book Number.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="ISSN">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">ISSN</rdfs:label>
    <rdfs:comment xml:lang="en">The International Standard Serial Number. Used to identify a journal.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="KeyWordsAndPhrases">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">KeyWordsAndPhrases</rdfs:label>
    <rdfs:comment xml:lang="en">Key words used for searching or possibly for annotation (as given by the author or publisher).</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="idiom">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#language"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">idiom</rdfs:label>
    <rdfs:comment xml:lang="en">The language in which the referenced publication is written or performed (use ISO two-letter codes).</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:ObjectProperty rdf:ID="place">
    <rdfs:domain>
      <owl:Class>
	<owl:unionOf rdf:parseType="Collection">
	  <owl:Class rdf:about="#Entry"/>
	  <owl:Class rdf:about="#Congress"/>
	</owl:unionOf>
      </owl:Class>
    </rdfs:domain>
    <rdfs:range rdf:resource="#Directions"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">place</rdfs:label>
    <rdfs:comment xml:lang="en">A location associated with the entry, such as the city in which a conference took place (this is now obsolete).</rdfs:comment>
  </owl:ObjectProperty>

  <owl:DatatypeProperty rdf:ID="LCCN">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">LCCN</rdfs:label>
    <rdfs:comment xml:lang="en">The Library of Congress Call Number (this the Congress of the United State of America).</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="MRN">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">MR number</rdfs:label>
    <rdfs:comment xml:lang="en">The Mathematical Reviews number.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="amount">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">amount</rdfs:label>
    <rdfs:comment xml:lang="en">The price of the document.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="dimensions">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">dimensions</rdfs:label>
    <rdfs:comment xml:lang="en">The physical dimensions of a document.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="link">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">URL</rdfs:label>
    <rdfs:comment xml:lang="en">The Universal Resource Locator that points to the item being referenced.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="id">
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">The name of an entity.</rdfs:label>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="acronym">
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">The name of an entity.</rdfs:label>
  </owl:DatatypeProperty>

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

  <owl:DatatypeProperty rdf:ID="section">
    <rdfs:domain rdf:resource="#Section"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">section</rdfs:label>
    <rdfs:comment xml:lang="en">The chapter (or section or whatever) number in which the entry is found.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:ObjectProperty rdf:ID="pageRange">
    <rdfs:domain rdf:resource="#Section"/>
    <rdfs:range rdf:resource="#PageInterval"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">pageRange</rdfs:label>
    <rdfs:comment xml:lang="en">A range of page, with an upper and lower limit.</rdfs:comment>
  </owl:ObjectProperty>

  <owl:DatatypeProperty rdf:ID="numbering">
    <rdfs:domain>
      <owl:Class>
        <owl:unionOf rdf:parseType="Collection">
          <owl:Class rdf:about="#Entry"/>
          <owl:Class rdf:about="#Congress"/>
        </owl:unionOf>
      </owl:Class>
    </rdfs:domain>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">volume or number</rdfs:label>
    <rdfs:comment xml:lang="en">The number of a journal, magazine, technical report, or of a work in a series. An issue of a journal or magazine is usually identified by its volume and number; the organization that issues a technical report usually gives it a number; and sometimes books are given numbers in a named series.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="number">
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:subPropertyOf rdf:resource="#numbering"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">number</rdfs:label>
    <rdfs:comment xml:lang="en">The number of a journal, magazine, technical report, or of a work in a series. An issue of a journal or magazine is usually identified by its volume and number; the organization that issues a technical report usually gives it a number; and sometimes books are given numbers in a named series.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="issue">
    <rdfs:domain>
      <owl:Class>
        <owl:unionOf rdf:parseType="Collection">
          <owl:Class rdf:about="#Entry"/>
          <owl:Class rdf:about="#Congress"/>
        </owl:unionOf>
      </owl:Class>
    </rdfs:domain>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:subPropertyOf rdf:resource="#numbering"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">Issue</rdfs:label>
    <rdfs:comment xml:lang="en">The issue of a conference.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="volume">
    <rdfs:subPropertyOf rdf:resource="#numbering"/>
    <rdfs:domain rdf:resource="#Entry"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">volume</rdfs:label>
    <rdfs:comment xml:lang="en">The volume of a journal or multivolume book.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="year">
    <rdfs:domain rdf:resource="#Date"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#gYear"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">year</rdfs:label>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="month">
    <rdfs:domain rdf:resource="#Date"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#gMonth"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">month</rdfs:label>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="day">
    <rdfs:domain rdf:resource="#Date"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#gDay"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">day</rdfs:label>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="town">
    <rdfs:domain rdf:resource="#Directions"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">town</rdfs:label>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="state">
    <rdfs:domain rdf:resource="#Directions"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">state</rdfs:label>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="country">
    <rdfs:domain rdf:resource="#Directions"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
    <rdfs:comment xml:lang="en">Usually in ISO format</rdfs:comment>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">country</rdfs:label>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="beginning">
    <rdfs:domain rdf:resource="#PageInterval"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">start page</rdfs:label>
    <rdfs:comment xml:lang="en">The beginning of a range of pages.</rdfs:comment>
  </owl:DatatypeProperty>

  <owl:DatatypeProperty rdf:ID="end">
    <rdfs:domain rdf:resource="#PageInterval"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
    <rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/" xml:lang="en">end page</rdfs:label>
    <rdfs:comment xml:lang="en">The end of a range of pages.</rdfs:comment>
  </owl:DatatypeProperty>

<!-- PEOPLE -->

<foaf:Person rdf:about="#a04570373">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Meyer</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a43836633">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Broekstra</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a85228505">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mädche</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a48552212">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Schnizler</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a971541439">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Trombetta</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a11090777">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Parent</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a250331360">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Schmidt</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a79573306">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sure</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a885257047">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Punceva</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a74993404">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Levenshtein</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a71003986">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Staab</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a572406328">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Boer</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a139477786">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Menken</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a337716610">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hauswirth</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a086379337">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hoek</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a712561038">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ehrig</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a066600210">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Montesi</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a093016135">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eijk</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a944339054">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">van Harmelen</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a98078619">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cudré-Mauroux</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a39510672">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Despotovic</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a431956276">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Spaccapietra</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a431956276b">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Papazoglou</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a431956276c">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tari</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a70955601">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Datta</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a467748807">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Anaby-Tavor</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a3105947">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Siebes</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a29105611">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Aberer</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a958684218">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mika</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a94533498">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Haase</lastName>
</foaf:Person>

<foaf:Person rdf:about="#a900366022">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">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>
	<lastName xmlns="" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gal</lastName>
</foaf:Person>

<!-- INSTITUTIONS -->

<Periodical xmlns="" rdf:about="#a246119474">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Journal of Web Semantics</rdfs:label>
	<foaf:name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Journal of Web Semantics</foaf:name>
	<acronym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">JWS</acronym>
</Periodical>

<PublishingHouse xmlns="" rdf:about="#a131020767">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Springer-Verlag</rdfs:label>
	<id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Springer-Verlag</id>
	<coordinates>
		<Directions>
			<town>Heidelberg</town>
			<country>DE</country>
		</Directions>
	</coordinates>
</PublishingHouse>

<Periodical xmlns="" rdf:about="#a70981683">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Cybernetics and Control Theory</rdfs:label>
	<id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cybernetics and Control Theory</id>
</Periodical>

<PublishingHouse xmlns="" rdf:about="#a85849488">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">The MIT Press</rdfs:label>
	<id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The MIT Press</id>
	<coordinates>
		<Directions>
			<town rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cambridge</town>
			<state rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MA</state>
			<country rdf:datatype="http://www.w3.org/2001/XMLSchema#string">US</country>
		</Directions>
	</coordinates>
</PublishingHouse>

<Periodical xmlns="" rdf:about="#a362042121">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">International journal of intelligent system</rdfs:label>
	<id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">International journal of intelligent system</id>
	<acronym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IJIS</acronym>
</Periodical>

<Periodical xmlns="" rdf:about="#a674639524">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">ACM SIGMOD Record</rdfs:label>
	<id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ACM SIGMOD Record</id>
</Periodical>

<Periodical xmlns="" rdf:about="#a906774044">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">VLDB Journal</rdfs:label>
	<id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VLDB Journal</id>
</Periodical>


<!-- EVENTS -->

<Congress xmlns="" rdf:about="#spg04">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">SemPGrid 04 Workshop</rdfs:label>
	<id>SemPGrid 04 Workshop</id>
	<place>
		<Directions>
			<town>New-York</town>
			<state>NY</state>
			<country>US</country>
		</Directions>
	</place>
	<publishingDate>
		<Date>
			<month rdf:datatype="http://www.w3.org/2001/XMLSchema#gMonth">--05</month>
			<year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2004</year>
		</Date>
	</publishingDate>
</Congress>

<Congress xmlns="" rdf:about="#a72192307c">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">13th Int. Conference on Knowledge Engineering and Management (EKAW-2002)</rdfs:label>
	<id>Int. Conference on Knowledge Engineering and Management</id>
	<acronym>EKAW</acronym>
	<issue>13</issue>
	<!--location>
		<Address>
			<city></city>
			<state></state>
			<country></country>
		</Address>
	</location-->
	<publishingDate>
		<Date>
			<month rdf:datatype="http://www.w3.org/2001/XMLSchema#gMonth">--10</month>
			<year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2002</year>
		</Date>
	</publishingDate>
</Congress>

<Congress xmlns="" rdf:about="#a32071928c">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">First European Semantic Web Symposium</rdfs:label>
	<id>European Semantic Web Symposium</id>
	<acronym>ESWS</acronym>
	<issue>1</issue>
	<place>
		<Directions>
			<town rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Heraklion</town>
			<country>GR</country>
		</Directions>
	</place>
	<publishingDate>
		<Date>
			<month rdf:datatype="http://www.w3.org/2001/XMLSchema#gMonth">--05</month>
			<year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2004</year>
		</Date>
	</publishingDate>
</Congress>

<!-- REFERENCES -->

<ConferenceMinutes xmlns="" rdf:about="#a060097576">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Proceedings of the SemPGrid 04 Workshop</rdfs:label>
	<heading>Proceedings of the SemPGrid 04 Workshop</heading>
	<publishingDate><Date><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2004</year></Date></publishingDate>
	<meeting rdf:resource="#spg04"/>
</ConferenceMinutes>

<Communication xmlns="" rdf:about="#a64263824">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Bibster - A Semantics-Based Bibliographic Peer-to-Peer System</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a43836633"/>
		<rdf:rest>
		    <People>
			<rdf:first rdf:resource="#a712561038"/>
			<rdf:rest>
			    <People>
				<rdf:first rdf:resource="#a94533498"/>
				<rdf:rest>
				    <People>
					<rdf:first rdf:resource="#a944339054"/>
					<rdf:rest>
					    <People>
						<rdf:first rdf:resource="#a139477786"/>
						<rdf:rest>
						    <People>
							<rdf:first rdf:resource="#a958684218"/>
							<rdf:rest>
							    <People>
								<rdf:first rdf:resource="#a48552212"/>
								<rdf:rest>
								    <People>
									<rdf:first rdf:resource="#a3105947"/>
									<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
								    </People>
								</rdf:rest>
							    </People>
							</rdf:rest>
						    </People>
						</rdf:rest>
					    </People>
					</rdf:rest>
				    </People>
				</rdf:rest>
			    </People>
			</rdf:rest>
		    </People>
		</rdf:rest>
	    </People>
	</writtenBy>
	<inMinutes rdf:resource="#a060097576"/>
	<heading>Bibster - A Semantics-Based Bibliographic Peer-to-Peer System</heading>
</Communication>

<!-- HERE -->

<Communication xmlns="" rdf:about="#a439508789">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Measuring Similarity between Ontologies</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a85228505"/>
		<rdf:rest>
		    <People>
			<rdf:first rdf:resource="#a71003986"/>
			<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
		   </People>
		</rdf:rest>
	   </People>
	</writtenBy>
	<inMinutes rdf:resource="#a72192307"/>
	<heading>Measuring Similarity between Ontologies</heading>
</Communication>

<JournalPaper xmlns="" rdf:about="#a492378321">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">{P-Grid: A Self-organizing Structured P2P System}</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a29105611"/>
		<rdf:rest>
		    <People>
			<rdf:first rdf:resource="#a98078619"/>
			<rdf:rest>
			    <People>
				<rdf:first rdf:resource="#a70955601"/>
				<rdf:rest>
				    <People>
					<rdf:first rdf:resource="#a39510672"/>
					<rdf:rest>
					    <People>
						<rdf:first rdf:resource="#a337716610"/>
						<rdf:rest>
						    <People>
							<rdf:first rdf:resource="#a885257047"/>
							<rdf:rest>
							    <People>
								<rdf:first rdf:resource="#a250331360"/>
								<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
							    </People>
							</rdf:rest>
						    </People>
						</rdf:rest>
					    </People>
					</rdf:rest>
				    </People>
				</rdf:rest>
			    </People>
			</rdf:rest>
		    </People>
		</rdf:rest>
	    </People>
	</writtenBy>
	<inPeriodical rdf:resource="#a674639524"/>
	<heading>{P-Grid}: A Self-organizing Structured P2P System</heading>
	<publishingDate><Date><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2003</year></Date></publishingDate>
</JournalPaper>

<JournalPaper xmlns="" rdf:about="#a475526642">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Binary Codes capable of correcting deletions, insertions, and reversals</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a74993404"/>
		<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
	    </People>
	</writtenBy>
	<inPeriodical rdf:resource="#a70981683"/>
	<heading>Binary Codes capable of correcting deletions, insertions, and reversals</heading>
	<publishingDate><Date><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">1996</year></Date></publishingDate>
</JournalPaper>

<Extract xmlns="" rdf:about="#a71568377">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Database integration: the key to data interoperability</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a11090777"/>
		<rdf:rest>
		    <People>
			<rdf:first rdf:resource="#a431956276"/>
			<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
		   </People>
		</rdf:rest>
	   </People>
	</writtenBy>
	<inVolume rdf:resource="#a108048723"/>
	<heading>Database integration: the key to data interoperability</heading>
	<coordinatedBy>
	    <People>
		<rdf:first rdf:resource="#a431956276"/>
		<rdf:rest>
		    <People>
			  <rdf:first rdf:resource="#a431956276b"/>
			  <rdf:rest>
			      <People>
			  	    <rdf:first rdf:resource="#a431956276c"/>
				    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
			      </People>
			  </rdf:rest>
	             </People>
		</rdf:rest>
           </People>
	</coordinatedBy>
</Extract>

<ConferenceMinutes xmlns="" rdf:about="#a72192307">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Proc. Of the 13th Int. Conference on Knowledge Engineering and Management (EKAW-2002)</rdfs:label>
	<publishedBy rdf:resource="#a131020767"/>
	<heading>Proc. Of the 13th Int. Conference on Knowledge Engineering and Management (EKAW-2002)</heading>
	<meeting rdf:resource="#a72192307c"/>
	<publishingDate><Date><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2002</year></Date></publishingDate>
</ConferenceMinutes>

<ConferenceMinutes xmlns="" rdf:about="#a32071928">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Proceedings of the First European Semantic Web Symposium</rdfs:label>
	<publishedBy rdf:resource="#a131020767"/>
	<meeting rdf:resource="#a32071928c"/>
	<heading>Proceedings of the First European Semantic Web Symposium</heading>
	<publishingDate><Date><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2004</year></Date></publishingDate>
</ConferenceMinutes>

<Various xmlns="" rdf:about="#a140583454">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">{QOM} - Quick Ontology Mapping</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a712561038"/>
		<rdf:rest>
		    <People>
			<rdf:first rdf:resource="#a71003986"/>
			<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
		    </People>
		</rdf:rest>
	    </People>
	</writtenBy>
	<heading>{QOM} - Quick Ontology Mapping</heading>
	<comment>submitted to the ISWC 04</comment>
	<publishingDate><Date><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2004</year></Date></publishingDate>
</Various>

<Communication xmlns="" rdf:about="#a11065952">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Ontology Mapping - An Integrated Approach</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a712561038"/>
		<rdf:rest>
		    <People>
			<rdf:first rdf:resource="#a79573306"/>
			<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
		    </People>
		</rdf:rest>
	    </People>
	</writtenBy>
	<inMinutes rdf:resource="#a32071928"/>
	<heading>Ontology Mapping - An Integrated Approach</heading>
	<link>http://www.aifb.uni-karlsruhe.de/WBS/meh/publications/ehrig04ontology_ESWS04.pdf</link>
</Communication>

<JournalPaper xmlns="" rdf:about="#a80299267">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Start making sense: The Chatty Web approach for global semantic agreements</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a29105611"/>
		<rdf:rest>
		    <People>
			<rdf:first rdf:resource="#a98078619"/>
			<rdf:rest>
			    <People>
				<rdf:first rdf:resource="#a337716610"/>
				<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
			    </People>
			</rdf:rest>
		    </People>
		</rdf:rest>
	    </People>
	</writtenBy>
	<inPeriodical rdf:resource="#a246119474"/>
	<heading>Start making sense: The Chatty Web approach for global semantic agreements</heading>
	<publishingDate><Date><month rdf:datatype="http://www.w3.org/2001/XMLSchema#gMonth">--12</month><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2003</year></Date></publishingDate>
</JournalPaper>

<Monography xmlns="" rdf:about="#a108048723">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">Object-Oriented Data Modeling</rdfs:label>
	<publishedBy rdf:resource="#a85849488"/>
	<heading>Object-Oriented Data Modeling</heading>
	<publishingDate><Date><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2000</year></Date></publishingDate>
</Monography>

<JournalPaper xmlns="" rdf:about="#a456080390">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">On dynamically generated ontology translators in agent communication</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a093016135"/>
		<rdf:rest>
		    <People>
			<rdf:first rdf:resource="#a572406328"/>
			<rdf:rest>
			    <People>
				<rdf:first rdf:resource="#a086379337"/>
				<rdf:rest>
				    <People>
					<rdf:first rdf:resource="#a04570373"/>
					<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
				    </People>
				</rdf:rest>
			    </People>
			</rdf:rest>
		    </People>
		</rdf:rest>
	    </People>
	</writtenBy>
	<inPeriodical rdf:resource="#a362042121"/>
	<heading>On dynamically generated ontology translators in agent communication</heading>
	<pageRange>
		<PageInterval>
			<beginning rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">587</beginning>
			<end rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">607</end>
		</PageInterval>
	</pageRange>
	<publishingDate><Date><month rdf:datatype="http://www.w3.org/2001/XMLSchema#gMonth">--12</month><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2001</year></Date></publishingDate>
</JournalPaper>

<JournalPaper xmlns="" rdf:about="#a846015923">
	<rdfs:label xmlns:my="http://oaei.ontologymatching.org/2010/benchmarks/205/onto.rdf#" xmlns:units="http://visus.mit.edu/fontomri/0.01/units.owl#" xmlns:wot="http://xmlns.com/wot/0.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:align="http://knowledgeweb.semanticweb.org/heterogeneity/alignment" xmlns:dctype="http://purl.org/dc/dcmitype/">A Framework for Modeling and Evaluating Automatic Semantic Reconciliation</rdfs:label>
	<writtenBy>
	    <People>
		<rdf:first rdf:resource="#a900366022"/>
		<rdf:rest>
		    <People>
			<rdf:first rdf:resource="#a467748807"/>
			<rdf:rest>
			    <People>
				<rdf:first rdf:resource="#a971541439"/>
				<rdf:rest>
				    <People>
					<rdf:first rdf:resource="#a066600210"/>
					<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
				    </People>
				</rdf:rest>
			    </People>
			</rdf:rest>
		    </People>
		</rdf:rest>
	    </People>
	</writtenBy>
	<inPeriodical rdf:resource="#a906774044"/>
	<heading>A Framework for Modeling and Evaluating Automatic Semantic Reconciliation</heading>
	<comment>to appear</comment>
	<publishingDate><Date><year rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">2004</year></Date></publishingDate>
</JournalPaper>

</rdf:RDF>

