| Id (Ontology name) |
Origin Ontology | Exchange Ontology | Final Ontology |
| E01 (ISA01) |
<rdf:RDF
xml:base="http://www.example.org/ISA01#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:ibs="http://www.example.org/ISA01#">
<owl:Ontology rdf:about="#" />
<owl:Class rdf:about="http://www.example.org/ISA01#Person">
</owl:Class>
</rdf:RDF>
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
<!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'>
<!ENTITY dc 'http://purl.org/dc/elements/1.1/'>
<!ENTITY owl 'http://www.w3.org/2002/07/owl#'>
<!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'>
]>
<rdf:RDF xml:base="http://www.example.org/ISA01#"
xmlns="http://www.example.org/ISA01#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<!--Ontology description-->
<owl:Ontology rdf:about=""/>
<owl:Class rdf:ID="Person">
<rdfs:label>Person</rdfs:label>
</owl:Class>
</rdf:RDF>
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://www.example.org/ISA01" xml:base="http://www.example.org/ISA01" xmlns:n0="http://www.example.org/ISA01#">
<owl:Ontology />
<owl:Class rdf:ID="Person">
<rdfs:label>Person</rdfs:label>
</owl:Class>
</rdf:RDF> |