############################################################################## #Disclaimer: http://www.lockheedmartin.com/disclaimer.html ## # This file is in N3 format, a language equivalent to XML but easier to # read and write. It is best viewed with tab stops at 8 spaces. # The following are bindings for namespace shorthands. ## @prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix dc: . @prefix dct: . @prefix log: . @prefix oo: . @prefix : . ############################################################################### # This is an ontology for expressing alignment between classes, properties, and instances of # different ontologies, whether they are developed independently or versions of each other. # As used here, alignment is a looser relationship than equivalence, so alignment statements # should be taken to be compatible with, but not logically reducible to, sameClassAs, # samePropertyAs, and sameAs statements. The intention of this format is that it allows for # more flexible mapping between ontology elements, including 1-n and n-1 map cardinality # and instances-to-class mapping. ## =<>; a log:N3Document; a owl:Ontology; dc:title "Ontology of Ontology Alignment"; dc:publisher "Lockheed Martin Advanced Technology Laboratories"; dc:creator "Todd Hughes, thughes@atl.lmco.com"; dc:creator "Benjamin Ashpole, bashpole@atl.lmco.com"; dct:created "2004-04-30"; dct:issued "2004-04-30"; owl:versionInfo "0.0.1"; dc:format "text/n3"; dc:language "en"; rdfs:label "Ontology of Ontology Alignment". :AlignmentFile rdfs:comment "Alignment Files are the standard output for ontology alignment experiments. These files contain references to the Alignments (see below) that state term mappings between ontologies. Alignment Files provide the data necessary for evaluating the performance of ontology aligners."; a owl:Class; rdfs:subClassof oo:OntologyOperationFile. :Alignment rdfs:comment "An Alignment, embedded in an Alignment File, states that a class, property, or instance from one ontology maps to a class, property, or instance in another ontology. The alignment is declared using the elementA and elementB properties."; a owl:Class. :elementA rdfs:comment "A property relating an Alignment to a class, property, or instance from the inputA of an alignment experiment."; a rdf:Property; rdfs:domain :Alignment; rdfs:range owl:Thing. :elementB rdfs:comment "A property relating an Alignment to a class, property, or instance from the inputB of an alignment experiment."; a rdf:Property; rdfs:domain :Alignment; rdfs:range owl:Thing. :alignmentConfidence rdfs:comment "A property relating an Alignment with a value between 0 and 1 that indicates the probability that the alignment is true, in the opinion of the aligner."; a rdf:Property; rdfs:domain :Alignment.