Skip to content
Snippets Groups Projects
Commit 18178422 authored by Mike de Roode's avatar Mike de Roode
Browse files

Added initial draft of ontology

parent c37dc107
No related branches found
No related tags found
No related merge requests found
# baseURI: http://w3id.org/saref4auto
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix saref4auto: <http://w3id.org/saref4auto#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://w3id.org/saref4auto>
rdf:type owl:Ontology ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
.
saref4auto:Bus
rdf:type owl:Class ;
rdfs:label "Bus"^^xsd:string ;
rdfs:subClassOf saref4auto:Vehicle ;
.
saref4auto:Platoon
rdf:type owl:Class ;
rdfs:label "Platoon"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
.
saref4auto:Sensor
rdf:type rdfs:Class ;
rdfs:label "Sensor"^^xsd:string ;
.
saref4auto:Tractor
rdf:type owl:Class ;
rdfs:label "Tractor"^^xsd:string ;
rdfs:subClassOf saref4auto:Vehicle ;
.
saref4auto:Truck
rdf:type owl:Class ;
rdfs:label "Truck"^^xsd:string ;
rdfs:subClassOf saref4auto:Vehicle ;
.
saref4auto:Vehicle
rdf:type owl:Class ;
rdfs:label "Vehicle"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment