Hi everyone,
my requirement is below:
We have automobile rdf file, need to generate the triple by using this.
please find the attachment of rdf file.
when i query it with owl:sameAs property i'm unable to retrieve the whole
hierarchy.
for ex: Sedans is same as both car as well as vehicle (should get
GMCrossovers, GMSportConvertible etc by using inference ).
but i'm getting only car .
my doubt is why am i nt getting the result.
but when i run the same file with allegrograph, i'm getting the result.
--
Regards,
Deepa
<?xml version="1.0"?>
<rdf:RDF
xmlns="http://www.evamtec.com/GmFaceboook#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xml:base="http://www.evamtec.com/GmFaceboook">
<owl:Ontology rdf:about="">
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Created with TopBraid Composer</owl:versionInfo>
<owl:imports rdf:resource="http://purl.org/dc/elements/1.1/"/>
<owl:imports rdf:resource="http://purl.org/dc/terms/"/>
<owl:imports rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos"/>
</owl:Ontology>
<owl:Class rdf:ID="Vehicle">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Vehicle</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:ID="Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="HybridsElectric">
<owl:sameAs>
<owl:Class rdf:ID="Car"/>
</owl:sameAs>
<owl:sameAs rdf:resource="#Vehicle"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>HybridsElectric</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:about="#Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="Sedans">
<owl:sameAs rdf:resource="#Vehicle"/>
<owl:sameAs>
<owl:Class rdf:about="#Car"/>
</owl:sameAs>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Sedans</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:about="#Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="GMVan">
<owl:sameAs rdf:resource="#GM_Product"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMVan</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:ID="Van"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="HatchbackWagons">
<owl:sameAs rdf:resource="#Vehicle"/>
<owl:sameAs>
<owl:Class rdf:about="#Car"/>
</owl:sameAs>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>HatchbackWagons</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:about="#Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="GMSportConvertible">
<owl:sameAs rdf:resource="#GM_Product"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMSportConvertible</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:ID="SportConvertible"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="GMEngine">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMEngine</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:about="#Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="Trucks">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Trucks</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:about="#Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="PickUpTrucks">
<owl:sameAs rdf:resource="#Trucks"/>
<owl:sameAs>
<owl:Class rdf:about="#Van"/>
</owl:sameAs>
<owl:sameAs rdf:resource="#Vehicle"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>PickUpTrucks</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:about="#Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="GMSuv">
<owl:sameAs rdf:resource="#GM_Product"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMSuv</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:ID="Suv"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#Car">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>car</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:about="#Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#Van">
<owl:sameAs rdf:resource="#Trucks"/>
<owl:sameAs rdf:resource="#PickUpTrucks"/>
<owl:sameAs rdf:resource="#Vehicle"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Van</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:about="#Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="GMPickUpTrucks">
<owl:sameAs rdf:resource="#GM_Product"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMPickUpTrucks</rdfs:label>
<rdfs:subClassOf rdf:resource="#PickUpTrucks"/>
</owl:Class>
<owl:Class rdf:ID="GMSedans">
<owl:sameAs rdf:resource="#GM_Product"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMSedans</rdfs:label>
<rdfs:subClassOf rdf:resource="#Sedans"/>
</owl:Class>
<owl:Class rdf:ID="GMHatchbackWagons">
<owl:sameAs rdf:resource="#GM_Product"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMHatchbackWagons</rdfs:label>
<rdfs:subClassOf rdf:resource="#HatchbackWagons"/>
</owl:Class>
<owl:Class rdf:ID="GMCrossovers">
<owl:sameAs rdf:resource="#GM_Product"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMCrossovers</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:ID="Crossovers"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#SportConvertible">
<owl:sameAs rdf:resource="#Vehicle"/>
<owl:sameAs rdf:resource="#Car"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>SportConvertible</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:about="#Automobile"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#Automobile">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>automobile</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:about="#Suv">
<owl:sameAs>
<owl:Class rdf:about="#Crossovers"/>
</owl:sameAs>
<owl:sameAs rdf:resource="#Vehicle"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Suv</rdfs:label>
<rdfs:subClassOf rdf:resource="#Automobile"/>
</owl:Class>
<owl:Class rdf:ID="Conversation">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>conversation</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:ID="Place">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>place</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:about="#Crossovers">
<owl:sameAs rdf:resource="#Suv"/>
<owl:sameAs rdf:resource="#Vehicle"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Crossovers</rdfs:label>
<rdfs:subClassOf rdf:resource="#Automobile"/>
</owl:Class>
<owl:Class rdf:ID="Coupe">
<owl:sameAs rdf:resource="#Vehicle"/>
<owl:sameAs rdf:resource="#Car"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Coupe</rdfs:label>
<rdfs:subClassOf rdf:resource="#Automobile"/>
</owl:Class>
<owl:Class rdf:ID="Organization">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Organization</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:ID="GMHybridsElectric">
<owl:sameAs rdf:resource="#GM_Product"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMHybridsElectric</rdfs:label>
<rdfs:subClassOf rdf:resource="#HybridsElectric"/>
</owl:Class>
<owl:Class rdf:ID="GMCoupe">
<owl:sameAs rdf:resource="#GM_Product"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>GMCoupe</rdfs:label>
<rdfs:subClassOf rdf:resource="#Coupe"/>
</owl:Class>
<owl:ObjectProperty rdf:ID="hasGMVan">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasVan"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasGMVan</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMCurrentDivisions">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMCurrentDivisions</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMSedans">
<owl:inverseOf>
<owl:ObjectProperty rdf:ID="productOf_GM"/>
</owl:inverseOf>
<rdfs:range rdf:resource="#GMSedans"/>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasGMSedans"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMSedans</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMHatchbackWagons">
<owl:inverseOf>
<owl:ObjectProperty rdf:about="#productOf_GM"/>
</owl:inverseOf>
<rdfs:range rdf:resource="#GMHatchbackWagons"/>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasGMHatchbackWagons"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMHatchbackWagons</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasGMSportConvertible">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasSportConvertible"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasGMSportConvertible</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitCustomerService">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitCustomerService</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasSedans">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasAutomobile"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasSedans</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasGMHybridsElectric">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasHybridsElectric"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasGMHybridsElectric</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasVan">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="#hasAutomobile"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasVan</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitMyCompany">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitMyCompany</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMEngine">
<rdfs:range rdf:resource="#GMEngine"/>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="#hasAutomobile"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMEngine</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitAutomobile">
<rdfs:range rdf:resource="#Automobile"/>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="#hasAutomobile"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitAutomobile</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasGMCoupe">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasCoupe"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasGMCoupe</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitAction">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitAction</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitLanguage">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitLanguage</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#productOf_GM">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="#hasAutomobile"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>productOf_GM</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitCompetitors">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitCompetitors</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMSportConvertible">
<owl:inverseOf rdf:resource="#productOf_GM"/>
<rdfs:range rdf:resource="#GMSportConvertible"/>
<rdfs:subPropertyOf rdf:resource="#hasGMSportConvertible"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMSportConvertible</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMSuv">
<owl:inverseOf rdf:resource="#productOf_GM"/>
<rdfs:range rdf:resource="#GMSuv"/>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasGMSuv"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMSuv</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasAutomobile">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasAutomobile</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitTrends">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitTrends</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitPlace">
<rdfs:range rdf:resource="#Place"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitPlace</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitEnvironment">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitEnvironment</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasGMSuv">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasSuv"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasGMSuv</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitVehicleType">
<rdfs:range rdf:resource="#Vehicle"/>
<rdfs:subPropertyOf rdf:resource="#hasAutomobile"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitVehicleType</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMVan">
<rdfs:domain rdf:resource="#Conversation"/>
<owl:inverseOf rdf:resource="#productOf_GM"/>
<rdfs:range rdf:resource="#GMVan"/>
<rdfs:subPropertyOf rdf:resource="#hasGMVan"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMVan</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasSuv">
<rdfs:subPropertyOf rdf:resource="#hasAutomobile"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasSuv</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasHybridsElectric">
<rdfs:subPropertyOf rdf:resource="#hasAutomobile"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasHybridsElectric</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMHybridsElectric">
<owl:inverseOf rdf:resource="#productOf_GM"/>
<rdfs:range rdf:resource="#GMHybridsElectric"/>
<rdfs:subPropertyOf rdf:resource="#hasGMHybridsElectric"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMHybridsElectric</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasCrossovers">
<rdfs:subPropertyOf rdf:resource="#hasAutomobile"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasCrossovers</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasGMSedans">
<rdfs:subPropertyOf rdf:resource="#hasSedans"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasGMSedans</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasPickUpTrucks">
<rdfs:subPropertyOf rdf:resource="#hasAutomobile"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasPickUpTrucks</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasHatchbackWagons">
<rdfs:subPropertyOf rdf:resource="#hasAutomobile"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasHatchbackWagons</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasGMHatchbackWagons">
<rdfs:subPropertyOf rdf:resource="#hasHatchbackWagons"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasGMHatchbackWagons</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitMarketing">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitMarketing</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasSportConvertible">
<rdfs:subPropertyOf rdf:resource="#hasAutomobile"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasSportConvertible</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasGMPickUpTrucks">
<rdfs:subPropertyOf rdf:resource="#hasPickUpTrucks"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasGMPickUpTrucks</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMCrossovers">
<owl:inverseOf rdf:resource="#productOf_GM"/>
<rdfs:range rdf:resource="#GMCrossovers"/>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:ID="hasGMCrossovers"/>
</rdfs:subPropertyOf>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMCrossovers</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMDiscontinuedDivisions">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMDiscontinuedDivisions</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMCoupe">
<owl:inverseOf rdf:resource="#productOf_GM"/>
<rdfs:range rdf:resource="#GMCoupe"/>
<rdfs:subPropertyOf rdf:resource="#hasGMCoupe"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMCoupe</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitOrganization">
<rdfs:range rdf:resource="#Organization"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitOrganization</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMPickUpTrucks">
<owl:inverseOf rdf:resource="#productOf_GM"/>
<rdfs:range rdf:resource="#GMPickUpTrucks"/>
<rdfs:subPropertyOf rdf:resource="#hasGMPickUpTrucks"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMPickUpTrucks</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitGMSubsidiary">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitGMSubsidiary</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasGMCrossovers">
<rdfs:subPropertyOf rdf:resource="#hasCrossovers"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasGMCrossovers</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#hasCoupe">
<rdfs:subPropertyOf rdf:resource="#hasAutomobile"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasCoupe</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasImplicitMood">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasImplicitMood</rdfs:label>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:ID="hasObjectType">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasObjectType</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="conversationMadeBy">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>conversationMadeBy</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="hasName">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasName</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="commentMadeBy">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>commentMadeBy</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="hasMessage">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasMessage</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="hasConversation">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasConversation</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="hasCommentRandomID">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasCommentRandomID</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="productOf">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>productOf</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="hasDomain">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasDomain</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="hasComments">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasComments</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="hasCompany">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>hasCompany</rdfs:label>
</owl:DatatypeProperty>
</rdf:RDF>
<!-- Created with TopBraid -->