Skip to content

Latest commit

 

History

History
68 lines (43 loc) · 2.74 KB

vehicle_ontology.md

File metadata and controls

68 lines (43 loc) · 2.74 KB

Vehicle Ontology

Title: Vehicle Ontology

Description: Ontology for vehicles in the automotive industry.

Creator: @ZazraltMagic

Contributor: @Joerg-Schulz, @bosserf, @obalandi, @drcgjung

Date: 2023-02-21

Version: 1.11.0

Imports: file:core_ontology.ttl

Link to ontology: https://w3id.org/catenax/ontology/vehicle

classDiagram 
   class PhysicalObject~core~{
   } 
   class Part~vehicle~{
   } 
   class Vehicle~vehicle~{
       mileage integer
       operatingHours integer
       vehicleIdentificationNumber string
   } 
   Vehicle --> Part : hasPart
   Part --> Part : hasSubpart
   Part --|> PhysicalObject
   Vehicle --|> PhysicalObject

Loading

Classes

Name Description Datatype properties Object properties Subclass of
Part A part in the automotive context is a component of a vehicle. Parts may have sub-parts that perform specific sub-functions. hasSubpart , isPartOf , isSubpartOf PhysicalObject
Vehicle A vehicle is a motor-powered road vehicle that transports people or cargo . mileage , operatingHours , vehicleIdentificationNumber hasPart PhysicalObject

Data Properties

Name Description Domain Range Subproperty of
mileage The current mileage of the vehicle in km. Vehicle xsd:integer stateInformation
operatingHours The current operating hours of the vehicle in h. Vehicle xsd:integer stateInformation
vehicleIdentificationNumber The Vehicle Identification Number is a unique serial number used by the automotive industry to identify individual motor vehicles. Vehicle xsd:string

Object Properties

Name Descriptions Domain Range Subproperty of
hasPart Refes to parts of vehicle Vehicle Part
hasSubpart Refes to parts of main vehicle parts. Part Part
isPartOf Inverse of 'hasPart' property. Part Vehicle
isSubpartOf Inverse of 'hasSubpart' property. Part Part