# 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 json: . @prefix rdfs: . @prefix skos: . @prefix schema: . @prefix cx-core: . @prefix cx-vehicle: . @prefix cx-reliability: . @base . rdf:type owl:Ontology ; owl:imports , ; dc:contributor "Jörg Schulz, Rolf Bosse, Oguzhan Balandi " ; dc:creator "Zazralt Magic" ; dc:date "2023-02-21"^^xsd:date ; dc:title "Reliability Ontology"@en ; 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#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/core#hasParticipant cx-core:hasParticipant rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; rdfs:domain cx-core:Activity ; rdfs:range cx-core:Actor ; rdfs:comment "This property describes the active or passive participation of instances of Actors in an Activity." ; rdfs:label "has participant"@en . ### https://w3id.org/catenax/ontology/core#hosts cx-core:hosts rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; rdfs:domain cx-core:Place ; rdfs:range cx-core:Activity . ### https://w3id.org/catenax/ontology/core#involvedIn cx-core:involvedIn rdf:type owl:ObjectProperty ; rdfs:domain cx-core:ConceptualObject , cx-core:PhysicalObject ; rdfs:range cx-core:Activity ; rdfs:comment "This property describes in which activity the physical object is involved."@en ; rdfs:label "involved in"@en . ### https://w3id.org/catenax/ontology/core#participatesIn cx-core:participatesIn rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; rdfs:domain cx-core:Actor ; rdfs:range cx-core:Activity ; rdfs:comment "Inverse of 'has participant'"@en ; rdfs:label "participates in"@en . ### https://w3id.org/catenax/ontology/core#refersToConceptualObject cx-core:refersToConceptualObject rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; rdfs:domain cx-core:Activity ; rdfs:range cx-core:ConceptualObject ; rdfs:comment "This property refers to actively or passively used conceptual objects in an Activity."@en ; rdfs:label "refers to conceptual object"@en . ### https://w3id.org/catenax/ontology/core#refersToPhysicalObject cx-core:refersToPhysicalObject rdf:type owl:ObjectProperty ; rdfs:subPropertyOf owl:topObjectProperty ; rdfs:domain cx-core:Activity ; rdfs:range cx-core:ConceptualObject ; rdfs:comment "This property refers to actively or passively used physical objects in an Activity."@en ; rdfs:label "refers to physical object"@en . ### https://w3id.org/catenax/ontology/core#relatedToPlace cx-core:relatedToPlace rdf:type owl:ObjectProperty ; rdfs:domain cx-core:Actor ; rdfs:range cx-core:Place ; rdfs:label "This property describes that an actor has a relationship to a particular place, such as reside, own, or manage, etc."@en , "related to place"@en . ### https://w3id.org/catenax/ontology/core#takesPlaceAt cx-core:takesPlaceAt rdf:type owl:ObjectProperty ; rdfs:domain cx-core:Activity ; rdfs:range cx-core:Place ; rdfs:comment "This property describes the spatial location of an activity."@en ; rdfs:label "takes place at"@en . ### https://w3id.org/catenax/ontology/reliability#analysedObject cx-reliability:analysedObject rdf:type owl:ObjectProperty ; rdfs:subPropertyOf cx-core:refersToPhysicalObject ; rdfs:domain cx-reliability:Analysis ; rdfs:range cx-core:PhysicalObject ; skos:prefLabel "analysed object"@en . ### https://w3id.org/catenax/ontology/reliability#analysedPart cx-reliability:analysedPart rdf:type owl:ObjectProperty ; rdfs:subPropertyOf cx-reliability:analysedObject ; rdfs:domain cx-reliability:Analysis ; rdfs:range cx-vehicle:Part ; skos:prefLabel "analysed Part"@en . ### https://w3id.org/catenax/ontology/reliability#analysedVehicle cx-reliability:analysedVehicle rdf:type owl:ObjectProperty ; rdfs:subPropertyOf cx-reliability:analysedObject ; rdfs:domain cx-reliability:Analysis ; rdfs:range cx-vehicle:Vehicle ; skos:prefLabel "analysed Vehicle"@en . ### https://w3id.org/catenax/ontology/reliability#channel cx-reliability:channel rdf:type owl:ObjectProperty ; rdfs:domain cx-reliability:LoadSpectrum; rdfs:range cx-reliability:LoadSpectrumChannel . ### https://w3id.org/catenax/ontology/reliability#class cx-reliability:class rdf:type owl:ObjectProperty ; rdfs:domain cx-reliability:LoadSpectrum ; rdfs:range cx-reliability:LoadSpectrumClass . ### https://w3id.org/catenax/ontology/reliability#result cx-reliability:result rdf:type owl:ObjectProperty ; rdfs:subPropertyOf cx-core:refersToConceptualObject ; rdfs:domain cx-reliability:Analysis ; rdfs:range cx-reliability:AnalysisResult ; skos:prefLabel "result"@en . ### https://w3id.org/catenax/ontology/reliability#values cx-reliability:hasValues rdf:type owl:ObjectProperty ; rdfs:domain cx-reliability:LoadSpectrum ; rdfs:range cx-reliability:LoadSpectrumValues . ################################################################# # Data properties ################################################################# ### https://w3id.org/catenax/ontology/core#endDateTime cx-core:endDateTime rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-core:Activity ; rdfs:range xsd:dateTime ; rdfs:comment "End time of the activity."@en ; rdfs:label "end dateTime"@en . ### https://w3id.org/catenax/ontology/core#id cx-core:id rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain owl:Thing ; rdfs:range xsd:string . ### https://w3id.org/catenax/ontology/core#name cx-core:name rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain owl:Thing ; rdfs:range xsd:string . ### https://w3id.org/catenax/ontology/core#role cx-core:role rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain owl:Thing ; rdfs:range xsd:string . ### https://w3id.org/catenax/ontology/core#startDateTime cx-core:startDateTime rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-core:Activity ; rdfs:range xsd:dateTime ; rdfs:comment "Start time of the activity."@en ; rdfs:label "start dateTime"@en . ### https://w3id.org/catenax/ontology/reliability#channel cx-reliability:channels rdf:type owl:DatatypeProperty ; rdfs:range json:Object . ### https://w3id.org/catenax/ontology/reliability#countingValue cx-reliability:countingValue rdf:type owl:DatatypeProperty ; rdfs:domain cx-reliability:LoadSpectrumValues ; rdfs:range xsd:string ; skos:prefLabel "Load Spectrum Counting Value"@en . ### https://w3id.org/catenax/ontology/reliability#countingMethod cx-reliability:countingMethod rdf:type owl:DatatypeProperty ; rdfs:domain cx-reliability:LoadSpectrumValues ; rdfs:range xsd:string ; skos:prefLabel "Load Spectrum Counting Method"@en . ### https://w3id.org/catenax/ontology/reliability#countingUnit cx-reliability:countingUnit rdf:type owl:DatatypeProperty ; rdfs:domain cx-reliability:LoadSpectrumValues ; rdfs:range xsd:string ; skos:example "frequency"@en , "seconds"@en ; skos:prefLabel "Load Spectrum Counting Unit"@en . ### https://w3id.org/catenax/ontology/reliability#datetime cx-reliability:datetime rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:LoadSpectrum ; rdfs:range xsd:dateTime ; skos:definition "start of the measurement of load spectrum"@en ; skos:prefLabel "Lastkollektiv Startzeitpunkt"@de , "Load Spectrum Start Datetime"@en . ### https://w3id.org/catenax/ontology/reliability#description cx-reliability:description rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:LoadSpectrum ; rdfs:range xsd:string ; skos:definition "details about the load spectrum: who, what, where, when, how?"@en ; skos:example "gear"@en , "oil"@en ; skos:prefLabel "Lastkollektiv Beschreibung"@de , "Load Spectrum Description"@en . ### https://w3id.org/catenax/ontology/reliability#endDatetime cx-reliability:endDatetime rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:LoadSpectrum ; rdfs:range xsd:dateTime ; skos:definition "end of the measurement of load spectrum"@en ; skos:prefLabel "Lastkollektiv Endzeitpunkt"@de , "Load Spectrum End Datetime"@en . ### https://w3id.org/catenax/ontology/reliability#id cx-reliability:id rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:LoadSpectrum ; rdfs:range xsd:string ; skos:prefLabel "Lastkollektiv Id"@de , "Load Spectrum Id"@en . ### https://w3id.org/catenax/ontology/reliability#index cx-reliability:index rdf:type owl:DatatypeProperty ; rdfs:domain cx-reliability:LoadSpectrumValues ; rdfs:range xsd:string ; skos:example "2"@en , "3]"@en , "[1"@en ; skos:prefLabel "Load Spectrum Channel Index"@en . ### https://w3id.org/catenax/ontology/reliability#lowerLimit cx-reliability:lowerLimit rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:LoadSpectrumChannel ; rdfs:range xsd:float ; skos:example "-40"@en ; skos:prefLabel "Load Spectrum Channel Lower Limit"@en . ### https://w3id.org/catenax/ontology/reliability#mileageOfVehicle cx-reliability:mileageOfVehicle rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:Analysis ; rdfs:range xsd:integer ; skos:prefLabel "Mileage of Vehicle"@en . ### https://w3id.org/catenax/ontology/reliability#name cx-reliability:name rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:LoadSpectrum , cx-reliability:LoadSpectrumChannel ; rdfs:range xsd:string ; skos:example "rotational speed"@en ; skos:prefLabel "Lastkollektiv Name"@de , "Load Spectrum Name"@en . ### https://w3id.org/catenax/ontology/reliability#numberOfBins cx-reliability:numberOfBins rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:LoadSpectrumChannel ; rdfs:range xsd:integer ; skos:example "52"@en ; skos:prefLabel "Load Spectrum Channel Number Of Bins"@en . ### https://w3id.org/catenax/ontology/reliability#operatingHoursOfPart cx-reliability:operatingHoursOfPart rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:Analysis ; rdfs:range xsd:float ; skos:prefLabel "operating Hours of Part"@en . ### https://w3id.org/catenax/ontology/reliability#operatingHoursOfVehicle cx-reliability:operatingHoursOfVehicle rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:Analysis ; rdfs:range xsd:float ; skos:prefLabel "operating Hours of Vehicle"@en . ### https://w3id.org/catenax/ontology/reliability#type cx-reliability:type rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:LoadSpectrum , cx-reliability:LoadSpectrumChannel ; rdfs:range xsd:string ; skos:example "count"@en , "sum"@en ; skos:prefLabel "Lastkollektivtyp"@de , "Load Spectrum Type"@en . ### https://w3id.org/catenax/ontology/reliability#unit cx-reliability:unit rdf:type owl:DatatypeProperty ; rdfs:domain cx-reliability:LoadSpectrumChannel ; rdfs:range xsd:string ; skos:prefLabel "Load Spectrum Channel Unit"@en . ### https://w3id.org/catenax/ontology/reliability#upperLimit cx-reliability:upperLimit rdf:type owl:DatatypeProperty ; rdfs:subPropertyOf owl:topDataProperty ; rdfs:domain cx-reliability:LoadSpectrumChannel ; rdfs:range xsd:float ; skos:example "220"@en ; skos:prefLabel "Load Spectrum Channel Upper Limit"@en . ### https://w3id.org/catenax/ontology/reliability#values cx-reliability:values rdf:type owl:DatatypeProperty ; rdfs:range json:Object . ### https://w3id.org/catenax/ontology/reliability#classes cx-reliability:classes rdf:type owl:DatatypeProperty ; rdfs:range json:Object . ################################################################# # Classes ################################################################# ### https://w3id.org/catenax/ontology/core#Activity cx-core:Activity rdf:type owl:Class ; owl:disjointUnionOf ( cx-core:Actor cx-core:Address cx-core:ConceptualObject cx-core:PhysicalObject cx-core:Place ) ; rdfs:comment "This class comprises actions intentionally carried out by instances of Actor that result in changes of state in physical and conceptual objects."@en . ### https://w3id.org/catenax/ontology/core#Actor cx-core:Actor rdf:type owl:Class ; dc:description "This class comprises organization or people, either individually or in groups, who have the potential to perform intentional actions of kinds for which someone may be held responsible." . ### https://w3id.org/catenax/ontology/core#Address cx-core:Address rdf:type owl:Class . ### 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/core#Place cx-core:Place rdf:type owl:Class ; rdfs:comment "The class Place is determined by reference to the position of objects such as buildings, cities, or special geographic markers."@en . ### https://w3id.org/catenax/ontology/reliability#Analysis cx-reliability:Analysis rdf:type owl:Class ; rdfs:subClassOf cx-core:Activity . ### https://w3id.org/catenax/ontology/reliability#AnalysisResult cx-reliability:AnalysisResult rdf:type owl:Class ; rdfs:subClassOf cx-core:ConceptualObject ; skos:prefLabel "Analysis Result"@en . ### https://w3id.org/catenax/ontology/reliability#LoadSpectrum cx-reliability:LoadSpectrum rdf:type owl:Class ; rdfs:subClassOf cx-reliability:AnalysisResult ; rdfs:seeAlso , ; skos:altLabel "load collective"@en ; skos:definition "Load spectrum is a 2d histogram that contains the load history of a vehicle, i.e. how a vehicle was used, for a given time period."@en ; skos:example "force"@en , "tension"@en , "torque"@en ; skos:prefLabel "Lastkollektiv"@de , "Load Spectrum"@en . ### https://w3id.org/catenax/ontology/reliability#LoadSpectrumAnalysis cx-reliability:LoadSpectrumAnalysis rdf:type owl:Class ; rdfs:subClassOf cx-reliability:OnBoardTelematics ; skos:prefLabel "Load Spectrum Analysis"@en . ### https://w3id.org/catenax/ontology/reliability#LoadSpectrumChannel cx-reliability:LoadSpectrumChannel rdf:type owl:Class ; rdfs:subClassOf cx-reliability:AnalysisResult ; skos:altLabel "header"@en ; skos:definition "The channel contains information about the axis of the 1d or 2d histogram."@en ; skos:prefLabel "Lastkollektiv Kanal"@de , "Load Spectrum Channel"@en . ### https://w3id.org/catenax/ontology/reliability#LoadSpectrumChannel cx-reliability:LoadSpectrumClass rdf:type owl:Class ; rdfs:subClassOf cx-reliability:AnalysisResult ; skos:altLabel "header"@en ; skos:definition "The class contains information about the quantization states related to an axis."@en ; skos:prefLabel "Lastkollektiv Klasse"@de , "Load Spectrum Class"@en . ### https://w3id.org/catenax/ontology/reliability#LoadSpectrumValues cx-reliability:LoadSpectrumValues rdf:type owl:Class ; rdfs:subClassOf cx-reliability:AnalysisResult ; skos:altLabel "body"@en ; skos:definition "The values contains a list or a matrix with count values of the histogram."@en ; skos:prefLabel "Lastkollektiv Werte"@de , "Load Spectrum Values"@en . ### https://w3id.org/catenax/ontology/reliability#OnBoardTelematics cx-reliability:OnBoardTelematics rdf:type owl:Class ; rdfs:subClassOf cx-reliability:Analysis ; skos:prefLabel "Onboard Telematics"@en . ### https://w3id.org/catenax/ontology/reliability#TelematicsResult cx-reliability:TelematicsResult rdf:type owl:Class ; rdfs:subClassOf cx-reliability:AnalysisResult ; skos:prefLabel "Telematics Result"@en . ### https://w3id.org/catenax/ontology/vehicle#Part cx-vehicle:Part rdf:type owl:Class ; rdfs:subClassOf cx-core:PhysicalObject . ### https://w3id.org/catenax/ontology/vehicle#Vehicle cx-vehicle:Vehicle rdf:type owl:Class ; rdfs:subClassOf cx-core:PhysicalObject . ################################################################# # Annotations ################################################################# cx-reliability:channel skos:prefLabel "load spectrum channel"@en . cx-reliability:values skos:example "3"@en , "4]"@en , "[2"@en ; skos:prefLabel "Load Spectrum Channel Values"@en . ################################################################# # General axioms ################################################################# [ rdf:type owl:AllDisjointClasses ; owl:members ( cx-reliability:LoadSpectrum cx-reliability:LoadSpectrumChannel cx-reliability:LoadSpectrumValues ) ] . ### Generated by the OWL API (version 4.5.25.2023-02-15T19:15:49Z) https://github.com/owlcs/owlapi