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 ibs 'http://www.example.org/ISA01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> </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> |
E02 (ISA02) | <rdf:RDF xml:base="http://www.example.org/ISA02#" 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/ISA02#"> <owl:Ontology rdf:about="#" /> <rdf:Description rdf:about="http://www.example.org/ISA02#Child"> <rdfs:subClassOf rdf:resource="http://www.example.org/ISA02#Man"/> </rdf:Description> <rdf:Description rdf:about="http://www.example.org/ISA02#Man"> <rdfs:subClassOf rdf:resource="http://www.example.org/ISA02#Person"/> </rdf:Description> <owl:Class rdf:about="http://www.example.org/ISA02#Person" /> <owl:Class rdf:about="http://www.example.org/ISA02#Man" /> <owl:Class rdf:about="http://www.example.org/ISA02#Child" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Child"> <rdfs:subClassOf rdf:resource="&ibs;Man"/> </owl:Class> <owl:Class rdf:about="&ibs;Man"> <rdfs:subClassOf rdf:resource="&ibs;Person"/> </owl:Class> <owl:Class rdf:about="&ibs;Person"/> </rdf:RDF> |
  |
E03 (ISA03) | <rdf:RDF xml:base="http://www.example.org/ISA03#" 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/ISA03#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISA03#Child"> <rdfs:subClassOf rdf:resource="http://www.example.org/ISA03#Man"/> <rdfs:subClassOf rdf:resource="http://www.example.org/ISA03#Person"/> </owl:Class> <owl:Class rdf:about="http://www.example.org/ISA03#Person" /> <owl:Class rdf:about="http://www.example.org/ISA03#Man" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Child"> <rdfs:subClassOf rdf:resource="&ibs;Man"/> <rdfs:subClassOf rdf:resource="&ibs;Person"/> </owl:Class> <owl:Class rdf:about="&ibs;Person"/> <owl:Class rdf:about="&ibs;Man"/> </rdf:RDF> |
  |
E04 (ISA04) | <rdf:RDF xml:base="http://www.example.org/ISA04#" 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/ISA04#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISA04#Man"> <rdfs:subClassOf rdf:resource="http://www.example.org/ISA04#Person"/> </owl:Class> <owl:Class rdf:about="http://www.example.org/ISA04#Woman"> <rdfs:subClassOf rdf:resource="http://www.example.org/ISA04#Person"/> </owl:Class> <owl:Class rdf:about="http://www.example.org/ISA04#Person" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA04#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Man"> <rdfs:subClassOf rdf:resource="&ibs;Person"/> </owl:Class> <owl:Class rdf:about="&ibs;Woman"> <rdfs:subClassOf rdf:resource="&ibs;Person"/> </owl:Class> <owl:Class rdf:about="&ibs;Person"/> </rdf:RDF> |
  |
E05 (ISA05) | <rdf:RDF xml:base="http://www.example.org/ISA05#" 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/ISA05#"> <owl:Ontology rdf:about="#" /> <rdf:Description rdf:about="http://www.example.org/ISA05#Male"> <rdfs:subClassOf rdf:resource="http://www.example.org/ISA05#Man"/> </rdf:Description> <rdf:Description rdf:about="http://www.example.org/ISA05#Man"> <rdfs:subClassOf rdf:resource="http://www.example.org/ISA05#Male"/> </rdf:Description> <owl:Class rdf:about="http://www.example.org/ISA05#Male" /> <owl:Class rdf:about="http://www.example.org/ISA05#Man" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA05#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Male"> <rdfs:subClassOf rdf:resource="&ibs;Man"/> </owl:Class> <owl:Class rdf:about="&ibs;Man"> <rdfs:subClassOf rdf:resource="&ibs;Male"/> </owl:Class> </rdf:RDF> |
  |
E06 (ISA06) | <rdf:RDF xml:base="http://www.example.org/ISA06#" 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/ISA06#"> <owl:Ontology rdf:about="#" /> <rdf:Description rdf:about="http://www.example.org/ISA06#Woman"> <rdfs:subClassOf rdf:resource="http://www.example.org/ISA06#Woman"/> </rdf:Description> <owl:Class rdf:about="http://www.example.org/ISA06#Woman" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA06#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Woman"> <rdfs:subClassOf rdf:resource="&ibs;Woman"/> </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/ISA06#" xmlns="http://www.example.org/ISA06#" 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="Woman"> <rdfs:label>Woman</rdfs:label> </owl:Class> </rdf:RDF> |
E07 (ISA07) | <rdf:RDF xml:base="http://www.example.org/ISA07#" 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/ISA07#"> <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISA07#hasCar"/> <owl:Class rdf:about="http://www.example.org/ISA07#Driver"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA07#hasCar"/> <owl:someValuesFrom> <owl:Class rdf:about="http://www.example.org/ISA07#Car" /> </owl:someValuesFrom> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA07#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;hasCar"/> <owl:Class rdf:about="&ibs;Driver"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="&ibs;hasCar"/> <owl:someValuesFrom rdf:resource="&ibs;Car"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:about="&ibs;Car"/> </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/ISA07#" xmlns="http://www.example.org/ISA07#" 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="Car"> <rdfs:label>Car</rdfs:label> </owl:Class> <owl:Class rdf:ID="Driver"> <rdfs:label>Driver</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasCar"/> <owl:allValuesFrom rdf:resource="#Car"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasCar_1"> <rdfs:label>hasCar</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasCar"> <rdfs:label>hasCar</rdfs:label> <rdfs:domain rdf:resource="#Driver"/> <rdfs:range rdf:resource="#Car"/> </owl:ObjectProperty> </rdf:RDF> |
E08 (ISA08) | <rdf:RDF xml:base="http://www.example.org/ISA08#" 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/ISA08#"> <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISA08#wasBorn"/> <owl:Class rdf:about="http://www.example.org/ISA08#Italian"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA08#wasBorn"/> <owl:allValuesFrom> <owl:Class rdf:about="http://www.example.org/ISA08#Italy"/> </owl:allValuesFrom> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA08#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;wasBorn"/> <owl:Class rdf:about="&ibs;Italian"> <rdfs:subClassOf> <owl:Restriction> <owl:allValuesFrom rdf:resource="&ibs;Italy"/> <owl:onProperty rdf:resource="&ibs;wasBorn"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:about="&ibs;Italy"/> </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/ISA08#" xmlns="http://www.example.org/ISA08#" 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="Italian"> <rdfs:label>Italian</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#wasBorn"/> <owl:allValuesFrom rdf:resource="#Italy"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Italy"> <rdfs:label>Italy</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="wasBorn_1"> <rdfs:label>wasBorn</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="wasBorn"> <rdfs:label>wasBorn</rdfs:label> <rdfs:domain rdf:resource="#Italian"/> <rdfs:range rdf:resource="#Italy"/> </owl:ObjectProperty> </rdf:RDF> |
E09 (ISA09) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISA09#" 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#" xmlns:ibs ="http://www.example.org/ISA09#" > <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISA09#worksIn" /> <owl:Class rdf:about="http://www.example.org/ISA09#Employee"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA09#worksIn" /> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA09#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;worksIn"/> <owl:Class rdf:about="&ibs;Employee"> <rdfs:subClassOf> <owl:Restriction> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> <owl:onProperty rdf:resource="&ibs;worksIn"/> </owl:Restriction> </rdfs:subClassOf> </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/ISA09#" xmlns="http://www.example.org/ISA09#" 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="Employee"> <rdfs:label>Employee</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="worksIn"> <rdfs:label>worksIn</rdfs:label> <rdfs:domain> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="#Employee"/> </owl:unionOf> </owl:Class> </rdfs:domain> <rdfs:range> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/> </owl:unionOf> </owl:Class> </rdfs:range> </owl:ObjectProperty> </rdf:RDF> |
E10 (ISA10) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISA10#" 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#" xmlns:ibs ="http://www.example.org/ISA10#" > <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISA10#hasAffiliation" /> <owl:Class rdf:about="http://www.example.org/ISA10#Researcher"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA10#hasAffiliation" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA10#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;hasAffiliation"/> <owl:Class rdf:about="&ibs;Researcher"> <rdfs:subClassOf> <owl:Restriction> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> <owl:onProperty rdf:resource="&ibs;hasAffiliation"/> </owl:Restriction> </rdfs:subClassOf> </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/ISA10#" xmlns="http://www.example.org/ISA10#" 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="Researcher"> <rdfs:label>Researcher</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">11</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasAffiliation"> <rdfs:label>hasAffiliation</rdfs:label> <rdfs:domain> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="#Researcher"/> </owl:unionOf> </owl:Class> </rdfs:domain> <rdfs:range> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/> </owl:unionOf> </owl:Class> </rdfs:range> </owl:ObjectProperty> </rdf:RDF> |
E11 (ISA11) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISA11#" 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#" xmlns:ibs ="http://www.example.org/ISA11#" > <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISA11#hasMother" /> <owl:Class rdf:about="http://www.example.org/ISA11#Person"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA11#hasMother" /> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA11#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;hasMother"/> <owl:Class rdf:about="&ibs;Person"> <rdfs:subClassOf> <owl:Restriction> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:cardinality> <owl:onProperty rdf:resource="&ibs;hasMother"/> </owl:Restriction> </rdfs:subClassOf> </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/ISA11#" xmlns="http://www.example.org/ISA11#" 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> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">11</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasMother"> <rdfs:label>hasMother</rdfs:label> <rdfs:domain> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="#Person"/> </owl:unionOf> </owl:Class> </rdfs:domain> <rdfs:range> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/> </owl:unionOf> </owl:Class> </rdfs:range> </owl:ObjectProperty> </rdf:RDF> |
E12 (ISA12) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISA12#" 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#" xmlns:ibs ="http://www.example.org/ISA12#" > <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISA12#hasAffiliation" /> <owl:Class rdf:about="http://www.example.org/ISA12#Researcher"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA12#hasAffiliation" /> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA12#hasAffiliation" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA12#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;hasAffiliation"/> <owl:Class rdf:about="&ibs;Researcher"> <rdfs:subClassOf> <owl:Restriction> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> <owl:onProperty rdf:resource="&ibs;hasAffiliation"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> <owl:onProperty rdf:resource="&ibs;hasAffiliation"/> </owl:Restriction> </rdfs:subClassOf> </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/ISA12#" xmlns="http://www.example.org/ISA12#" 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="Researcher"> <rdfs:label>Researcher</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">11</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasAffiliation"> <rdfs:label>hasAffiliation</rdfs:label> <rdfs:domain> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="#Researcher"/> </owl:unionOf> </owl:Class> </rdfs:domain> <rdfs:range> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/> </owl:unionOf> </owl:Class> </rdfs:range> </owl:ObjectProperty> </rdf:RDF> |
E13 (ISA13) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISA13#" 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#" xmlns:ibs ="http://www.example.org/ISA13#" > <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISA13#hasName" /> <owl:Class rdf:about="http://www.example.org/ISA13#Person"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA13#hasName" /> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA13#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"/> <owl:Class rdf:about="&ibs;Person"> <rdfs:subClassOf> <owl:Restriction> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> <owl:onProperty rdf:resource="&ibs;hasName"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
  |
E14 (ISA14) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISA14#" 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#" xmlns:ibs ="http://www.example.org/ISA14#" > <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISA14#wrotePhDThesis" /> <owl:Class rdf:about="http://www.example.org/ISA14#Researcher"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA14#wrotePhDThesis" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA14#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;wrotePhDThesis"/> <owl:Class rdf:about="&ibs;Researcher"> <rdfs:subClassOf> <owl:Restriction> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> <owl:onProperty rdf:resource="&ibs;wrotePhDThesis"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
  |
E15 (ISA15) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISA15#" 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#" xmlns:ibs ="http://www.example.org/ISA15#" > <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISA15#hasSSN" /> <owl:Class rdf:about="http://www.example.org/ISA15#Person"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA15#hasSSN" /> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA15#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;hasSSN"/> <owl:Class rdf:about="&ibs;Person"> <rdfs:subClassOf> <owl:Restriction> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:cardinality> <owl:onProperty rdf:resource="&ibs;hasSSN"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
  |
E16 (ISA16) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISA16#" 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#" xmlns:ibs ="http://www.example.org/ISA16#" > <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISA16#wrotePhDThesis" /> <owl:Class rdf:about="http://www.example.org/ISA16#Researcher"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA16#wrotePhDThesis" /> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISA16#wrotePhDThesis" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA16#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;wrotePhDThesis"/> <owl:Class rdf:about="&ibs;Researcher"> <rdfs:subClassOf> <owl:Restriction> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> <owl:onProperty rdf:resource="&ibs;wrotePhDThesis"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> <owl:onProperty rdf:resource="&ibs;wrotePhDThesis"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
  |
E17 (ISA17) | <rdf:RDF xml:base="http://www.example.org/ISA17#" 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/ISA17#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISA17#ItalianMan"> <rdfs:subClassOf> <owl:Class rdf:about="http://www.example.org/ISA17#ItalianMale"> <owl:intersectionOf rdf:parseType="Collection"> <owl:Class rdf:about="http://www.example.org/ISA17#Italian" /> <owl:Class rdf:about="http://www.example.org/ISA17#Male" /> </owl:intersectionOf> </owl:Class> </rdfs:subClassOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISA17#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;ItalianMan"> <rdfs:subClassOf rdf:resource="&ibs;ItalianMale"/> </owl:Class> <owl:Class rdf:about="&ibs;ItalianMale"> <owl:intersectionOf rdf:parseType="Collection"> <rdf:Description rdf:about="&ibs;Italian"/> <rdf:Description rdf:about="&ibs;Male"/> </owl:intersectionOf> </owl:Class> <owl:Class rdf:about="&ibs;Italian"/> <owl:Class rdf:about="&ibs;Male"/> </rdf:RDF> |
  |
E18 (ISB01) | <rdf:RDF xml:base="http://www.example.org/ISB01#" 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/ISB01#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISB01#Italian" /> <owl:Class rdf:about="http://www.example.org/ISB01#Italiano"> <owl:equivalentClass rdf:resource="http://www.example.org/ISB01#Italian" /> </owl:Class> <owl:Class rdf:about="http://www.example.org/ISB01#Italienne"> <owl:equivalentClass rdf:resource="http://www.example.org/ISB01#Italian" /> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Italian"/> <owl:Class rdf:about="&ibs;Italiano"> <owl:equivalentClass rdf:resource="&ibs;Italian"/> </owl:Class> <owl:Class rdf:about="&ibs;Italienne"> <owl:equivalentClass rdf:resource="&ibs;Italian"/> </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/ISB01#" xmlns="http://www.example.org/ISB01#" 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="Italian"> <rdfs:label>Italian</rdfs:label> </owl:Class> <owl:Class rdf:ID="Italiano"> <rdfs:label>Italiano</rdfs:label> </owl:Class> <owl:Class rdf:ID="Italienne"> <rdfs:label>Italienne</rdfs:label> </owl:Class> </rdf:RDF> |
E19 (ISB02) | <rdf:RDF xml:base="http://www.example.org/ISB02#" 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/ISB02#"> <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISB02#hasCar"/> <owl:Class rdf:about="http://www.example.org/ISB02#Driver"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB02#hasCar"/> <owl:someValuesFrom> <owl:Class rdf:about="http://www.example.org/ISB02#Car" /> </owl:someValuesFrom> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;hasCar"/> <owl:Class rdf:about="&ibs;Driver"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="&ibs;hasCar"/> <owl:someValuesFrom rdf:resource="&ibs;Car"/> </owl:Restriction> </owl:equivalentClass> </owl:Class> <owl:Class rdf:about="&ibs;Car"/> </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/ISB02#" xmlns="http://www.example.org/ISB02#" 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="ANONYMOUS_CONCEPT_0"> <rdfs:label>ANONYMOUS_CONCEPT_0</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasCar"/> <owl:allValuesFrom rdf:resource="#Car"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Car"> <rdfs:label>Car</rdfs:label> </owl:Class> <owl:Class rdf:ID="Driver"> <rdfs:label>Driver</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="hasCar_1"> <rdfs:label>hasCar</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasCar"> <rdfs:label>hasCar</rdfs:label> <rdfs:domain rdf:resource="#ANONYMOUS_CONCEPT_0"/> <rdfs:range rdf:resource="#Car"/> </owl:ObjectProperty> </rdf:RDF> |
E20 (ISB03) | <rdf:RDF xml:base="http://www.example.org/ISB03#" 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/ISB03#"> <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISB03#wasBorn"/> <owl:Class rdf:about="http://www.example.org/ISB03#Italian"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB03#wasBorn"/> <owl:allValuesFrom> <owl:Class rdf:about="http://www.example.org/ISB03#Italy"/> </owl:allValuesFrom> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;wasBorn"/> <owl:Class rdf:about="&ibs;Italian"> <owl:equivalentClass> <owl:Restriction> <owl:allValuesFrom rdf:resource="&ibs;Italy"/> <owl:onProperty rdf:resource="&ibs;wasBorn"/> </owl:Restriction> </owl:equivalentClass> </owl:Class> <owl:Class rdf:about="&ibs;Italy"/> </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/ISB03#" xmlns="http://www.example.org/ISB03#" 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="ANONYMOUS_CONCEPT_0"> <rdfs:label>ANONYMOUS_CONCEPT_0</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#wasBorn"/> <owl:allValuesFrom rdf:resource="#Italy"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Italian"> <rdfs:label>Italian</rdfs:label> </owl:Class> <owl:Class rdf:ID="Italy"> <rdfs:label>Italy</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="wasBorn_1"> <rdfs:label>wasBorn</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="wasBorn"> <rdfs:label>wasBorn</rdfs:label> <rdfs:domain rdf:resource="#ANONYMOUS_CONCEPT_0"/> <rdfs:range rdf:resource="#Italy"/> </owl:ObjectProperty> </rdf:RDF> |
E21 (ISB04) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISB04#" 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/ISB04#"> <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISB04#worksIn" /> <owl:Class rdf:about="http://www.example.org/ISB04#Employee"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB04#worksIn"/> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:minCardinality> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB04#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;worksIn"/> <owl:Class rdf:about="&ibs;Employee"> <owl:equivalentClass> <owl:Restriction> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:minCardinality> <owl:onProperty rdf:resource="&ibs;worksIn"/> </owl:Restriction> </owl:equivalentClass> </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/ISB04#" xmlns="http://www.example.org/ISB04#" 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="ANONYMOUS_CONCEPT_0"> <rdfs:label>ANONYMOUS_CONCEPT_0</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Employee"> <rdfs:label>Employee</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="worksIn"> <rdfs:label>worksIn</rdfs:label> <rdfs:domain> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="#ANONYMOUS_CONCEPT_0"/> </owl:unionOf> </owl:Class> </rdfs:domain> <rdfs:range> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/> </owl:unionOf> </owl:Class> </rdfs:range> </owl:ObjectProperty> </rdf:RDF> |
E22 (ISB05) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISB05#" 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/ISB05#"> <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISB05#hasAffiliation" /> <owl:Class rdf:about="http://www.example.org/ISB05#Researcher"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB05#hasAffiliation"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB05#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;hasAffiliation"/> <owl:Class rdf:about="&ibs;Researcher"> <owl:equivalentClass> <owl:Restriction> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> <owl:onProperty rdf:resource="&ibs;hasAffiliation"/> </owl:Restriction> </owl:equivalentClass> </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/ISB05#" xmlns="http://www.example.org/ISB05#" 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="ANONYMOUS_CONCEPT_0"> <rdfs:label>ANONYMOUS_CONCEPT_0</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">11</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Researcher"> <rdfs:label>Researcher</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="hasAffiliation"> <rdfs:label>hasAffiliation</rdfs:label> <rdfs:domain> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="#ANONYMOUS_CONCEPT_0"/> </owl:unionOf> </owl:Class> </rdfs:domain> <rdfs:range> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/> </owl:unionOf> </owl:Class> </rdfs:range> </owl:ObjectProperty> </rdf:RDF> |
E23 (ISB06) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISB06#" 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#" xmlns:ibs ="http://www.example.org/ISB06#" > <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISB06#hasMother" /> <owl:Class rdf:about="http://www.example.org/ISB06#Man"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB06#hasMother" /> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:cardinality> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB06#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;hasMother"/> <owl:Class rdf:about="&ibs;Man"> <owl:equivalentClass> <owl:Restriction> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:cardinality> <owl:onProperty rdf:resource="&ibs;hasMother"/> </owl:Restriction> </owl:equivalentClass> </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/ISB06#" xmlns="http://www.example.org/ISB06#" 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="ANONYMOUS_CONCEPT_0"> <rdfs:label>ANONYMOUS_CONCEPT_0</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">11</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="hasMother"> <rdfs:label>hasMother</rdfs:label> <rdfs:domain> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="#ANONYMOUS_CONCEPT_0"/> </owl:unionOf> </owl:Class> </rdfs:domain> <rdfs:range> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/> </owl:unionOf> </owl:Class> </rdfs:range> </owl:ObjectProperty> </rdf:RDF> |
E24 (ISB07) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISB07#" 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#" xmlns:ibs ="http://www.example.org/ISB07#" > <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISB07#hasAffiliation" /> <owl:Class rdf:about="http://www.example.org/ISB07#Researcher"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB07#hasAffiliation" /> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> </owl:Restriction> </owl:equivalentClass> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB07#hasAffiliation" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB07#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;hasAffiliation"/> <owl:Class rdf:about="&ibs;Researcher"> <owl:equivalentClass> <owl:Restriction> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> <owl:onProperty rdf:resource="&ibs;hasAffiliation"/> </owl:Restriction> </owl:equivalentClass> <owl:equivalentClass> <owl:Restriction> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> <owl:onProperty rdf:resource="&ibs;hasAffiliation"/> </owl:Restriction> </owl:equivalentClass> </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/ISB07#" xmlns="http://www.example.org/ISB07#" 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="ANONYMOUS_CONCEPT_0"> <rdfs:label>ANONYMOUS_CONCEPT_0</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="ANONYMOUS_CONCEPT_1"> <rdfs:label>ANONYMOUS_CONCEPT_1</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">11</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Researcher"> <rdfs:label>Researcher</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="hasAffiliation"> <rdfs:label>hasAffiliation</rdfs:label> <rdfs:domain> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="#ANONYMOUS_CONCEPT_0"/> <owl:Class rdf:about="#ANONYMOUS_CONCEPT_1"/> </owl:unionOf> </owl:Class> </rdfs:domain> <rdfs:range> <owl:Class> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/> </owl:unionOf> </owl:Class> </rdfs:range> </owl:ObjectProperty> </rdf:RDF> |
E25 (ISB08) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISB08#" 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#" xmlns:ibs ="http://www.example.org/ISB08#" > <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISB08#hasName" /> <owl:Class rdf:about="http://www.example.org/ISB08#Person"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB08#hasName" /> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB08#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"/> <owl:Class rdf:about="&ibs;Person"> <owl:equivalentClass> <owl:Restriction> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> <owl:onProperty rdf:resource="&ibs;hasName"/> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
  |
E26 (ISB09) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISB09#" 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#" xmlns:ibs ="http://www.example.org/ISB09#" > <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISB09#wrotePhDThesis" /> <owl:Class rdf:about="http://www.example.org/ISB09#Researcher"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB09#wrotePhDThesis" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB09#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;wrotePhDThesis"/> <owl:Class rdf:about="&ibs;Researcher"> <owl:equivalentClass> <owl:Restriction> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> <owl:onProperty rdf:resource="&ibs;wrotePhDThesis"/> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
  |
E27 (ISB10) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISB10#" 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#" xmlns:ibs ="http://www.example.org/ISB10#" > <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISB10#hasSSN" /> <owl:Class rdf:about="http://www.example.org/ISB10#Man"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB10#hasSSN" /> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:cardinality> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB10#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;hasSSN"/> <owl:Class rdf:about="&ibs;Man"> <owl:equivalentClass> <owl:Restriction> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:cardinality> <owl:onProperty rdf:resource="&ibs;hasSSN"/> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
  |
E28 (ISB11) | <!DOCTYPE rdf:RDF [ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > ]> <rdf:RDF xml:base="http://www.example.org/ISB11#" 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#" xmlns:ibs ="http://www.example.org/ISB11#" > <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISB11#wrotePhDThesis" /> <owl:Class rdf:about="http://www.example.org/ISB11#Researcher"> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB11#wrotePhDThesis" /> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> </owl:Restriction> </owl:equivalentClass> <owl:equivalentClass> <owl:Restriction> <owl:onProperty rdf:resource="http://www.example.org/ISB11#wrotePhDThesis" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB11#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:xsd="&xsd;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;wrotePhDThesis"/> <owl:Class rdf:about="&ibs;Researcher"> <owl:equivalentClass> <owl:Restriction> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">0 </owl:minCardinality> <owl:onProperty rdf:resource="&ibs;wrotePhDThesis"/> </owl:Restriction> </owl:equivalentClass> <owl:equivalentClass> <owl:Restriction> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1 </owl:maxCardinality> <owl:onProperty rdf:resource="&ibs;wrotePhDThesis"/> </owl:Restriction> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
  |
E29 (ISB12) | <rdf:RDF xml:base="http://www.example.org/ISB12#" 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/ISB12#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISB12#ItalianMan"> <owl:equivalentClass> <owl:Class> <owl:intersectionOf rdf:parseType="Collection"> <owl:Class rdf:about="http://www.example.org/ISB12#Italian" /> <owl:Class rdf:about="http://www.example.org/ISB12#Male" /> </owl:intersectionOf> </owl:Class> </owl:equivalentClass> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISB12#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;ItalianMan"> <owl:equivalentClass> <owl:Class> <owl:intersectionOf rdf:parseType="Collection"> <rdf:Description rdf:about="&ibs;Italian"/> <rdf:Description rdf:about="&ibs;Male"/> </owl:intersectionOf> </owl:Class> </owl:equivalentClass> </owl:Class> <owl:Class rdf:about="&ibs;Italian"/> <owl:Class rdf:about="&ibs;Male"/> </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/ISB12#" xmlns="http://www.example.org/ISB12#" 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="Italian"> <rdfs:label>Italian</rdfs:label> </owl:Class> <owl:Class rdf:ID="ItalianMan"> <rdfs:label>ItalianMan</rdfs:label> </owl:Class> <owl:Class rdf:ID="Male"> <rdfs:label>Male</rdfs:label> </owl:Class> <owl:Class rdf:ID="OWL_ANONYM_CLASS_0"> <rdfs:label>OWL_ANONYM_CLASS_0</rdfs:label> </owl:Class> </rdf:RDF> |
E30 (ISC01) | <rdf:RDF xml:base="http://www.example.org/ISC01#" 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/ISC01#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISC01#ItalianMan"> <owl:intersectionOf rdf:parseType="Collection"> <owl:Class rdf:about="http://www.example.org/ISC01#Italian" /> <owl:Class rdf:about="http://www.example.org/ISC01#Male" /> </owl:intersectionOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISC01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;ItalianMan"> <owl:intersectionOf rdf:parseType="Collection"> <rdf:Description rdf:about="&ibs;Italian"/> <rdf:Description rdf:about="&ibs;Male"/> </owl:intersectionOf> </owl:Class> <owl:Class rdf:about="&ibs;Italian"/> <owl:Class rdf:about="&ibs;Male"/> </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/ISC01#" xmlns="http://www.example.org/ISC01#" 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="Italian"> <rdfs:label>Italian</rdfs:label> </owl:Class> <owl:Class rdf:ID="ItalianMan"> <rdfs:label>ItalianMan</rdfs:label> </owl:Class> <owl:Class rdf:ID="Male"> <rdfs:label>Male</rdfs:label> </owl:Class> </rdf:RDF> |
E31 (ISC02) | <rdf:RDF xml:base="http://www.example.org/ISC02#" 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/ISC02#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISC02#ItalianMan"> <owl:intersectionOf rdf:parseType="Collection"> <owl:Class rdf:about="http://www.example.org/ISC02#Italian" /> <owl:Class rdf:about="http://www.example.org/ISC02#Male" /> <owl:Class rdf:about="http://www.example.org/ISC02#Person" /> </owl:intersectionOf> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISC02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;ItalianMan"> <owl:intersectionOf rdf:parseType="Collection"> <rdf:Description rdf:about="&ibs;Italian"/> <rdf:Description rdf:about="&ibs;Male"/> <rdf:Description rdf:about="&ibs;Person"/> </owl:intersectionOf> </owl:Class> <owl:Class rdf:about="&ibs;Italian"/> <owl:Class rdf:about="&ibs;Male"/> <owl:Class rdf:about="&ibs;Person"/> </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/ISC02#" xmlns="http://www.example.org/ISC02#" 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="Italian"> <rdfs:label>Italian</rdfs:label> </owl:Class> <owl:Class rdf:ID="ItalianMan"> <rdfs:label>ItalianMan</rdfs:label> </owl:Class> <owl:Class rdf:ID="Male"> <rdfs:label>Male</rdfs:label> </owl:Class> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> </owl:Class> </rdf:RDF> |
E32 (ISD01) | <rdf:RDF xml:base="http://www.example.org/ISD01#" 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/ISD01#"> <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISD01#hasChild" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISD01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"/> </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/ISD01#" xmlns="http://www.example.org/ISD01#" 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:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> </rdf:RDF> |
E33 (ISD02) | <rdf:RDF xml:base="http://www.example.org/ISD02#" 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/ISD02#"> <owl:Ontology rdf:about="#" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISD02#isAncestorOf" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISD02#isFatherOf"> <rdfs:subPropertyOf rdf:resource="http://www.example.org/ISD02#isGrandFatherOf" /> </owl:ObjectProperty> <owl:ObjectProperty rdf:about="http://www.example.org/ISD02#isGrandFatherOf"> <rdfs:subPropertyOf rdf:resource="http://www.example.org/ISD02#isAncestorOf" /> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISD02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:ObjectProperty rdf:about="&ibs;isAncestorOf"/> <owl:ObjectProperty rdf:about="&ibs;isFatherOf"> <rdfs:subPropertyOf rdf:resource="&ibs;isGrandFatherOf"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:about="&ibs;isGrandFatherOf"> <rdfs:subPropertyOf rdf:resource="&ibs;isAncestorOf"/> </owl:ObjectProperty> </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/ISD02#" xmlns="http://www.example.org/ISD02#" 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:ObjectProperty rdf:ID="isGrandFatherOf"> <rdfs:label>isGrandFatherOf</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="isFatherOf"> <rdfs:label>isFatherOf</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="isAncestorOf"> <rdfs:label>isAncestorOf</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> </rdf:RDF> |
E34 (ISD03) | <rdf:RDF xml:base="http://www.example.org/ISD03#" 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/ISD03#"> <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISD03#hasAge" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISD03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;hasAge"/> </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/ISD03#" xmlns="http://www.example.org/ISD03#" 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=""/> </rdf:RDF> |
E35 (ISD04) | <rdf:RDF xml:base="http://www.example.org/ISD04#" 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/ISD04#"> <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISD04#isReal" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISD04#isRational" > <rdfs:subPropertyOf rdf:resource="http://www.example.org/ISD04#isReal" /> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:about="http://www.example.org/ISD04#isInteger" > <rdfs:subPropertyOf rdf:resource="http://www.example.org/ISD04#isRational" /> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISD04#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;isReal"/> <owl:DatatypeProperty rdf:about="&ibs;isRational"> <rdfs:subPropertyOf rdf:resource="&ibs;isReal"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:about="&ibs;isInteger"> <rdfs:subPropertyOf rdf:resource="&ibs;isRational"/> </owl:DatatypeProperty> </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/ISD04#" xmlns="http://www.example.org/ISD04#" 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=""/> </rdf:RDF> |
E36 (ISE01) | <rdf:RDF xml:base="http://www.example.org/ISE01#" 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/ISE01#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISE01#Person" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISE01#hasChild"> <rdfs:domain rdf:resource="http://www.example.org/ISE01#Person"/> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Person"/> </owl:ObjectProperty> </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/ISE01#" xmlns="http://www.example.org/ISE01#" 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> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> </rdf:RDF> |
E37 (ISE02) | <rdf:RDF xml:base="http://www.example.org/ISE02#" 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/ISE02#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISE02#Person" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISE02#hasChild"> <rdfs:range rdf:resource="http://www.example.org/ISE02#Person"/> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> </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/ISE02#" xmlns="http://www.example.org/ISE02#" 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> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> </rdf:RDF> |
E38 (ISE03) | <rdf:RDF xml:base="http://www.example.org/ISE03#" 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/ISE03#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISE03#Person" /> <owl:Class rdf:about="http://www.example.org/ISE03#Father" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISE03#hasChild"> <rdfs:domain rdf:resource="http://www.example.org/ISE03#Father"/> <rdfs:range rdf:resource="http://www.example.org/ISE03#Person"/> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:Class rdf:about="&ibs;Father"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Father"/> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> </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/ISE03#" xmlns="http://www.example.org/ISE03#" 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="Father"> <rdfs:label>Father</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasChild"/> <owl:allValuesFrom rdf:resource="#Person"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#Father"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> </rdf:RDF> |
E39 (ISE04) | <rdf:RDF xml:base="http://www.example.org/ISE04#" 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/ISE04#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISE04#Person" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISE04#hasChild"> <rdfs:domain rdf:resource="http://www.example.org/ISE04#Person"/> <rdfs:range rdf:resource="http://www.example.org/ISE04#Person"/> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE04#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> </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/ISE04#" xmlns="http://www.example.org/ISE04#" 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> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasChild"/> <owl:allValuesFrom rdf:resource="#Person"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> </rdf:RDF> |
E40 (ISE05) | <rdf:RDF xml:base="http://www.example.org/ISE05#" 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/ISE05#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISE05#Person" /> <owl:Class rdf:about="http://www.example.org/ISE05#Woman" /> <owl:Class rdf:about="http://www.example.org/ISE05#Mother" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISE05#hasChild"> <rdfs:domain rdf:resource="http://www.example.org/ISE05#Woman"/> <rdfs:domain rdf:resource="http://www.example.org/ISE05#Mother"/> <rdfs:domain rdf:resource="http://www.example.org/ISE05#Person"/> <rdfs:range rdf:resource="http://www.example.org/ISE05#Person" /> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE05#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:Class rdf:about="&ibs;Woman"/> <owl:Class rdf:about="&ibs;Mother"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Mother"/> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:domain rdf:resource="&ibs;Woman"/> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> </rdf:RDF> |
  |
E41 (ISE06) | <rdf:RDF xml:base="http://www.example.org/ISE06#" 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/ISE06#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISE06#Person" /> <owl:Class rdf:about="http://www.example.org/ISE06#Human" /> <owl:Class rdf:about="http://www.example.org/ISE06#Child" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISE06#hasChild"> <rdfs:domain rdf:resource="http://www.example.org/ISE06#Person"/> <rdfs:range rdf:resource="http://www.example.org/ISE06#Person"/> <rdfs:range rdf:resource="http://www.example.org/ISE06#Human"/> <rdfs:range rdf:resource="http://www.example.org/ISE06#Child"/> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE06#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:Class rdf:about="&ibs;Human"/> <owl:Class rdf:about="&ibs;Child"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:range rdf:resource="&ibs;Child"/> <rdfs:range rdf:resource="&ibs;Human"/> <rdfs:range rdf:resource="&ibs;Person"/> <rdfs:domain rdf:resource="&ibs;Person"/> </owl:ObjectProperty> </rdf:RDF> |
  |
E42 (ISE07) | <rdf:RDF xml:base="http://www.example.org/ISE07#" 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/ISE07#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISE07#Person" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISE07#hasSSN"> <rdfs:domain rdf:resource="http://www.example.org/ISE07#Person"/> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE07#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:DatatypeProperty rdf:about="&ibs;hasSSN"> <rdfs:domain rdf:resource="&ibs;Person"/> </owl:DatatypeProperty> </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/ISE07#" xmlns="http://www.example.org/ISE07#" 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> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasSSN"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasSSN"> <rdfs:label>hasSSN</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> </rdf:RDF> |
E43 (ISE08) | <rdf:RDF xml:base="http://www.example.org/ISE08#" 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/ISE08#"> <owl:Ontology rdf:about="#" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISE08#hasName"> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE08#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> </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/ISE08#" xmlns="http://www.example.org/ISE08#" 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=""/> </rdf:RDF> |
E44 (ISE09) | <rdf:RDF xml:base="http://www.example.org/ISE09#" 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/ISE09#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISE09#Person" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISE09#hasName"> <rdfs:domain rdf:resource="http://www.example.org/ISE09#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE09#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> </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/ISE09#" xmlns="http://www.example.org/ISE09#" 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> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> </rdf:RDF> |
E45 (ISE10) | <rdf:RDF xml:base="http://www.example.org/ISE10#" 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/ISE10#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISE10#Woman" /> <owl:Class rdf:about="http://www.example.org/ISE10#Mother" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISE10#hasChildNamed"> <rdfs:domain rdf:resource="http://www.example.org/ISE10#Woman"/> <rdfs:domain rdf:resource="http://www.example.org/ISE10#Mother"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal" /> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISE10#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Woman"/> <owl:Class rdf:about="&ibs;Mother"/> <owl:DatatypeProperty rdf:about="&ibs;hasChildNamed"> <rdfs:domain rdf:resource="&ibs;Mother"/> <rdfs:domain rdf:resource="&ibs;Woman"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> </rdf:RDF> |
  |
E46 (ISF01) | <rdf:RDF xml:base="http://www.example.org/ISF01#" 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/ISF01#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISF01#Person" /> <owl:Class rdf:about="http://www.example.org/ISF01#City" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISF01#livesIn" > <rdfs:domain rdf:resource="http://www.example.org/ISF01#Person" /> <rdfs:range rdf:resource="http://www.example.org/ISF01#City" /> </owl:ObjectProperty> <owl:ObjectProperty rdf:about="http://www.example.org/ISF01#isResidentIn" > <rdfs:domain rdf:resource="http://www.example.org/ISF01#Person" /> <rdfs:range rdf:resource="http://www.example.org/ISF01#City" /> <owl:equivalentProperty rdf:resource="http://www.example.org/ISF01#livesIn" /> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISF01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:Class rdf:about="&ibs;City"/> <owl:ObjectProperty rdf:about="&ibs;livesIn"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;City"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:about="&ibs;isResidentIn"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;City"/> <owl:equivalentProperty rdf:resource="&ibs;livesIn"/> </owl:ObjectProperty> </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/ISF01#" xmlns="http://www.example.org/ISF01#" 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="City"> <rdfs:label>City</rdfs:label> </owl:Class> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#isResidentIn"/> <owl:allValuesFrom rdf:resource="#City"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#livesIn"/> <owl:allValuesFrom rdf:resource="#City"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="livesIn"> <rdfs:label>livesIn</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#City"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="isResidentIn"> <rdfs:label>isResidentIn</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#City"/> </owl:ObjectProperty> </rdf:RDF> |
E47 (ISF02) | <rdf:RDF xml:base="http://www.example.org/ISF02#" 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/ISF02#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISF02#City" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISF02#hasName"> <rdfs:domain rdf:resource="http://www.example.org/ISF02#City" /> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal" /> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:about="http://www.example.org/ISF02#hasSpanishName"> <rdfs:domain rdf:resource="http://www.example.org/ISF02#City" /> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal" /> <owl:equivalentProperty rdf:resource="http://www.example.org/ISF02#hasName" /> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISF02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;City"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;City"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:about="&ibs;hasSpanishName"> <rdfs:domain rdf:resource="&ibs;City"/> <rdfs:range rdf:resource="&rdfs;Literal"/> <owl:equivalentProperty rdf:resource="&ibs;hasName"/> </owl:DatatypeProperty> </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/ISF02#" xmlns="http://www.example.org/ISF02#" 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="City"> <rdfs:label>City</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasSpanishName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#City"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="hasSpanishName"> <rdfs:label>hasSpanishName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#City"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> </rdf:RDF> |
E48 (ISF03) | <rdf:RDF xml:base="http://www.example.org/ISF03#" 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/ISF03#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISF03#Person" /> <owl:Class rdf:about="http://www.example.org/ISF03#Child" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISF03#hasChild" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISF03#hasParent"> <rdfs:domain rdf:resource="http://www.example.org/ISF03#Child" /> <rdfs:range rdf:resource="http://www.example.org/ISF03#Person" /> <owl:inverseOf rdf:resource="http://www.example.org/ISF03#hasChild" /> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISF03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:Class rdf:about="&ibs;Child"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"/> <owl:ObjectProperty rdf:about="&ibs;hasParent"> <rdfs:domain rdf:resource="&ibs;Child"/> <rdfs:range rdf:resource="&ibs;Person"/> <owl:inverseOf rdf:resource="&ibs;hasChild"/> </owl:ObjectProperty> </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/ISF03#" xmlns="http://www.example.org/ISF03#" 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="Child"> <rdfs:label>Child</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasParent"/> <owl:allValuesFrom rdf:resource="#Person"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="hasParent"> <rdfs:label>hasParent</rdfs:label> <rdfs:domain rdf:resource="#Child"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> <rdfs:range rdf:resource="#http_3A_2F_2Fwww.w3.org_2F2002_2F07_2Fowl_23Thing"/> </owl:ObjectProperty> </rdf:RDF> |
E49 (ISG01) | <rdf:RDF xml:base="http://www.example.org/ISG01#" 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/ISG01#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISG01#Person"/> <owl:ObjectProperty rdf:about="http://www.example.org/ISG01#hasFriend"> <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty" /> <rdfs:range rdf:resource="http://www.example.org/ISG01#Person" /> <rdfs:domain rdf:resource="http://www.example.org/ISG01#Person" /> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISG01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:ObjectProperty rdf:about="&ibs;hasFriend"> <rdf:type rdf:resource="&owl;TransitiveProperty"/> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> </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/ISG01#" xmlns="http://www.example.org/ISG01#" 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> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasFriend"/> <owl:allValuesFrom rdf:resource="#Person"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasFriend"> <rdfs:label>hasFriend</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> </rdf:RDF> |
E50 (ISG02) | <rdf:RDF xml:base="http://www.example.org/ISG02#" 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/ISG02#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISG02#Person"/> <owl:ObjectProperty rdf:about="http://www.example.org/ISG02#hasFriend"> <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty" /> <rdfs:range rdf:resource="http://www.example.org/ISG02#Person" /> <rdfs:domain rdf:resource="http://www.example.org/ISG02#Person" /> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISG02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:ObjectProperty rdf:about="&ibs;hasFriend"> <rdf:type rdf:resource="&owl;SymmetricProperty"/> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> </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/ISG02#" xmlns="http://www.example.org/ISG02#" 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> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasFriend"/> <owl:allValuesFrom rdf:resource="#Person"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasFriend"> <rdfs:label>hasFriend</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> </rdf:RDF> |
E51 (ISG03) | <rdf:RDF xml:base="http://www.example.org/ISG03#" 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/ISG03#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISG03#Woman" /> <owl:Class rdf:about="http://www.example.org/ISG03#Man" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISG03#hasHusband" > <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty" /> <rdfs:domain rdf:resource="http://www.example.org/ISG03#Woman" /> <rdfs:range rdf:resource="http://www.example.org/ISG03#Man" /> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISG03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Woman"/> <owl:Class rdf:about="&ibs;Man"/> <owl:FunctionalProperty rdf:about="&ibs;hasHusband"> <rdf:type rdf:resource="&owl;ObjectProperty"/> <rdfs:domain rdf:resource="&ibs;Woman"/> <rdfs:range rdf:resource="&ibs;Man"/> </owl:FunctionalProperty> </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/ISG03#" xmlns="http://www.example.org/ISG03#" 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="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:Class rdf:ID="Woman"> <rdfs:label>Woman</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasHusband"/> <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="#hasHusband"/> <owl:allValuesFrom rdf:resource="#Man"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasHusband"> <rdfs:label>hasHusband</rdfs:label> <rdfs:domain rdf:resource="#Woman"/> <rdfs:range rdf:resource="#Man"/> </owl:ObjectProperty> </rdf:RDF> |
E52 (ISG04) | <rdf:RDF xml:base="http://www.example.org/ISG04#" 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/ISG04#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISG04#Person" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISG04#hasAge" > <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty" /> <rdfs:domain rdf:resource="http://www.example.org/ISG04#Person" /> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal" /> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISG04#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:DatatypeProperty rdf:about="&ibs;hasAge"> <rdf:type rdf:resource="&owl;FunctionalProperty"/> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> </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/ISG04#" xmlns="http://www.example.org/ISG04#" 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> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasAge"/> <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="#hasAge"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasAge"> <rdfs:label>hasAge</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> </rdf:RDF> |
E53 (ISG05) | <rdf:RDF xml:base="http://www.example.org/ISG05#" 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/ISG05#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISG05#Professor"/> <owl:Class rdf:about="http://www.example.org/ISG05#Student"/> <owl:ObjectProperty rdf:about="http://www.example.org/ISG05#hasTutor" > <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty" /> <rdfs:domain rdf:resource="http://www.example.org/ISG05#Professor" /> <rdfs:range rdf:resource="http://www.example.org/ISG05#Student" /> </owl:ObjectProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISG05#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Professor"/> <owl:Class rdf:about="&ibs;Student"/> <owl:InverseFunctionalProperty rdf:about="&ibs;hasTutor"> <rdf:type rdf:resource="&owl;ObjectProperty"/> <rdfs:domain rdf:resource="&ibs;Professor"/> <rdfs:range rdf:resource="&ibs;Student"/> </owl:InverseFunctionalProperty> </rdf:RDF> |
  |
E54 (ISH01) | <rdf:RDF xml:base="http://www.example.org/ISH01#" 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:ibs="http://www.example.org/ISH01#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISH01#Person" /> <ibs:Person rdf:about="http://www.example.org/ISH01#Peter" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISH01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <ibs:Person rdf:about="&ibs;Peter"/> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISH01#" xmlns="http://www.example.org/ISH01#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> </owl:Class> <rdf:Description rdf:about="Peter"> <rdf:type rdf:resource="http://www.example.org/ISH01#Person"/> <rdfs:label>Peter</rdfs:label> </rdf:Description> </rdf:RDF> |
E55 (ISH02) | <rdf:RDF xml:base="http://www.example.org/ISH02#" 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:ibs="http://www.example.org/ISH02#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISH02#Person" /> <owl:Class rdf:about="http://www.example.org/ISH02#Father" /> <owl:Class rdf:about="http://www.example.org/ISH02#Student" /> <ibs:Person rdf:about="http://www.example.org/ISH02#Peter" /> <ibs:Father rdf:about="http://www.example.org/ISH02#Peter" /> <ibs:Student rdf:about="http://www.example.org/ISH02#Peter" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISH02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:Class rdf:about="&ibs;Father"/> <owl:Class rdf:about="&ibs;Student"/> <ibs:Father rdf:about="&ibs;Peter"> <rdf:type rdf:resource="&ibs;Person"/> <rdf:type rdf:resource="&ibs;Student"/> </ibs:Father> </rdf:RDF> |
  |
E56 (ISH03) | <rdf:RDF xml:base="http://www.example.org/ISH03#" 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:ibs="http://www.example.org/ISH03#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISH03#Person" /> <ibs:Person rdf:about="http://www.example.org/ISH03#Peter" /> <ibs:Person rdf:about="http://www.example.org/ISH03#Paul" /> <ibs:Person rdf:about="http://www.example.org/ISH03#Mary" /> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISH03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <ibs:Person rdf:about="&ibs;Peter"/> <ibs:Person rdf:about="&ibs;Paul"/> <ibs:Person rdf:about="&ibs;Mary"/> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISH03#" xmlns="http://www.example.org/ISH03#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> </owl:Class> <rdf:Description rdf:about="Mary"> <rdf:type rdf:resource="http://www.example.org/ISH03#Person"/> <rdfs:label>Mary</rdfs:label> </rdf:Description> <rdf:Description rdf:about="Paul"> <rdf:type rdf:resource="http://www.example.org/ISH03#Person"/> <rdfs:label>Paul</rdfs:label> </rdf:Description> <rdf:Description rdf:about="Peter"> <rdf:type rdf:resource="http://www.example.org/ISH03#Person"/> <rdfs:label>Peter</rdfs:label> </rdf:Description> </rdf:RDF> |
E57 (ISI01) | <rdf:RDF xml:base="http://www.example.org/ISI01#" 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/ISI01#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISI01#Person" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISI01#hasChild"> <rdfs:domain rdf:resource="http://www.example.org/ISI01#Person"/> <rdfs:range rdf:resource="http://www.example.org/ISI01#Person"/> </owl:ObjectProperty> <ibs:Person rdf:about="http://www.example.org/ISI01#Paul" /> <ibs:Person rdf:about="http://www.example.org/ISI01#Mary" > <ibs:hasChild rdf:resource="http://www.example.org/ISI01#Paul"/> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISI01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> <ibs:Person rdf:about="&ibs;Paul"/> <ibs:Person rdf:about="&ibs;Mary"> <ibs:hasChild rdf:resource="&ibs;Paul"/> </ibs:Person> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISI01#" xmlns="http://www.example.org/ISI01#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasChild"/> <owl:allValuesFrom rdf:resource="#Person"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> <rdf:Description rdf:about="Mary"> <rdf:type rdf:resource="http://www.example.org/ISI01#Person"/> <rdfs:label>Mary</rdfs:label> </rdf:Description> <rdf:Description rdf:about="Paul"> <rdf:type rdf:resource="http://www.example.org/ISI01#Person"/> <rdfs:label>Paul</rdfs:label> </rdf:Description> </rdf:RDF> |
E58 (ISI02) | <rdf:RDF xml:base="http://www.example.org/ISI02#" 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/ISI02#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISI02#Person" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISI02#knows"> <rdfs:domain rdf:resource="http://www.example.org/ISI02#Person"/> <rdfs:range rdf:resource="http://www.example.org/ISI02#Person"/> </owl:ObjectProperty> <ibs:Person rdf:about="http://www.example.org/ISI02#Peter" > <ibs:knows rdf:resource="http://www.example.org/ISI02#Peter"/> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISI02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:ObjectProperty rdf:about="&ibs;knows"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> <ibs:Person rdf:about="&ibs;Peter"> <ibs:knows rdf:resource="&ibs;Peter"/> </ibs:Person> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISI02#" xmlns="http://www.example.org/ISI02#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#knows"/> <owl:allValuesFrom rdf:resource="#Person"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="knows"> <rdfs:label>knows</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> <rdf:Description rdf:about="Peter"> <rdf:type rdf:resource="http://www.example.org/ISI02#Person"/> <rdfs:label>Peter</rdfs:label> </rdf:Description> </rdf:RDF> |
E59 (ISI03) | <rdf:RDF xml:base="http://www.example.org/ISI03#" 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/ISI03#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISI03#Mother" /> <owl:Class rdf:about="http://www.example.org/ISI03#Child" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISI03#hasChild"> <rdfs:domain rdf:resource="http://www.example.org/ISI03#Mother"/> <rdfs:range rdf:resource="http://www.example.org/ISI03#Child"/> </owl:ObjectProperty> <ibs:Child rdf:about="http://www.example.org/ISI03#Paul" /> <ibs:Mother rdf:about="http://www.example.org/ISI03#Mary" > <ibs:hasChild rdf:resource="http://www.example.org/ISI03#Paul"/> </ibs:Mother> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISI03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Mother"/> <owl:Class rdf:about="&ibs;Child"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Mother"/> <rdfs:range rdf:resource="&ibs;Child"/> </owl:ObjectProperty> <ibs:Child rdf:about="&ibs;Paul"/> <ibs:Mother rdf:about="&ibs;Mary"> <ibs:hasChild rdf:resource="&ibs;Paul"/> </ibs:Mother> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISI03#" xmlns="http://www.example.org/ISI03#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Child"> <rdfs:label>Child</rdfs:label> </owl:Class> <owl:Class rdf:ID="Mother"> <rdfs:label>Mother</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasChild"/> <owl:allValuesFrom rdf:resource="#Child"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#Mother"/> <rdfs:range rdf:resource="#Child"/> </owl:ObjectProperty> <rdf:Description rdf:about="Mary"> <rdf:type rdf:resource="http://www.example.org/ISI03#Mother"/> <rdfs:label>Mary</rdfs:label> </rdf:Description> <rdf:Description rdf:about="Paul"> <rdf:type rdf:resource="http://www.example.org/ISI03#Child"/> <rdfs:label>Paul</rdfs:label> </rdf:Description> </rdf:RDF> |
E60 (ISI04) | <rdf:RDF xml:base="http://www.example.org/ISI04#" 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/ISI04#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISI04#Person" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISI04#hasName"> <rdfs:domain rdf:resource="http://www.example.org/ISI04#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="http://www.example.org/ISI04#MarySmith" > <ibs:hasName>Mary</ibs:hasName> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISI04#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="&ibs;MarySmith" ibs:hasName="Mary"/> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISI04#" xmlns="http://www.example.org/ISI04#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <rdf:Description rdf:about="MarySmith"> <rdf:type rdf:resource="http://www.example.org/ISI04#Person"/> <rdfs:label>MarySmith</rdfs:label> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mary</hasName> </rdf:Description> </rdf:RDF> |
E61 (ISI05) | <rdf:RDF xml:base="http://www.example.org/ISI05#" 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/ISI05#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISI05#Person" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISI05#hasName"> <rdfs:domain rdf:resource="http://www.example.org/ISI05#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="http://www.example.org/ISI05#MaryAnn" > <ibs:hasName>Mary</ibs:hasName> <ibs:hasName>Ann</ibs:hasName> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISI05#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="&ibs;MaryAnn"> <ibs:hasName>Ann</ibs:hasName> <ibs:hasName>Mary</ibs:hasName> </ibs:Person> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISI05#" xmlns="http://www.example.org/ISI05#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <rdf:Description rdf:about="MaryAnn"> <rdf:type rdf:resource="http://www.example.org/ISI05#Person"/> <rdfs:label>MaryAnn</rdfs:label> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mary</hasName> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ann</hasName> </rdf:Description> </rdf:RDF> |
E62 (ISJ01) | <rdf:RDF xml:base="http://www.example.org/ISJ01#" 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:ibs="http://www.example.org/ISJ01#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISJ01#Person" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISJ01#hasChild"> <rdfs:domain rdf:resource="http://www.example.org/ISJ01#Person"/> <rdfs:range rdf:resource="http://www.example.org/ISJ01#Person"/> </owl:ObjectProperty> <ibs:Person rdf:about="http://www.example.org/ISJ01#John" /> <ibs:Person> <ibs:hasChild rdf:resource="http://www.example.org/ISJ01#John" /> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISJ01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> <ibs:Person rdf:about="&ibs;John"/> <ibs:Person> <ibs:hasChild rdf:resource="&ibs;John"/> </ibs:Person> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISJ01#" xmlns="http://www.example.org/ISJ01#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasChild"/> <owl:allValuesFrom rdf:resource="#Person"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> <rdf:Description rdf:about="John"> <rdf:type rdf:resource="http://www.example.org/ISJ01#Person"/> <rdfs:label>John</rdfs:label> </rdf:Description> <rdf:Description rdf:about="OWL_INDIVIDUAL_0"> <rdf:type rdf:resource="http://www.example.org/ISJ01#Person"/> <rdfs:label>OWL_INDIVIDUAL_0</rdfs:label> </rdf:Description> </rdf:RDF> |
E63 (ISJ02) | <rdf:RDF xml:base="http://www.example.org/ISJ02#" 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:ibs="http://www.example.org/ISJ02#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISJ02#Parent" /> <owl:Class rdf:about="http://www.example.org/ISJ02#Person" /> <owl:ObjectProperty rdf:about="http://www.example.org/ISJ02#hasChild"> <rdfs:domain rdf:resource="http://www.example.org/ISJ02#Parent"/> <rdfs:range rdf:resource="http://www.example.org/ISJ02#Person"/> </owl:ObjectProperty> <ibs:Person rdf:about="http://www.example.org/ISJ02#John" /> <ibs:Parent> <ibs:hasChild rdf:resource="http://www.example.org/ISJ02#John" /> </ibs:Parent> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISJ02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Parent"/> <owl:Class rdf:about="&ibs;Person"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Parent"/> <rdfs:range rdf:resource="&ibs;Person"/> </owl:ObjectProperty> <ibs:Person rdf:about="&ibs;John"/> <ibs:Parent> <ibs:hasChild rdf:resource="&ibs;John"/> </ibs:Parent> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISJ02#" xmlns="http://www.example.org/ISJ02#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Parent"> <rdfs:label>Parent</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasChild"/> <owl:allValuesFrom rdf:resource="#Person"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#Parent"/> <rdfs:range rdf:resource="#Person"/> </owl:ObjectProperty> <rdf:Description rdf:about="John"> <rdf:type rdf:resource="http://www.example.org/ISJ02#Person"/> <rdfs:label>John</rdfs:label> </rdf:Description> <rdf:Description rdf:about="OWL_INDIVIDUAL_0"> <rdf:type rdf:resource="http://www.example.org/ISJ02#Parent"/> <rdfs:label>OWL_INDIVIDUAL_0</rdfs:label> </rdf:Description> </rdf:RDF> |
E64 (ISJ03) | <rdf:RDF xml:base="http://www.example.org/ISJ03#" 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:ibs="http://www.example.org/ISJ03#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISJ03#Person" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISJ03#hasName"> <rdfs:domain rdf:resource="http://www.example.org/ISJ03#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> <ibs:Person> <ibs:hasName>Peter</ibs:hasName> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISJ03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <ibs:Person ibs:hasName="Peter"/> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISJ03#" xmlns="http://www.example.org/ISJ03#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <rdf:Description rdf:about="OWL_INDIVIDUAL_0"> <rdf:type rdf:resource="http://www.example.org/ISJ03#Person"/> <rdfs:label>OWL_INDIVIDUAL_0</rdfs:label> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Peter</hasName> </rdf:Description> </rdf:RDF> |
E65 (ISK01) | <rdf:RDF xml:base="http://www.example.org/ISK01#" 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/ISK01#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISK01#Person" /> <ibs:Person rdf:about="http://www.example.org/ISK01#MaryAnn"/> <ibs:Person rdf:about="http://www.example.org/ISK01#Mary"> <owl:sameAs rdf:resource="http://www.example.org/ISK01#MaryAnn" /> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISK01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <ibs:Person rdf:about="&ibs;MaryAnn"/> <ibs:Person rdf:about="&ibs;Mary"> <owl:sameAs rdf:resource="&ibs;MaryAnn"/> </ibs:Person> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISK01#" xmlns="http://www.example.org/ISK01#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> </owl:Class> <rdf:Description rdf:about="Mary"> <rdf:type rdf:resource="http://www.example.org/ISK01#Person"/> <rdfs:label>Mary</rdfs:label> </rdf:Description> <rdf:Description rdf:about="MaryAnn"> <rdf:type rdf:resource="http://www.example.org/ISK01#Person"/> <rdfs:label>MaryAnn</rdfs:label> </rdf:Description> </rdf:RDF> |
E66 (ISK02) | <rdf:RDF xml:base="http://www.example.org/ISK02#" 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/ISK02#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISK02#Person" /> <ibs:Person rdf:about="http://www.example.org/ISK02#Ann"/> <ibs:Person rdf:about="http://www.example.org/ISK02#MaryAnn"> <owl:differentFrom rdf:resource="http://www.example.org/ISK02#Ann" /> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISK02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <ibs:Person rdf:about="&ibs;Ann"/> <ibs:Person rdf:about="&ibs;MaryAnn"> <owl:differentFrom rdf:resource="&ibs;Ann"/> </ibs:Person> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISK02#" xmlns="http://www.example.org/ISK02#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> </owl:Class> <rdf:Description rdf:about="Ann"> <rdf:type rdf:resource="http://www.example.org/ISK02#Person"/> <rdfs:label>Ann</rdfs:label> </rdf:Description> <rdf:Description rdf:about="MaryAnn"> <rdf:type rdf:resource="http://www.example.org/ISK02#Person"/> <rdfs:label>MaryAnn</rdfs:label> </rdf:Description> </rdf:RDF> |
E67 (ISK03) | <rdf:RDF xml:base="http://www.example.org/ISK03#" 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/ISK03#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISK03#Person" /> <owl:AllDifferent> <owl:distinctMembers rdf:parseType="Collection"> <ibs:Person rdf:about="http://www.example.org/ISK03#Ann"/> <ibs:Person rdf:about="http://www.example.org/ISK03#Joan"/> <ibs:Person rdf:about="http://www.example.org/ISK03#Mary"/> </owl:distinctMembers> </owl:AllDifferent> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISK03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:AllDifferent> <owl:distinctMembers rdf:parseType="Collection"> <rdf:Description rdf:about="&ibs;Ann"/> <rdf:Description rdf:about="&ibs;Joan"/> <rdf:Description rdf:about="&ibs;Mary"/> </owl:distinctMembers> </owl:AllDifferent> <ibs:Person rdf:about="&ibs;Ann"/> <ibs:Person rdf:about="&ibs;Joan"/> <ibs:Person rdf:about="&ibs;Mary"/> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISK03#" xmlns="http://www.example.org/ISK03#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> </owl:Class> <rdf:Description rdf:about="Ann"> <rdf:type rdf:resource="http://www.example.org/ISK03#Person"/> <rdfs:label>Ann</rdfs:label> </rdf:Description> <rdf:Description rdf:about="Joan"> <rdf:type rdf:resource="http://www.example.org/ISK03#Person"/> <rdfs:label>Joan</rdfs:label> </rdf:Description> <rdf:Description rdf:about="Mary"> <rdf:type rdf:resource="http://www.example.org/ISK03#Person"/> <rdfs:label>Mary</rdfs:label> </rdf:Description> </rdf:RDF> |
E68 (ISL01) | <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE rdf:RDF [ <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY ibs "http://www.example.org/ISL01#"> ]> <rdf:RDF xml:base="http://www.example.org/ISL01#" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" xmlns:xsd="&xsd;" xmlns:ibs="&ibs;"> <owl:Ontology rdf:about="#" /> <rdf:Description rdf:about="http://www.example.org/ISL01#Man"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> <rdf:Description rdf:about="http://www.example.org/ISL01#Woman"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL01#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Man"/> <owl:Class rdf:about="&ibs;Woman"/> </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/ISL01#" xmlns="http://www.example.org/ISL01#" 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="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:Class rdf:ID="Woman"> <rdfs:label>Woman</rdfs:label> </owl:Class> </rdf:RDF> |
E69 (ISL02) | <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY ibs "http://www.example.org/ISL02#"> <!ENTITY base "http://www.example.org/ISL02#"> ]> <rdf:RDF xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" xmlns:xsd="&xsd;" xmlns:ibs="&ibs;" xml:base="&base;"> <owl:Ontology rdf:about="&base;" /> <rdf:Description rdf:about="#Man"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> <rdf:Description rdf:about="#Woman"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL02#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Man"/> <owl:Class rdf:about="&ibs;Woman"/> </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/ISL02#" xmlns="http://www.example.org/ISL02#" 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="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:Class rdf:ID="Woman"> <rdfs:label>Woman</rdfs:label> </owl:Class> </rdf:RDF> |
E70 (ISL03) | <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE rdf:RDF [ <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY ibs "http://www.example.org/ISL03#"> ]> <rdf:RDF xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" xmlns:xsd="&xsd;" xmlns:ibs="&ibs;" xml:base="http://www.example.org/ISL03#"> <owl:Ontology rdf:about="#" /> <rdf:Description rdf:ID="Man"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> <rdf:Description rdf:ID="Woman"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL03#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Man"/> <owl:Class rdf:about="&ibs;Woman"/> </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/ISL03#" xmlns="http://www.example.org/ISL03#" 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="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:Class rdf:ID="Woman"> <rdfs:label>Woman</rdfs:label> </owl:Class> </rdf:RDF> |
E71 (ISL04) | <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE rdf:RDF [ <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY ibs "http://www.example.org/ISL04#"> ]> <rdf:RDF xml:base="http://www.example.org/ISL04#" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" xmlns:xsd="&xsd;" xmlns:ibs="&ibs;"> <owl:Ontology rdf:about="#" /> <rdf:Description rdf:about="&ibs;Man"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> <rdf:Description rdf:about="&ibs;Woman"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL04#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Man"/> <owl:Class rdf:about="&ibs;Woman"/> </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/ISL04#" xmlns="http://www.example.org/ISL04#" 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="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:Class rdf:ID="Woman"> <rdfs:label>Woman</rdfs:label> </owl:Class> </rdf:RDF> |
E72 (ISL05) | <?xml version="1.0"?> <!DOCTYPE rdf:RDF [<!ENTITY owl "http://www.w3.org/2002/07/owl#">]> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xml:base="http://www.example.org/ISL05#" xmlns:owl= "http://www.w3.org/2002/07/owl#"> <owl:Ontology rdf:about="#" /> <rdf:Description rdf:about="#Woman"> <rdf:type> <rdf:Description rdf:about="&owl;Class"> </rdf:Description> </rdf:type> </rdf:Description> <rdf:Description rdf:about="#Man"> <rdf:type> <rdf:Description rdf:about="&owl;Class"> </rdf:Description> </rdf:type> </rdf:Description> </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 owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="http://www.example.org/ISL05#"/> <owl:Class rdf:about="http://www.example.org/ISL05#Woman"/> <owl:Class rdf:about="http://www.example.org/ISL05#Man"/> </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/ISL05#" xmlns="http://www.example.org/ISL05#" 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="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:Class rdf:ID="Woman"> <rdfs:label>Woman</rdfs:label> </owl:Class> </rdf:RDF> |
E73 (ISL06) | <?xml version="1.0"?> <!DOCTYPE rdf:RDF [<!ENTITY owl "http://www.w3.org/2002/07/owl#">]> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xml:base="http://www.example.org/ISL06#" xmlns:owl= "http://www.w3.org/2002/07/owl#"> <owl:Ontology rdf:about="#" /> <rdf:Description rdf:about="#Woman"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> <rdf:Description rdf:about="#Man"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> </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 owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="http://www.example.org/ISL06#"/> <owl:Class rdf:about="http://www.example.org/ISL06#Woman"/> <owl:Class rdf:about="http://www.example.org/ISL06#Man"/> </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/ISL06#" xmlns="http://www.example.org/ISL06#" 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="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:Class rdf:ID="Woman"> <rdfs:label>Woman</rdfs:label> </owl:Class> </rdf:RDF> |
E74 (ISL07) | <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> ]> <rdf:RDF xml:base="http://www.example.org/ISL07#" 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/ISL07#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISL07#Person"> </owl:Class> <ibs:Person rdf:about="http://www.example.org/ISL07#MaryAnn"> <ibs:hasName>Mary</ibs:hasName> </ibs:Person> <ibs:Person rdf:about="http://www.example.org/ISL07#MaryAnn"> <ibs:hasName>Ann</ibs:hasName> </ibs:Person> <owl:DatatypeProperty rdf:about="http://www.example.org/ISL07#hasName"> <rdfs:domain rdf:resource="http://www.example.org/ISL07#Person"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:about="http://www.example.org/ISL07#hasName"> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL07#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <ibs:Person rdf:about="&ibs;MaryAnn"> <ibs:hasName>Ann</ibs:hasName> <ibs:hasName>Mary</ibs:hasName> </ibs:Person> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISL07#" xmlns="http://www.example.org/ISL07#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <rdf:Description rdf:about="MaryAnn"> <rdf:type rdf:resource="http://www.example.org/ISL07#Person"/> <rdfs:label>MaryAnn</rdfs:label> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ann</hasName> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mary</hasName> </rdf:Description> </rdf:RDF> |
E75 (ISL08) | <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> ]> <rdf:RDF xml:base="http://www.example.org/ISL08#" 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/ISL08#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISL08#Person"> </owl:Class> <ibs:Person rdf:about="http://www.example.org/ISL08#MaryAnn"> <ibs:hasName>Mary</ibs:hasName> <ibs:hasName>Ann</ibs:hasName> </ibs:Person> <owl:DatatypeProperty rdf:about="http://www.example.org/ISL08#hasName"> <rdfs:domain rdf:resource="http://www.example.org/ISL08#Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL08#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <ibs:Person rdf:about="&ibs;MaryAnn"> <ibs:hasName>Ann</ibs:hasName> <ibs:hasName>Mary</ibs:hasName> </ibs:Person> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISL08#" xmlns="http://www.example.org/ISL08#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <rdf:Description rdf:about="MaryAnn"> <rdf:type rdf:resource="http://www.example.org/ISL08#Person"/> <rdfs:label>MaryAnn</rdfs:label> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ann</hasName> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mary</hasName> </rdf:Description> </rdf:RDF> |
E76 (ISL09) | <?xml version="1.0"?> <!DOCTYPE rdf:RDF [<!ENTITY owl "http://www.w3.org/2002/07/owl#">] > <rdf:RDF 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#" xml:base="http://www.example.org/ISL09#"> <owl:Ontology rdf:about="#" /> <rdf:Description rdf:about="#Man"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> <rdf:Description rdf:about="#Woman"> <rdf:type rdf:resource="&owl;Class" /> </rdf:Description> </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 owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="http://www.example.org/ISL09#"/> <owl:Class rdf:about="http://www.example.org/ISL09#Man"/> <owl:Class rdf:about="http://www.example.org/ISL09#Woman"/> </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/ISL09#" xmlns="http://www.example.org/ISL09#" 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="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:Class rdf:ID="Woman"> <rdfs:label>Woman</rdfs:label> </owl:Class> </rdf:RDF> |
E77 (ISL10) | <?xml version="1.0"?> <rdf:RDF 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#" xml:base="http://www.example.org/ISL10#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="#Man" /> <owl:Class rdf:about="#Woman" /> </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 owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:rdf="&rdf;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="http://www.example.org/ISL10#"/> <owl:Class rdf:about="http://www.example.org/ISL10#Man"/> <owl:Class rdf:about="http://www.example.org/ISL10#Woman"/> </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/ISL10#" xmlns="http://www.example.org/ISL10#" 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="Man"> <rdfs:label>Man</rdfs:label> </owl:Class> <owl:Class rdf:ID="Woman"> <rdfs:label>Woman</rdfs:label> </owl:Class> </rdf:RDF> |
E78 (ISL11) | <rdf:RDF 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/ISL11#" xml:base="http://www.example.org/ISL11#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISL11#Person" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISL11#hasName"> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:about="http://www.example.org/ISL11#hasSurname"> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="http://www.example.org/ISL11#JohnDoe"> <ibs:hasName>John</ibs:hasName> <ibs:hasSurname>Doe</ibs:hasSurname> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL11#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:about="&ibs;hasSurname"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="&ibs;JohnDoe" ibs:hasName="John" ibs:hasSurname="Doe"/> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISL11#" xmlns="http://www.example.org/ISL11#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasSurname"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="hasSurname"> <rdfs:label>hasSurname</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <rdf:Description rdf:about="JohnDoe"> <rdf:type rdf:resource="http://www.example.org/ISL11#Person"/> <rdfs:label>JohnDoe</rdfs:label> <hasSurname rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Doe</hasSurname> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">John</hasName> </rdf:Description> </rdf:RDF> |
E79 (ISL12) | <rdf:RDF 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/ISL12#" xml:base="http://www.example.org/ISL12#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISL12#Person" /> <owl:DatatypeProperty rdf:about="http://www.example.org/ISL12#hasName"> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:about="http://www.example.org/ISL12#hasSurname"> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="http://www.example.org/ISL12#JohnDoe" ibs:hasName="John" ibs:hasSurname="Doe"/> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL12#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:about="&ibs;hasSurname"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="&ibs;JohnDoe" ibs:hasName="John" ibs:hasSurname="Doe"/> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISL12#" xmlns="http://www.example.org/ISL12#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasSurname"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="hasSurname"> <rdfs:label>hasSurname</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <rdf:Description rdf:about="JohnDoe"> <rdf:type rdf:resource="http://www.example.org/ISL12#Person"/> <rdfs:label>JohnDoe</rdfs:label> <hasSurname rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Doe</hasSurname> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">John</hasName> </rdf:Description> </rdf:RDF> |
E80 (ISL13) | <?xml version="1.0"?> <rdf:RDF 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/ISL13#" xml:base="http://www.example.org/ISL13#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="#Person" /> <owl:Class rdf:about="#Child" /> <owl:ObjectProperty rdf:about="#hasChild"> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Child"/> </owl:ObjectProperty> <owl:DatatypeProperty rdf:about="#hasName"> <rdfs:domain rdf:resource="#Child"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="#John"> <ibs:hasChild rdf:nodeID="node1" /> </ibs:Person> <ibs:Child rdf:nodeID="node1"> <ibs:hasName>Paul</ibs:hasName> </ibs:Child> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL13#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:Class rdf:about="&ibs;Child"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;Child"/> </owl:ObjectProperty> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Child"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="&ibs;John"> <ibs:hasChild> <ibs:Child ibs:hasName="Paul"/> </ibs:hasChild> </ibs:Person> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISL13#" xmlns="http://www.example.org/ISL13#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Child"> <rdfs:label>Child</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasChild"/> <owl:allValuesFrom rdf:resource="#Child"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Child"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Child"/> </owl:ObjectProperty> <rdf:Description rdf:about="John"> <rdf:type rdf:resource="http://www.example.org/ISL13#Person"/> <rdfs:label>John</rdfs:label> </rdf:Description> <rdf:Description rdf:about="OWL_INDIVIDUAL_0"> <rdf:type rdf:resource="http://www.example.org/ISL13#Child"/> <rdfs:label>OWL_INDIVIDUAL_0</rdfs:label> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paul</hasName> </rdf:Description> </rdf:RDF> |
E81 (ISL14) | <?xml version="1.0"?> <rdf:RDF 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/ISL14#" xml:base="http://www.example.org/ISL14#"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="#Person" /> <owl:Class rdf:about="#Child" /> <owl:ObjectProperty rdf:about="#hasChild"> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Child"/> </owl:ObjectProperty> <owl:DatatypeProperty rdf:about="#hasName"> <rdfs:domain rdf:resource="#Child"/> <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="#John"> <ibs:hasChild rdf:parseType="Resource"> <rdf:type rdf:resource="#Child"/> <ibs:hasName>Paul</ibs:hasName> </ibs:hasChild> </ibs:Person> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL14#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Person"/> <owl:Class rdf:about="&ibs;Child"/> <owl:ObjectProperty rdf:about="&ibs;hasChild"> <rdfs:domain rdf:resource="&ibs;Person"/> <rdfs:range rdf:resource="&ibs;Child"/> </owl:ObjectProperty> <owl:DatatypeProperty rdf:about="&ibs;hasName"> <rdfs:domain rdf:resource="&ibs;Child"/> <rdfs:range rdf:resource="&rdfs;Literal"/> </owl:DatatypeProperty> <ibs:Person rdf:about="&ibs;John"> <ibs:hasChild> <ibs:Child ibs:hasName="Paul"/> </ibs:hasChild> </ibs:Person> </rdf:RDF> |
<?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.example.org/ISL14#" xmlns="http://www.example.org/ISL14#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Child"> <rdfs:label>Child</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasName"/> <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasChild"/> <owl:allValuesFrom rdf:resource="#Child"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="hasName"> <rdfs:label>hasName</rdfs:label> <rdfs:comment/> <rdfs:domain rdf:resource="#Child"/> <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> </owl:DatatypeProperty> <owl:ObjectProperty rdf:ID="hasChild"> <rdfs:label>hasChild</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Child"/> </owl:ObjectProperty> <rdf:Description rdf:about="John"> <rdf:type rdf:resource="http://www.example.org/ISL14#Person"/> <rdfs:label>John</rdfs:label> </rdf:Description> <rdf:Description rdf:about="OWL_INDIVIDUAL_0"> <rdf:type rdf:resource="http://www.example.org/ISL14#Child"/> <rdfs:label>OWL_INDIVIDUAL_0</rdfs:label> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paul</hasName> </rdf:Description> </rdf:RDF> |
E82 (ISL15) | <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY ibs "http://www.example.org/ISL15#"> <!ENTITY base "http://www.example.org/ISL15#"> ]> <rdf:RDF xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" xmlns:xsd="&xsd;" xmlns:ibs="&ibs;" xml:base="&base;"> <owl:Ontology rdf:about="#" /> <owl:Class rdf:about="http://www.example.org/ISL15#Book"> <rdfs:label xml:lang="en">Book</rdfs:label> <rdfs:label xml:lang="es">Libro</rdfs:label> </owl:Class> </rdf:RDF> |
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE rdf:RDF [ <!ENTITY ibs 'http://www.example.org/ISL15#'> <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'> <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> ]> <rdf:RDF xmlns:ibs="&ibs;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" xmlns:owl="&owl;" > <owl:Ontology rdf:about="&ibs;"/> <owl:Class rdf:about="&ibs;Book"> <rdfs:label xml:lang="en">Book</rdfs:label> <rdfs:label xml:lang="es">Libro</rdfs:label> </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/ISL15#" xmlns="http://www.example.org/ISL15#" 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="Book"> <rdfs:label>Book</rdfs:label> <rdfs:comment>http://www.w3.org/2000/01/rdf-schema#label : Book||http://www.w3.org/2000/01/rdf-schema#label : Libro||</rdfs:comment> </owl:Class> </rdf:RDF> |