# Copyright (c) 2022,2023 T-Systems International GmbH # Copyright (c) 2022,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) # Copyright (c) 2022,2023 ZF Friedrichshafen AG # Copyright (c) 2022,2023 Mercedes-Benz AG # Copyright (c) 2022,2023 Contributors to the Catena-X Association # # See the NOTICE file(s) distributed with this work for additional # information regarding copyright ownership. # # This program and the accompanying materials are made available under the # terms of the Apache License, Version 2.0 which is available at # https://www.apache.org/licenses/LICENSE-2.0. # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # SPDX-License-Identifier: Apache-2.0 @prefix : . @prefix dc: . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . @prefix skos: . @prefix schema: . @prefix json: . @prefix cx-core: . @prefix cx-vehicle: . @base . rdf:type owl:Ontology ; owl:imports ; dc:contributor "Rolf Bosse, Jörg Schulz, Oguzhan Balandi" ; dc:creator "Zazralt Magic" ; dc:date "2023-02-21"^^xsd:date ; dc:description "Ontology for vehicles in the automotive industry." ; dc:title "Vehicle Ontology" ; owl:versionInfo "1.9.4" . ################################################################# # Annotation properties ################################################################# ### http://purl.org/dc/elements/1.1/contributor dc:contributor rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/creator dc:creator rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/date dc:date rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/description dc:description rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/title dc:title rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#altLabel skos:altLabel rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#definition skos:definition rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#example skos:example rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#note skos:note rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#prefLabel skos:prefLabel rdf:type owl:AnnotationProperty . ################################################################# # Datatypes ################################################################# ### http://www.w3.org/2001/XMLSchema#date xsd:date rdf:type rdfs:Datatype . ### https://json-schema.org/draft/2020-12/schema#Object json:Object rdf:type rdfs:Datatype . ################################################################# # Object Properties ################################################################# ### https://w3id.org/catenax/ontology/core#describedByConceptualObject cx-core:describedByConceptualObject rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; owl:inverseOf cx-core:describesPhysicalObject ; rdfs:domain cx-core:PhysicalObject ; rdfs:range cx-core:ConceptualObject ; dc:description "Inverse of 'describes physical object' property."@en ; skos:prefLabel "described by conceptual object"@en . ### https://w3id.org/catenax/ontology/core#describesPhysicalObject cx-core:describesPhysicalObject rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; rdfs:domain cx-core:ConceptualObject ; rdfs:range cx-core:PhysicalObject ; rdfs:comment "This property describes that a conceptual object has a descriptive relationship to a physical object."@en ; rdfs:label "describes physical object"@en . ### https://w3id.org/catenax/ontology/vehicle#eClassType cx-vehicle:eClassType rdf:type owl:ObjectProperty ; rdfs:subPropertyOf cx-core:describedByConceptualObject ; rdfs:domain cx-core:PhysicalObject ; rdfs:range cx-vehicle:EClassType . ### https://w3id.org/catenax/ontology/vehicle#hasPart cx-vehicle:hasPart rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; owl:inverseOf cx-vehicle:isPartOf ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range cx-vehicle:Part . ### https://w3id.org/catenax/ontology/vehicle#hasSubpart cx-vehicle:hasSubpart rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; owl:inverseOf cx-vehicle:isSubpartOf ; rdfs:domain cx-vehicle:Part ; rdfs:range cx-vehicle:Part ; skos:prefLabel "has subpart"@en . ### https://w3id.org/catenax/ontology/vehicle#isPartOf cx-vehicle:isPartOf rdf:type owl:ObjectProperty ; rdfs:domain cx-vehicle:Part ; rdfs:range cx-vehicle:Vehicle ; skos:prefLabel "is part of"@en . ### https://w3id.org/catenax/ontology/vehicle#isSubpartOf cx-vehicle:isSubpartOf rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; rdfs:domain cx-vehicle:Part ; rdfs:range cx-vehicle:Part ; skos:prefLabel "is subpart of"@en . ### https://w3id.org/catenax/ontology/vehicle#isVariantOf cx-vehicle:isVariantOf rdf:type owl:ObjectProperty ; rdfs:subPropertyOf cx-core:describedByConceptualObject ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range cx-vehicle:VehicleModel ; rdfs:seeAlso schema:isVariantOf ; skos:prefLabel "is variant of"@en . ################################################################# # Data properties ################################################################# ### https://w3id.org/catenax/ontology/vehicle#acceleration cx-vehicle:acceleration rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:performanceInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso , schema:accelerationTime ; skos:definition "The time needed to accelerate the vehicle from 0 to 100 km/h."@en ; skos:example "5"@en ; skos:note "in seconds"@en ; skos:prefLabel "Beschleunigung"@de , "Vehicle Acceleration"@en . ### https://w3id.org/catenax/ontology/vehicle#adblueTankCapacity cx-vehicle:adblueTankCapacity rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; skos:example "8"@en ; skos:note "in liter"@en ; skos:prefLabel "Adblue Tank Capacity"@en . ### https://w3id.org/catenax/ontology/vehicle#age cx-vehicle:age rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:stateInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:definition "The current age of the vehicle in years."@en ; skos:example "3"@en ; skos:note "in years"@en ; skos:prefLabel "Fahrzeugalter"@de , "Vehicle Age"@en . ### https://w3id.org/catenax/ontology/vehicle#airConditioningType cx-vehicle:airConditioningType rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:interiorInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:example "automatic"@en , "manual"@en ; skos:prefLabel "Air Conditioning Type"@en . ### https://w3id.org/catenax/ontology/vehicle#assemblyCountry cx-vehicle:assemblyCountry rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:string ; rdfs:seeAlso schema:countryOfAssembly ; skos:definition "The place where the item was assembled."@en ; skos:prefLabel "Assembly Country"@en , "Montageland"@de . ### https://w3id.org/catenax/ontology/vehicle#assemblyPlant cx-vehicle:assemblyPlant rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:string ; skos:prefLabel "Assembly Plant"@en , "Montagewerk"@de . ### https://w3id.org/catenax/ontology/vehicle#assistanceSystem cx-vehicle:assistanceSystem rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:suspensionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:prefLabel "Assistance System"@en . ### https://w3id.org/catenax/ontology/vehicle#batteryCapacity cx-vehicle:batteryCapacity rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:batteryInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:note "in kWhs"@en ; skos:prefLabel "Battery Capacity"@en . ### https://w3id.org/catenax/ontology/vehicle#batteryInformation cx-vehicle:batteryInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Part , cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Battery Information"@en . ### https://w3id.org/catenax/ontology/vehicle#batteryType cx-vehicle:batteryType rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:batteryInformation ; rdfs:range xsd:string ; skos:example "Li-Ion"@en ; skos:prefLabel "Battery Type"@en . ### https://w3id.org/catenax/ontology/vehicle#batteryWeight cx-vehicle:batteryWeight rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:batteryInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:example "250"@en ; skos:note "in kilogramms"@en ; skos:prefLabel "Battery Weight"@en . ### https://w3id.org/catenax/ontology/vehicle#bodyInformation cx-vehicle:bodyInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Part , cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Body Information"@en . ### https://w3id.org/catenax/ontology/vehicle#bodyStyle cx-vehicle:bodyStyle rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:bodyType ; skos:altLabel "Kategorie"@de , "body type"@en ; skos:definition "Indicates the design and body style of the vehicle ."@en ; skos:example "coupe"@en , "sedan"@en , "station wagon"@en ; skos:prefLabel "Body Style"@en . ### https://w3id.org/catenax/ontology/vehicle#bore cx-vehicle:bore rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; skos:note "in mm"@en ; skos:prefLabel "Bore"@en . ### https://w3id.org/catenax/ontology/vehicle#brand cx-vehicle:brand rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:brand ; skos:altLabel "make"@en , "marque"@en ; skos:example "Audi"@en , "BMW"@en , "Mercedes"@en ; skos:prefLabel "Make"@en , "Marke"@de . ### https://w3id.org/catenax/ontology/vehicle#breaking cx-vehicle:breaking rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:performanceInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso ; skos:definition "The time needed to decelerate the vehicle from 100 to 0 km/h."@en ; skos:example "5"@en ; skos:note "in seconds"@en ; skos:prefLabel "Bremsung"@de , "Vehicle Breaking"@en . ### https://w3id.org/catenax/ontology/vehicle#camshaftValvetrainConfiguration cx-vehicle:camshaftValvetrainConfiguration rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "DOHC"@en ; skos:prefLabel "Camshaft Valvetrain Configuration"@en . ### https://w3id.org/catenax/ontology/vehicle#cargoInformation cx-vehicle:cargoInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Cargo Information"@en . ### https://w3id.org/catenax/ontology/vehicle#cargoVolume cx-vehicle:cargoVolume rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:cargoVolume ; skos:altLabel "cargo capacity"@en ; skos:definition "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume."@en ; skos:example "500"@en ; skos:note "in liters"@en ; skos:prefLabel "Cargo Volume"@en . ### https://w3id.org/catenax/ontology/vehicle#chargingTime cx-vehicle:chargingTime rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:batteryInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; skos:note "in hours"@en ; skos:prefLabel "Charging Time"@en . ### https://w3id.org/catenax/ontology/vehicle#chassisInformation cx-vehicle:chassisInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Part , cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Chassis Information"@en . ### https://w3id.org/catenax/ontology/vehicle#classification cx-vehicle:classification rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:EClassType ; rdfs:range xsd:string ; skos:prefLabel "EClass classification"@en . ### https://w3id.org/catenax/ontology/vehicle#clutchType cx-vehicle:clutchType rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:powertrainInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:example "centrifugal"@en , "wet"@en ; skos:prefLabel "Clutch Type"@en , "Kupplungsart"@de . ### https://w3id.org/catenax/ontology/vehicle#co2Emissions cx-vehicle:co2Emissions rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso schema:emissionsCO2 ; skos:definition "The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put \"g/km\" into the unitText property of that value, since there is no UN/CEFACT Common Code for \"g/km\"."@en ; skos:example "130"@en ; skos:note "in g/km"@en ; skos:prefLabel "Co2 Emissions"@en . ### https://w3id.org/catenax/ontology/vehicle#co2EmissionsWltp cx-vehicle:co2EmissionsWltp rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso schema:emissionsCO2 ; skos:definition "The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put \"g/km\" into the unitText property of that value, since there is no UN/CEFACT Common Code for \"g/km\"."@en ; skos:example "130"@en ; skos:note "in g/km"@en ; skos:prefLabel "Co2 Emissions Wltp"@en . ### https://w3id.org/catenax/ontology/vehicle#communicationInformation cx-vehicle:communicationInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Communication Information"@en . ### https://w3id.org/catenax/ontology/vehicle#configuration cx-vehicle:configuration rdf:type owl:DatatypeProperty ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:vehicleConfiguration ; skos:definition "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'."@en ; skos:prefLabel "Vehicle Configuration"@en . ### https://w3id.org/catenax/ontology/vehicle#countryOption cx-vehicle:countryOption rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:string ; skos:altLabel "national-market version"@en ; skos:example "CN"@en , "EUR"@en , "US"@en ; skos:prefLabel "Country Option"@en , "Länderausführung"@de . ### https://w3id.org/catenax/ontology/vehicle#curbWeight cx-vehicle:curbWeight rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso ; skos:altLabel "Leermasse"@de , "kerb weight"@en ; skos:definition "The total mass of a vehicle with standard equipment and all necessary operating consumables such as motor oil, transmission oil, brake fluid, coolant, air conditioning refrigerant, and sometimes a full tank of fuel, while not loaded with either passengers or cargo."@en ; skos:example "1500"@en ; skos:note "in kilogramms"@en ; skos:prefLabel "Leergewicht"@de , "Vehicle Curb Weight"@en . ### https://w3id.org/catenax/ontology/vehicle#deliveryCountry cx-vehicle:deliveryCountry rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:string ; skos:prefLabel "Auslieferland"@de , "Delivery Country"@en . ### https://w3id.org/catenax/ontology/vehicle#deliveryDate cx-vehicle:deliveryDate rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:date ; skos:prefLabel "Auslieferdatum"@de , "Delivery Date"@en . ### https://w3id.org/catenax/ontology/vehicle#deliveryPrice cx-vehicle:deliveryPrice rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:integer ; skos:prefLabel "Delivery Price"@en , "Lieferpreis"@de . ### https://w3id.org/catenax/ontology/vehicle#description cx-vehicle:description rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:range xsd:string ; skos:prefLabel "Description"@en . ### https://w3id.org/catenax/ontology/vehicle#developmentSeries cx-vehicle:developmentSeries rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:altLabel "Baureihe"@de , "Derivat"@de , "E-Baureihe"@de , "E-Reihe"@de , "EBR"@de , "Entwicklungsbaureihe"@de , "Entwicklungsbezeichnung"@de , "Entwicklungscode"@de , "derivative"@en , "development code"@en , "development model range"@en , "development series"@en , "e-series"@en ; skos:definition "internal series number"@en ; skos:example "BMW: G26"@en , "Mercedes: W212"@en ; skos:prefLabel "Development Series"@en , "Fahrzeugbaureihe"@de . ### https://w3id.org/catenax/ontology/vehicle#dragCoefficient cx-vehicle:dragCoefficient rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso ; skos:altLabel "Cd"@en ; skos:definition "aerodynamic drag coefficient"@en ; skos:example "0.3"@en ; skos:prefLabel "Vehicle Drag Coefficient"@en . ### https://w3id.org/catenax/ontology/vehicle#driveWheelType cx-vehicle:driveWheelType rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:powertrainInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso , schema:driveWheelConfiguration ; skos:altLabel "drive wheel configuration"@en , "driveline"@en ; skos:definition "The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain."@en ; skos:example "all"@en , "front"@en , "rear"@en ; skos:prefLabel "Drive Wheel Type"@en . ### https://w3id.org/catenax/ontology/vehicle#dryWeight cx-vehicle:dryWeight rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso ; skos:definition "Dry weight is the weight of a vehicle without any consumables, passengers, or cargo."@en ; skos:prefLabel "Vehicle Dry Weight"@en . ### https://w3id.org/catenax/ontology/vehicle#electricConsumption cx-vehicle:electricConsumption rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:batteryInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; skos:prefLabel "Electric Consumption"@en . ### https://w3id.org/catenax/ontology/vehicle#electricPower cx-vehicle:electricPower rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:batteryInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:altLabel "Nennleistung"@de ; skos:note "in kW"@en ; skos:prefLabel "Electric Power"@en . ### https://w3id.org/catenax/ontology/vehicle#electricRange cx-vehicle:electricRange rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:performanceInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:note "in kilometers"@en ; skos:prefLabel "Electric Range"@en , "Elektrische Reichweite"@de . ### https://w3id.org/catenax/ontology/vehicle#electricRangeWltp cx-vehicle:electricRangeWltp rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:performanceInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:note "in kilometers"@en ; skos:prefLabel "Electric Range Wltp"@en , "Elektrische Reichweite"@de . ### https://w3id.org/catenax/ontology/vehicle#emissionClass cx-vehicle:emissionClass rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:altLabel "Euro-Norm"@de ; skos:definition "The euro emission class is a measure of a vehicle's emissions, calculated using a standard testing procedure. The higher the vehicle euro class, the less emissions the vehicle produces."@en ; skos:example "Euro 4"@en , "Euro 5"@en , "Euro 6"@en ; skos:prefLabel "Abgasnorm"@de , "Emission Class"@en . ### https://w3id.org/catenax/ontology/vehicle#engineAlignment cx-vehicle:engineAlignment rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "longitudinal"@en , "transverse"@en ; skos:prefLabel "Engine Alignment"@en , "Motorausrichtung"@de . ### https://w3id.org/catenax/ontology/vehicle#engineAspiration cx-vehicle:engineAspiration rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:example "natural"@en , "turbo"@en ; skos:prefLabel "Ansaugung"@de , "Engine Aspiration"@en . ### https://w3id.org/catenax/ontology/vehicle#engineCompressionRatio cx-vehicle:engineCompressionRatio rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso ; skos:example "2022-01-08 00:00:00"@en ; skos:prefLabel "Engine Compression Ratio"@en , "Verdichtungsverhältnis"@de . ### https://w3id.org/catenax/ontology/vehicle#engineDisplacement cx-vehicle:engineDisplacement rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso , schema:engineDisplacement ; skos:altLabel "engine capacity"@en ; skos:definition "The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement."@en ; skos:note "in ccm"@en ; skos:prefLabel "Engine Displacement"@en , "Hubraum"@de . ### https://w3id.org/catenax/ontology/vehicle#engineFamily cx-vehicle:engineFamily rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "Inline 4"@en , "V12"@en , "V6"@en , "W8"@en ; skos:prefLabel "Engine Family"@en , "Motorfamilie"@de . ### https://w3id.org/catenax/ontology/vehicle#engineForm cx-vehicle:engineForm rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:altLabel "Bauform"@de , "Bauweise"@de ; skos:example "V"@en , "W"@en , "boxer/flat"@en , "straight/inline"@en ; skos:prefLabel "Engine Form"@en , "Motorform"@de . ### https://w3id.org/catenax/ontology/vehicle#engineFuelInjection cx-vehicle:engineFuelInjection rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:example "direct"@en , "indirect"@en ; skos:prefLabel "Engine Fuel Injection"@en , "Kraftstoffeinspritzung"@de . ### https://w3id.org/catenax/ontology/vehicle#engineGeneration cx-vehicle:engineGeneration rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "1"@en , "2"@en , "3"@en ; skos:prefLabel "Engine Generation"@en , "Motorgeneration"@de . ### https://w3id.org/catenax/ontology/vehicle#engineInformation cx-vehicle:engineInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Part , cx-vehicle:Vehicle ; skos:definition "Information about the engine or engines of the vehicle."@en ; skos:prefLabel "Vehicle Engine Information"@en . ### https://w3id.org/catenax/ontology/vehicle#engineManufacturer cx-vehicle:engineManufacturer rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "Audi"@en , "BMW"@en , "Mercedes"@en , "Volkswagen"@en ; skos:prefLabel "Engine Manufacturer"@en , "Motorhersteller"@de . ### https://w3id.org/catenax/ontology/vehicle#engineMaxPower cx-vehicle:engineMaxPower rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:enginePower ; skos:altLabel "Nennleistung"@de ; skos:definition "The power of the vehicle's engine. Typical unit code: KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower"@en ; skos:example "150"@en ; skos:note "in horsepower"@en ; skos:prefLabel "Engine Max Power"@en , "Leistung"@de . ### https://w3id.org/catenax/ontology/vehicle#engineMaxTorque cx-vehicle:engineMaxTorque rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso , schema:torque ; skos:definition "The torque of the vehicle's engine."@en ; skos:example "200"@en ; skos:note "in Nm"@en ; skos:prefLabel "Drehmoment"@de , "Engine Max Torque"@en . ### https://w3id.org/catenax/ontology/vehicle#engineName cx-vehicle:engineName rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:vehicleEngine ; skos:example "3.0L L6 DOHC 24V"@en , "3.5L V6 TURBO"@en ; skos:prefLabel "Engine Name"@en , "Motorbezeichnung"@de . ### https://w3id.org/catenax/ontology/vehicle#enginePerformanceClass cx-vehicle:enginePerformanceClass rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "high"@en , "low"@en , "middle"@en ; skos:prefLabel "Engine Performance Class"@en , "Motorleistungsklasse"@de . ### https://w3id.org/catenax/ontology/vehicle#enginePosition cx-vehicle:enginePosition rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:altLabel "Motoranordnung"@de ; skos:example "front"@en , "mid"@en , "rear"@en ; skos:prefLabel "Engine Position"@en , "Motorposition"@de . ### https://w3id.org/catenax/ontology/vehicle#engineSeries cx-vehicle:engineSeries rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "b38"@en ; skos:prefLabel "Engine Series"@en , "Motorbaureihe"@de . ### https://w3id.org/catenax/ontology/vehicle#engineTypeCode cx-vehicle:engineTypeCode rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:prefLabel "Engine Type Code"@en , "Motortypschlüssel"@de . ### https://w3id.org/catenax/ontology/vehicle#engineVersion cx-vehicle:engineVersion rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:altLabel "Technische Überarbeitung"@de ; skos:prefLabel "Engine Version"@en , "Motorversion"@de . ### https://w3id.org/catenax/ontology/vehicle#euEnergyLabel cx-vehicle:euEnergyLabel rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:altLabel "Energieeffizienzklasse"@de , "Energieverbrauchskennzeichnung"@de , "Kennzeichnung des Energieverbrauchs"@de , "energy efficiency class"@en ; skos:example "A"@en , "B"@en , "C"@en , "D"@en ; skos:prefLabel "Eu Energy Label"@en . ### https://w3id.org/catenax/ontology/vehicle#euroCarSegment cx-vehicle:euroCarSegment rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:example "A"@en , "B"@en , "C"@en ; skos:prefLabel "Euro Car Segment"@en . ### https://w3id.org/catenax/ontology/vehicle#expectedLifetime cx-vehicle:expectedLifetime rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:lifetimeInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:example "12"@en ; skos:note "in years"@en ; skos:prefLabel "Expected Lifetime"@en , "Lebensdauer"@de . ### https://w3id.org/catenax/ontology/vehicle#expectedLifetimeMileage cx-vehicle:expectedLifetimeMileage rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:lifetimeInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:example "150000"@en ; skos:note "in kilometers"@en ; skos:prefLabel "Expected Lifetime Mileage"@en , "Laufleistung"@de . ### https://w3id.org/catenax/ontology/vehicle#exteriorColor cx-vehicle:exteriorColor rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:color ; skos:definition "The color of the product."@en ; skos:prefLabel "Vehicle Exterior Color"@en . ### https://w3id.org/catenax/ontology/vehicle#frontBrakeDiscDiameter cx-vehicle:frontBrakeDiscDiameter rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; skos:note "in mm"@en ; skos:prefLabel "Front Brake Disc Diameter"@en . ### https://w3id.org/catenax/ontology/vehicle#frontSpringType cx-vehicle:frontSpringType rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:suspensionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "coil"@en ; skos:prefLabel "Front Spring Type"@en . ### https://w3id.org/catenax/ontology/vehicle#frontSuspension cx-vehicle:frontSuspension rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:suspensionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:example "independent"@en ; skos:prefLabel "Forderradaufhängung"@de , "Front Suspension"@en . ### https://w3id.org/catenax/ontology/vehicle#fuelConsumptionCity cx-vehicle:fuelConsumptionCity rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso , schema:fuelConsumption ; skos:altLabel "fuel economy city"@en , "urban consumption"@en ; skos:example "8"@en ; skos:prefLabel "Fuel Consumption City"@en , "Kraftstoff­verbrauch in der Stadt"@de . ### https://w3id.org/catenax/ontology/vehicle#fuelConsumptionCombined cx-vehicle:fuelConsumptionCombined rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso , schema:fuelConsumption ; skos:altLabel "fuel economy combined"@en , "mixed consumption"@en ; skos:definition "The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle ."@en ; skos:example "5"@en ; skos:prefLabel "Fuel Consumption Combined"@en , "kombinierter Kraftstoff­verbrauch"@de . ### https://w3id.org/catenax/ontology/vehicle#fuelConsumptionHighway cx-vehicle:fuelConsumptionHighway rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso , schema:fuelConsumption ; skos:altLabel "extra-urban consumption"@en , "fuel economy highway"@en ; skos:example "4"@en ; skos:prefLabel "Fuel Consumption Highway"@en , "Kraftstoff­verbrauch auf der Autobahn"@de . ### https://w3id.org/catenax/ontology/vehicle#fuelEfficiency cx-vehicle:fuelEfficiency rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:fuelEfficiency ; skos:definition "The distance traveled per unit of fuel used; most commonly miles per gallon or kilometers per liter ."@en ; skos:prefLabel "Fuel Efficiency"@en . ### https://w3id.org/catenax/ontology/vehicle#fuelInformation cx-vehicle:fuelInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Fuel Information"@en . ### https://w3id.org/catenax/ontology/vehicle#fuelTankCapacity cx-vehicle:fuelTankCapacity rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:fuelCapacity ; skos:definition "The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type."@en ; skos:example "50"@en ; skos:note "in liter"@en ; skos:prefLabel "Fuel Tank Capacity"@en , "Tankinhalt"@de . ### https://w3id.org/catenax/ontology/vehicle#fuelType cx-vehicle:fuelType rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:fuelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:fuelType ; skos:definition "The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle."@en ; skos:example "diesel"@en , "petrol"@en ; skos:prefLabel "Fuel Type"@en , "Kraftstoffart"@de . ### https://w3id.org/catenax/ontology/vehicle#grossVehicleMass cx-vehicle:grossVehicleMass rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso ; skos:altLabel "GVM"@en , "GVWR"@en , "Gross Vehicle Weight Rating"@en , "Zulässige Gesamtmasse"@de , "gross vehicle mass"@en , "höchstzulässiges Gesamtgewicht"@de ; skos:example "1300"@en ; skos:note "in kilogramms"@en ; skos:prefLabel "Gross Vehicle Mass"@en , "zulässiges Gesamtgewicht"@de . ### https://w3id.org/catenax/ontology/vehicle#groundClearance cx-vehicle:groundClearance rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; skos:altLabel "Bodenfreiheit"@de ; skos:note "in cm"@en ; skos:prefLabel "Bodenabstand"@de , "Vehicle Ground Clearance"@en . ### https://w3id.org/catenax/ontology/vehicle#hasAutomaticHeadLights cx-vehicle:hasAutomaticHeadLights rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:lightingInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:boolean ; skos:prefLabel "Has Automatic Head Lights"@en . ### https://w3id.org/catenax/ontology/vehicle#hasFogLights cx-vehicle:hasFogLights rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:lightingInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:boolean ; skos:prefLabel "Has Fog Lights"@en . ### https://w3id.org/catenax/ontology/vehicle#hasModem cx-vehicle:hasModem rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:communicationInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:boolean ; skos:prefLabel "Has Modem"@en . ### https://w3id.org/catenax/ontology/vehicle#hasNavigation cx-vehicle:hasNavigation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:infotainmentInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:boolean ; skos:example "yes"@en ; skos:prefLabel "Has Navigation"@en . ### https://w3id.org/catenax/ontology/vehicle#hasRadio cx-vehicle:hasRadio rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:infotainmentInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:boolean ; skos:example "yes"@en ; skos:prefLabel "Has Radio"@en . ### https://w3id.org/catenax/ontology/vehicle#height cx-vehicle:height rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:height ; skos:note "in cm"@en ; skos:prefLabel "Vehicle Height"@en . ### https://w3id.org/catenax/ontology/vehicle#id cx-vehicle:id rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:partInformation ; rdfs:range xsd:string ; skos:prefLabel "Bauteil Id"@de , "Id"@en . ### https://w3id.org/catenax/ontology/vehicle#infotainmentInformation cx-vehicle:infotainmentInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Infotainment Information"@en . ### https://w3id.org/catenax/ontology/vehicle#interiorColor cx-vehicle:interiorColor rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:interiorInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:vehicleInteriorColor ; skos:definition "The color or color combination of the interior of the vehicle."@en ; skos:prefLabel "Vehicle Interior Color"@en . ### https://w3id.org/catenax/ontology/vehicle#interiorInformation cx-vehicle:interiorInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Interior Information"@en . ### https://w3id.org/catenax/ontology/vehicle#interiorType cx-vehicle:interiorType rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:interiorInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:vehicleInteriorType ; skos:definition "The type or material of the interior of the vehicle . While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience."@en ; skos:example "leather"@en , "synthetic fabric"@en , "wood"@en ; skos:prefLabel "Vehicle Interior Type"@en . ### https://w3id.org/catenax/ontology/vehicle#irdi cx-vehicle:irdi rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:EClassType ; rdfs:range xsd:string ; skos:prefLabel "EClass IRDI Code"@en . ### https://w3id.org/catenax/ontology/vehicle#length cx-vehicle:length rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:depth ; skos:note "in cm"@en ; skos:prefLabel "Vehicle Length"@en . ### https://w3id.org/catenax/ontology/vehicle#lifetimeInformation cx-vehicle:lifetimeInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Lifetime Information"@en . ### https://w3id.org/catenax/ontology/vehicle#lightingInformation cx-vehicle:lightingInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Lighting Information"@en . ### https://w3id.org/catenax/ontology/vehicle#listPrice cx-vehicle:listPrice rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:integer ; rdfs:seeAlso ; skos:altLabel "MSRP"@en , "UPE"@de , "UVP"@de , "manufacturer's suggested retail price"@en , "unverbindliche Preisempfehlung"@de , "unverbindlicher Verkaufspreis"@de ; skos:prefLabel "List Price"@en , "Listenpreis"@de . ### https://w3id.org/catenax/ontology/vehicle#location cx-vehicle:location rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:stateInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:prefLabel "Fahrzeugstandort"@de , "Vehicle Location"@en . ### https://w3id.org/catenax/ontology/vehicle#manufacturerKeyNumber cx-vehicle:manufacturerKeyNumber rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:registrationInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:altLabel "HSN"@de , "Herstellerschlüsselnummer"@de ; skos:definition "4-digit numeric code to identify the vehicle manufacturer that is given in the vehicle license."@en ; skos:example "BMW: 0005"@en ; skos:prefLabel "Herstellerschlüsselnummer"@de , "Manufacturer Key Number"@en . ### https://w3id.org/catenax/ontology/vehicle#maxAxleLoad cx-vehicle:maxAxleLoad rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso ; skos:note "in kilogramms"@en ; skos:prefLabel "Max Axle Load"@en , "max. Achslast"@de . ### https://w3id.org/catenax/ontology/vehicle#maxPayload cx-vehicle:maxPayload rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:payload ; skos:definition "The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle."@en ; skos:example "100"@en ; skos:note "in kilogramms"@en ; skos:prefLabel "Max Payload"@en . ### https://w3id.org/catenax/ontology/vehicle#maxSpeed cx-vehicle:maxSpeed rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:performanceInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso schema:speed ; skos:altLabel "top speed"@en ; skos:definition "The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range (indicated by maxValue should be the maximum speed achievable under regular conditions."@en ; skos:example "250"@en ; skos:note "in km/h"@en ; skos:prefLabel "Höchst­geschwindigkeit"@de , "Vehicle Max Speed"@en . ### https://w3id.org/catenax/ontology/vehicle#maxTowingCapacity cx-vehicle:maxTowingCapacity rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso ; skos:example "1300"@en ; skos:note "in kilogramms"@en ; skos:prefLabel "Anhängelast"@de , "Max Towing Capacity"@en . ### https://w3id.org/catenax/ontology/vehicle#mileage cx-vehicle:mileage rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:stateInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso schema:mileageFromOdometer ; skos:definition "The current mileage of the vehicle in km."@en ; skos:example "1000"@en ; skos:note "in kilometers"@en ; skos:prefLabel "Kilometerstand"@de , "Vehicle Mileage"@en . ### https://w3id.org/catenax/ontology/vehicle#model cx-vehicle:model rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso , schema:ProductModel , ; skos:altLabel "base model"@en ; skos:example "320"@en , "C220"@en , "Golf"@en , "Polo"@en ; skos:prefLabel "Fahrzeugmodell"@de , "Model"@en . ### https://w3id.org/catenax/ontology/vehicle#modelArchitecture cx-vehicle:modelArchitecture rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:prefLabel "Fahrzeugarchitektur"@de , "Vehicle Model Architecture"@en . ### https://w3id.org/catenax/ontology/vehicle#modelEndOfProduction cx-vehicle:modelEndOfProduction rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:date ; skos:example "present"@en ; skos:prefLabel "Produktionsende"@de , "Vehicle Model End Of Production"@en . ### https://w3id.org/catenax/ontology/vehicle#modelGeneration cx-vehicle:modelGeneration rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:example "1"@en , "2"@en , "3"@en ; skos:prefLabel "Fahrzeuggeneration"@de , "Vehicle Model Generation"@en . ### https://w3id.org/catenax/ontology/vehicle#modelInformation cx-vehicle:modelInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Model Information"@en . ### https://w3id.org/catenax/ontology/vehicle#modelSeries cx-vehicle:modelSeries rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:ProductGroup ; skos:altLabel "Baureihe"@de , "Handelsbezeichnung"@de , "Modell"@de , "Modellbaureihe"@de , "Verkaufsbezeichnung"@de , "model range"@en , "range"@en , "sales designation"@en , "sales series"@en , "series"@en ; skos:definition "customer series number"@en ; skos:example "3er"@en , "C-Klasse"@en , "Golf"@en , "Polo"@en ; skos:prefLabel "Model Series"@en , "Vertriebsbaureihe"@de . ### https://w3id.org/catenax/ontology/vehicle#modelStartOfProduction cx-vehicle:modelStartOfProduction rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:date ; rdfs:seeAlso schema:vehicleModelDate ; skos:definition "The release date of a vehicle model ."@en ; skos:prefLabel "Produktionsbeginn"@de , "Vehicle Model Start Of Production"@en . ### https://w3id.org/catenax/ontology/vehicle#modelVariant cx-vehicle:modelVariant rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso , ; skos:altLabel "Modellausführung"@de , "model version"@en , "trim"@en , "trim level"@en ; skos:definition "specification of the vehicle model"@en ; skos:example "740Li"@en , "GLK"@en , "GLS"@en , "Golf GTI"@en ; skos:prefLabel "Model Variant"@en , "Modellvariante"@de . ### https://w3id.org/catenax/ontology/vehicle#name cx-vehicle:name rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:range xsd:string . ### https://w3id.org/catenax/ontology/vehicle#number cx-vehicle:number rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:partInformation ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:altLabel "Bauteilnummer"@de , "PN"@en , "component number"@en , "part number"@en ; skos:prefLabel "Number"@en , "Sachnummer"@de . ### https://w3id.org/catenax/ontology/vehicle#numberOfAirbags cx-vehicle:numberOfAirbags rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:safetyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso schema:numberOfAirbags ; skos:definition "The number or type of airbags in the vehicle."@en ; skos:example "1"@en , "2"@en , "3"@en ; skos:prefLabel "Anzahl der Airbags"@de , "Number Of Airbags"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfAxles cx-vehicle:numberOfAxles rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:chassisInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso schema:numberOfAxles ; skos:definition "The number of axles."@en ; skos:example "2"@en , "3"@en ; skos:prefLabel "Anzahl der Achsen"@de , "Number Of Axles"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfCylinders cx-vehicle:numberOfCylinders rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:altLabel "Zylinderanzahl"@de ; skos:example "12"@en , "3"@en , "4"@en , "5"@en , "6"@en , "8"@en ; skos:prefLabel "Anzahl der Zylinder"@de , "Number Of Cylinders"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfDoors cx-vehicle:numberOfDoors rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso schema:numberOfDoors ; skos:definition "The number of doors."@en ; skos:example "2"@en , "4"@en ; skos:prefLabel "Anzahl der Türen"@de , "Number Of Doors"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfDriveAxles cx-vehicle:numberOfDriveAxles rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:chassisInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:example "1"@en , "2"@en ; skos:prefLabel "Anzahl der Antriebsachsen"@de , "Number Of Drive Axles"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfForwardGears cx-vehicle:numberOfForwardGears rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:powertrainInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso schema:numberOfForwardGears ; skos:altLabel "number of speeds"@en ; skos:definition "The total number of forward gears available for the transmission system of the vehicle."@en ; skos:example "5"@en , "6"@en , "8"@en ; skos:prefLabel "Anzahl der Gänge"@de , "Number Of Forward Gears"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfPassengers cx-vehicle:numberOfPassengers rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:interiorInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:altLabel "passenger capacity"@en ; skos:example "2"@en , "4"@en , "5"@en , "7"@en ; skos:note "including driver"@en ; skos:prefLabel "Anzahl der Passagiere"@de , "Number Of Passengers"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfSeatRows cx-vehicle:numberOfSeatRows rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:interiorInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:example "2"@en , "3"@en ; skos:prefLabel "Anzahl der Sitzreihen"@de , "Number Of Seat Rows"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfSeats cx-vehicle:numberOfSeats rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:interiorInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso schema:seatingCapacity , schema:vehicleSeatingCapacity ; skos:altLabel "Anzahl der Sitzplätze"@de ; skos:definition "The number of persons that can be seated , both in terms of the physical space available, and in terms of limitations set by law."@en ; skos:example "2"@en , "4"@en , "5"@en , "7"@en ; skos:prefLabel "Anzahl der Sitze"@de , "Number Of Seats"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfStandingPlaces cx-vehicle:numberOfStandingPlaces rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:interiorInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso ; skos:altLabel "standing capacity"@en ; skos:example "1"@en , "2"@en , "3"@en ; skos:prefLabel "Anzahl der Stehplätze"@de , "Number Of Standing Places"@en . ### https://w3id.org/catenax/ontology/vehicle#numberOfValves cx-vehicle:numberOfValves rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:prefLabel "Number Of Valves"@en . ### https://w3id.org/catenax/ontology/vehicle#operatingHours cx-vehicle:operatingHours rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:stateInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:note "in hours"@en ; skos:prefLabel "Fahrzeugbetriebsstunden"@de , "Vehicle Operating Hours"@en . ### https://w3id.org/catenax/ontology/vehicle#orderDate cx-vehicle:orderDate rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:date ; skos:definition "The date the item was ordered by the owner."@en ; skos:prefLabel "Bestelldatum"@de , "Order Date"@en . ### https://w3id.org/catenax/ontology/vehicle#partInformation cx-vehicle:partInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Part ; skos:prefLabel "Part Information"@en . ### https://w3id.org/catenax/ontology/vehicle#passengerVolume cx-vehicle:passengerVolume rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; skos:note "in liters"@en ; skos:prefLabel "Passenger Volume"@en . ### https://w3id.org/catenax/ontology/vehicle#performanceInformation cx-vehicle:performanceInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Performance Information"@en . ### https://w3id.org/catenax/ontology/vehicle#powertrainInformation cx-vehicle:powertrainInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Part , cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Powertrain Information"@en . ### https://w3id.org/catenax/ontology/vehicle#powertrainLayout cx-vehicle:powertrainLayout rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:powertrainInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:definition "is defined by the location of the engine and drive wheels"@en ; skos:example "front-wheel-drive"@en , "rear-engine"@en ; skos:prefLabel "Powertrain Layout"@en . ### https://w3id.org/catenax/ontology/vehicle#previousVehicleModel cx-vehicle:previousVehicleModel rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:modelInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:prefLabel "Previous Vehicle Model"@en , "Vorgängermodell"@de . ### https://w3id.org/catenax/ontology/vehicle#productionDate cx-vehicle:productionDate rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:date ; rdfs:seeAlso schema:productionDate ; skos:definition "The date of production of the item."@en ; skos:prefLabel "Production Date"@en , "Produktionsdatum"@de . ### https://w3id.org/catenax/ontology/vehicle#productionInformation cx-vehicle:productionInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; skos:prefLabel "Production Information"@en . ### https://w3id.org/catenax/ontology/vehicle#productionYear cx-vehicle:productionYear rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:integer ; skos:prefLabel "Baujahr"@de , "Production Year"@en . ### https://w3id.org/catenax/ontology/vehicle#purchaseDate cx-vehicle:purchaseDate rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:date ; rdfs:seeAlso schema:purchaseDate ; skos:definition "The date the item was purchased by the owner."@en ; skos:prefLabel "Kaufdatum"@de , "Purchase Date"@en . ### https://w3id.org/catenax/ontology/vehicle#purchasePrice cx-vehicle:purchasePrice rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:range xsd:integer ; skos:prefLabel "Kaufpreis"@de , "Purchase Price"@en . ### https://w3id.org/catenax/ontology/vehicle#range cx-vehicle:range rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:performanceInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso ; skos:example "650"@en ; skos:note "in kilometers"@en ; skos:prefLabel "Reichweite"@de , "Vehicle Range"@en . ### https://w3id.org/catenax/ontology/vehicle#rangeWltp cx-vehicle:rangeWltp rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:performanceInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:example "650"@en ; skos:note "in kilometers"@en ; skos:prefLabel "Vehicle Range Wltp"@en . ### https://w3id.org/catenax/ontology/vehicle#rearSpringType cx-vehicle:rearSpringType rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:suspensionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "coil"@en ; skos:prefLabel "Rear Spring Type"@en . ### https://w3id.org/catenax/ontology/vehicle#rearSuspension cx-vehicle:rearSuspension rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:suspensionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:example "independent"@en ; skos:prefLabel "Hinterradaufhängung"@de , "Rear Suspension"@en . ### https://w3id.org/catenax/ontology/vehicle#registrationAuthority cx-vehicle:registrationAuthority rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:registrationInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:prefLabel "Vehicle Registration Authority"@en . ### https://w3id.org/catenax/ontology/vehicle#registrationDate cx-vehicle:registrationDate rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:registrationInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:date ; rdfs:seeAlso schema:dateVehicleFirstRegistered ; skos:definition "The date of the first registration of the vehicle with the respective public authorities."@en ; skos:prefLabel "Vehicle Registration Date"@en . ### https://w3id.org/catenax/ontology/vehicle#registrationInformation cx-vehicle:registrationInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; rdfs:seeAlso , , ; skos:note "EU directive 1999/37/EC"@en ; skos:prefLabel "Vehicle Registration Information"@en . ### https://w3id.org/catenax/ontology/vehicle#registrationLocation cx-vehicle:registrationLocation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:registrationInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:prefLabel "Vehicle Registration Location"@en . ### https://w3id.org/catenax/ontology/vehicle#registrationOwner cx-vehicle:registrationOwner rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:registrationInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:definition "Full name of owner."@en ; skos:prefLabel "Vehicle Registration Owner"@en . ### https://w3id.org/catenax/ontology/vehicle#registrationPlate cx-vehicle:registrationPlate rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:registrationInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:altLabel "Kfz-Kennzeichen"@de , "Kraftfahrzeugkennzeichen"@de , "Nummernschild"@de , "licence plate"@en , "license plate"@en , "number plate"@en , "vehicle registration number"@en ; skos:prefLabel "Kennzeichen"@de , "License plate"@en . ### https://w3id.org/catenax/ontology/vehicle#rim cx-vehicle:rim rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:suspensionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:prefLabel "Rim"@en . ### https://w3id.org/catenax/ontology/vehicle#roadNoise cx-vehicle:roadNoise rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:performanceInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso ; skos:example "71"@en ; skos:note "in dB"@en ; skos:prefLabel "Fahrgeräusch"@de , "Road Noise"@en . ### https://w3id.org/catenax/ontology/vehicle#safetyInformation cx-vehicle:safetyInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Safety Information"@en . ### https://w3id.org/catenax/ontology/vehicle#specialUsage cx-vehicle:specialUsage rdf:type owl:DatatypeProperty ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:vehicleSpecialUsage ; skos:definition "Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale."@en ; skos:prefLabel "Vehicle Special Usage"@en . ### https://w3id.org/catenax/ontology/vehicle#stateDateTime cx-vehicle:stateDateTime rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:stateInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:dateTime ; skos:prefLabel "Vehicle State Date Time"@en . ### https://w3id.org/catenax/ontology/vehicle#stateInformation cx-vehicle:stateInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle State"@en . ### https://w3id.org/catenax/ontology/vehicle#stationaryNoise cx-vehicle:stationaryNoise rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:performanceInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; rdfs:seeAlso ; skos:example "71"@en ; skos:note "in dB"@en ; skos:prefLabel "Standgeräusch"@de , "Stationary Noise"@en . ### https://w3id.org/catenax/ontology/vehicle#steeringType cx-vehicle:steeringType rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:powertrainInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:example "power steering"@en , "rack and pinion"@en ; skos:prefLabel "Steering Type"@en . ### https://w3id.org/catenax/ontology/vehicle#steeringWheelPosition cx-vehicle:steeringWheelPosition rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:powertrainInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:steeringPosition ; skos:definition "The position of the steering wheel or similar device ."@en ; skos:example "left"@en , "right"@en ; skos:prefLabel "Steering Wheel Position"@en . ### https://w3id.org/catenax/ontology/vehicle#stroke cx-vehicle:stroke rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:engineInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; skos:note "in mm"@en ; skos:prefLabel "Stroke"@en . ### https://w3id.org/catenax/ontology/vehicle#supplier cx-vehicle:supplier rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; rdfs:domain cx-vehicle:Part; rdfs:range rdfs:Resource ; skos:prefLabel "Part Supplier"@en . ### https://w3id.org/catenax/ontology/vehicle#suspensionInformation cx-vehicle:suspensionInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Part , cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Suspension Information"@en . ### https://w3id.org/catenax/ontology/vehicle#tire cx-vehicle:tire rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:suspensionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:altLabel "Bereifung"@de , "tyre"@en ; skos:example "225/45R17"@en ; skos:prefLabel "Tire"@en . ### https://w3id.org/catenax/ontology/vehicle#tongueWeight cx-vehicle:tongueWeight rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso , schema:tongueWeight ; skos:definition "The permitted vertical load of a trailer attached to the vehicle. Also referred to as Tongue Load Rating or Vertical Load Rating"@en ; skos:note "in kilogramms"@en ; skos:prefLabel "Anhängelast"@de , "Tongue Weight"@en . ### https://w3id.org/catenax/ontology/vehicle#trailerWeight cx-vehicle:trailerWeight rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:trailerWeight ; skos:definition "The permitted weight of a trailer attached to the vehicle."@en ; skos:note "in kilogramms"@en ; skos:prefLabel "Trailer Weight"@en . ### https://w3id.org/catenax/ontology/vehicle#transmission cx-vehicle:transmission rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:powertrainInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso schema:vehicleTransmission ; skos:definition "The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component ."@en ; skos:example "automatic"@en , "manual"@en ; skos:prefLabel "Vehicle Transmission"@en . ### https://w3id.org/catenax/ontology/vehicle#trunkVolume cx-vehicle:trunkVolume rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; skos:altLabel "trunk capacity"@en ; skos:note "in liters"@en ; skos:prefLabel "Trunk Volume"@en . ### https://w3id.org/catenax/ontology/vehicle#turningRadius cx-vehicle:turningRadius rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso ; skos:altLabel "turning diameter"@en ; skos:note "in meters"@en ; skos:prefLabel "Vehicle Turning Radius"@en . ### https://w3id.org/catenax/ontology/vehicle#typeCode cx-vehicle:typeCode rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:altLabel "Fahrzeugtyp"@de , "Typ-Schlüssel"@de , "Typenschlüssel"@de , "model type code"@en ; skos:definition "Is a unique identifier for vehicle types."@en ; skos:prefLabel "Typschlüssel"@de , "Vehicle Type Code"@en . ### https://w3id.org/catenax/ontology/vehicle#typeCodeNumber cx-vehicle:typeCodeNumber rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:registrationInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso ; skos:altLabel "TSN"@de , "Typschlüsselnummer"@de ; skos:definition "8-digit alphanumeric code to identify the vehicle model that is given in the vehicle license."@en ; skos:prefLabel "Typschlüsselnummer"@de , "Vehicle Type Code Number"@en . ### https://w3id.org/catenax/ontology/vehicle#vehicleIdentificationNumber cx-vehicle:vehicleIdentificationNumber rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; rdfs:seeAlso , schema:vehicleIdentificationNumber ; skos:altLabel "FIN"@de , "Fahrgestellnummer"@de , "Fahrzeugidentifikationsnummer"@de , "VIN"@en , "vehicle identification number"@en ; skos:definition "The Vehicle Identification Number is a unique serial number used by the automotive industry to identify individual motor vehicles."@en ; skos:note "17-digit unique identifier"@en ; skos:prefLabel "Fahrzeug-Identifizierungsnummer"@de , "Vehicle Identification Number"@en . ### https://w3id.org/catenax/ontology/vehicle#version cx-vehicle:version rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:partInformation ; rdfs:range xsd:string ; skos:altLabel "Versionsstand"@de , "Änderungsindex"@de ; skos:prefLabel "Bauteil Version"@de , "Version"@en . ### https://w3id.org/catenax/ontology/vehicle#warrantyInformation cx-vehicle:warrantyInformation rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-vehicle:Vehicle ; skos:prefLabel "Vehicle Warranty Information"@en . ### https://w3id.org/catenax/ontology/vehicle#warrantyMaxDuration cx-vehicle:warrantyMaxDuration rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:warrantyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:example "48"@en ; skos:note "in months"@en ; skos:prefLabel "Warranty Max Duration"@en . ### https://w3id.org/catenax/ontology/vehicle#warrantyMaxMileage cx-vehicle:warrantyMaxMileage rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:warrantyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:integer ; skos:example "50000"@en ; skos:note "in kilometers"@en ; skos:prefLabel "Warranty Max Mileage"@en . ### https://w3id.org/catenax/ontology/vehicle#weight cx-vehicle:weight rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso , schema:weight ; skos:example "1500"@en ; skos:note "in kilogramms"@en ; skos:prefLabel "Fahrzeuggewicht"@de , "Vehicle Weight"@en . ### https://w3id.org/catenax/ontology/vehicle#weightTotal cx-vehicle:weightTotal rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:cargoInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:weightTotal ; skos:definition "The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle."@en ; skos:note "in kilogramms"@en ; skos:prefLabel "Weight Total"@en . ### https://w3id.org/catenax/ontology/vehicle#wheelbase cx-vehicle:wheelbase rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso , schema:wheelbase ; skos:altLabel "wheel base"@en ; skos:definition "The distance between the centers of the front and rear wheels."@en ; skos:note "in cm"@en ; skos:prefLabel "Radstand"@de , "Vehicle Wheelbase"@en . ### https://w3id.org/catenax/ontology/vehicle#width cx-vehicle:width rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:bodyInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:double ; rdfs:seeAlso schema:width ; skos:note "in cm"@en ; skos:prefLabel "Vehicle Width"@en . ### https://w3id.org/catenax/ontology/vehicle#worldManufacturer cx-vehicle:manufacturer rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range rdfs:Resource ; skos:altLabel "OEM"@en , "Vehicle Manufacturer"@en ; skos:definition "The manufacturer of the vehicle."@en ; skos:prefLabel "Hersteller"@de, "Manufacturer"@en . ### https://w3id.org/catenax/ontology/vehicle#worldManufacturerCountry cx-vehicle:worldManufacturerCountry rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:definition "The first 2 digits of the VIN."@en ; skos:example "Germany"@en ; skos:prefLabel "World Manufacturer Country"@en . ### https://w3id.org/catenax/ontology/vehicle#worldManufacturerId cx-vehicle:worldManufacturerId rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:altLabel "WMI"@en , "world manufacturer identifier"@en ; skos:definition "The first 3 digits of the VIN that uniquely identifies the manufacturer of a vehicle."@en ; skos:prefLabel "World Manufacturer Id"@en . ### https://w3id.org/catenax/ontology/vehicle#worldManufacturerName cx-vehicle:worldManufacturerName rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:example "Audi"@en , "BMW"@en , "Mercedes"@en ; skos:prefLabel "World Manufacturer Name"@en . ### https://w3id.org/catenax/ontology/vehicle#worldManufacturerRegion cx-vehicle:worldManufacturerRegion rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf cx-vehicle:productionInformation ; rdfs:domain cx-vehicle:Vehicle ; rdfs:range xsd:string ; skos:definition "The first digit of the VIN."@en ; skos:example "Europe"@en , "North America"@en ; skos:prefLabel "World Manufacturer Region"@en . ################################################################# # Classes ################################################################# ### https://w3id.org/catenax/ontology/core#ConceptualObject cx-core:ConceptualObject rdf:type owl:Class ; dc:description "This class includes non-material products, human-produced data related to physical objects. The production of such information may have been supported by the use of technical tools."@en ; rdfs:label "Conceptual Object"@en . ### https://w3id.org/catenax/ontology/core#PhysicalObject cx-core:PhysicalObject rdf:type owl:Class ; dc:description "This class includes objects of a material nature, which are documentation units and have physical boundaries."@en ; rdfs:label "Physical Object"@en . ### https://w3id.org/catenax/ontology/vehicle#EClassType cx-vehicle:EClassType rdf:type owl:Class ; rdfs:subClassOf cx-core:ConceptualObject . ### https://w3id.org/catenax/ontology/vehicle#Part cx-vehicle:Part rdf:type owl:Class ; rdfs:subClassOf cx-core:PhysicalObject ; owl:disjointWith cx-vehicle:Vehicle ; skos:definition "A part in the automotive context is a component of a vehicle. Parts may have sub-parts that perform specific sub-functions."@en ; skos:prefLabel "Part"@en . ### https://w3id.org/catenax/ontology/vehicle#Vehicle cx-vehicle:Vehicle rdf:type owl:Class ; rdfs:subClassOf cx-core:PhysicalObject ; rdfs:seeAlso ; skos:altLabel "KFZ"@de , "Kraftfahrzeug"@de , "MFZ"@de , "Motorfahrzeug"@de , "Straßenfahrzeug"@de , "motor vehicle"@en , "motorised vehicle"@en , "road vehicle"@en ; skos:definition "A vehicle is a motor-powered road vehicle that transports people or cargo ."@en ; skos:example "car"@en , "motorcycle"@en , "truck"@en ; skos:note "we include only motorised road vehicles, i.e. we exclude: aircrafts, watercraft, railway vehicle, human powered vehicles"@en ; skos:prefLabel "Fahrzeug"@de , "Vehicle"@en . ### https://w3id.org/catenax/ontology/vehicle#VehicleModel cx-vehicle:VehicleModel rdf:type owl:Class ; rdfs:subClassOf cx-core:ConceptualObject ; skos:altLabel "general information"@en ; skos:prefLabel "Vehicle Model"@en . ### Generated by the OWL API (version 4.5.25.2023-02-15T19:15:49Z) https://github.com/owlcs/owlapi