This repository was archived by the owner on Feb 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathositrace.owl.ttl
More file actions
259 lines (228 loc) · 10.9 KB
/
Copy pathositrace.owl.ttl
File metadata and controls
259 lines (228 loc) · 10.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
@prefix ositrace: <https://w3id.org/ascs-ev/envited-x/ositrace/v5/> .
@prefix envited-x: <https://w3id.org/ascs-ev/envited-x/envited-x/v3/> .
@prefix georeference: <https://w3id.org/ascs-ev/envited-x/georeference/v5/> .
@prefix manifest: <https://w3id.org/ascs-ev/envited-x/manifest/v5/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix gx: <https://w3id.org/gaia-x/development#> .
<https://w3id.org/ascs-ev/envited-x/ositrace/v5> a owl:Ontology ;
rdfs:label "Ontology definition for ositrace"@en ;
rdfs:comment "An ontology with common classes to describe ASAM OSI trace files."@en ;
dcterms:creator "The GAIA-X 4 PLC AAD Project Team"@en ;
dcterms:contributor [
a foaf:Person ;
foaf:name "Pierre R. Mai" ;
org:memberOf <https://pmsf.eu/> ;
] , [
a foaf:Person ;
foaf:name "Carlo van Driesten" ;
org:memberOf <https://www.bmwgroup.com/> ;
] ;
# Permanent identifier for the ontology (not version-specific)
dcterms:identifier <https://w3id.org/ascs-ev/envited-x/ositrace> ;
# GitHub repository where the ontology is maintained
dcterms:source <https://github.com/GAIA-X4PLC-AAD/ontology-management-base> ;
# Specific GitHub release used for publishing this version
prov:wasDerivedFrom <https://github.com/GAIA-X4PLC-AAD/ontology-management-base/releases/tag/v0.1.0> ;
# Versioning
owl:versionIRI <https://w3id.org/ascs-ev/envited-x/ositrace/v5> ;
owl:versionInfo "v5" ;
# Imports strict dependencies
owl:imports <https://w3id.org/ascs-ev/envited-x/envited-x/v3> ,
<https://w3id.org/ascs-ev/envited-x/georeference/v5> ;
# Reference to SHACL validation rules
dcterms:conformsTo <https://w3id.org/ascs-ev/envited-x/ositrace/v5/shapes> ;
# Additional references to the ENVITED Ecosystem Specification (EVES) or related ontologies/specifications
dcterms:references <https://github.com/OpenSimulationInterface> ;
rdfs:seeAlso <https://ascs-ev.github.io/EVES/> .
ositrace:OSITrace a owl:Class ;
rdfs:label "Class definition for OSITrace"@en ;
rdfs:comment "Attributes for ASAM OSI trace files."@en ;
rdfs:subClassOf envited-x:SimulationAsset ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty ositrace:hasDomainSpecification ;
owl:someValuesFrom ositrace:DomainSpecification
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty ositrace:hasResourceDescription ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf ( envited-x:ResourceDescription manifest:Link )
]
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty ositrace:hasManifest ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf ( envited-x:Manifest manifest:Link )
]
] .
ositrace:DomainSpecification a owl:Class ;
rdfs:label "Class definition for DomainSpecification"@en ;
rdfs:comment "OSI trace DomainSpecification containing additional metadata information of the simulation asset."@en ;
rdfs:subClassOf envited-x:DomainSpecification ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty ositrace:hasContent ;
owl:minCardinality 1
] , [
a owl:Restriction ;
owl:onProperty ositrace:hasDataSource ;
owl:minCardinality 1
] , [
a owl:Restriction ;
owl:onProperty ositrace:hasFormat ;
owl:minCardinality 1
] , [
a owl:Restriction ;
owl:onProperty ositrace:hasQuality ;
owl:minCardinality 1
] , [
a owl:Restriction ;
owl:onProperty ositrace:hasQuantity ;
owl:minCardinality 1
] , [
a owl:Restriction ;
owl:onProperty ositrace:hasGeoreference ;
owl:minCardinality 0
] .
ositrace:Content a owl:Class ;
rdfs:label "Class definition for Content"@en ;
rdfs:comment "Attributes for the content of ASAM OSI trace files."@en ;
rdfs:subClassOf envited-x:Content ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty ositrace:hasHostMovingObject ;
owl:cardinality 1
] , [
a owl:Restriction ;
owl:onProperty ositrace:hasTargetMovingObject ;
owl:minCardinality 0
] , [
a owl:Restriction ;
owl:onProperty ositrace:hasEvent ;
owl:minCardinality 0
] .
ositrace:DataSource a owl:Class ;
rdfs:label "Class definition for DataSource"@en ;
rdfs:comment "Attributes for the data source of ASAM OSI trace files."@en ;
rdfs:subClassOf envited-x:DataSource .
ositrace:Format a owl:Class ;
rdfs:label "Class definition for Format"@en ;
rdfs:comment "Attributes for the format of ASAM OSI trace files."@en ;
rdfs:subClassOf envited-x:Format .
ositrace:Quality a owl:Class ;
rdfs:label "Class definition for Quality"@en ;
rdfs:comment "Attributes for the quality of ASAM OSI trace files."@en ;
rdfs:subClassOf envited-x:Quality .
ositrace:Quantity a owl:Class ;
rdfs:label "Class definition for Quantity"@en ;
rdfs:comment "Attributes for the quantity of ASAM OSI trace files."@en ;
rdfs:subClassOf envited-x:Quantity .
ositrace:MovingObject a owl:Class ;
rdfs:label "Class definition for MovingObject"@en ;
rdfs:comment "Attributes for moving objects in ASAM OSI trace files."@en .
ositrace:Event a owl:Class ;
rdfs:label "Class definition for Event"@en ;
rdfs:comment "Attributes for event in ASAM OSI trace files."@en .
#### Object properties
### hasDomainSpecification (ositrace -> DomainSpecification)
ositrace:hasDomainSpecification a owl:ObjectProperty ;
rdfs:label "Object property: hasDomainSpecification"@en ;
rdfs:comment "Links an OSI trace asset to its specific metadata (DomainSpecification), which may contain additional OSI trace-specific attributes."@en ;
rdfs:subPropertyOf envited-x:hasDomainSpecification ;
rdfs:domain ositrace:OSITrace ;
rdfs:range ositrace:DomainSpecification .
### hasResourceDescription (ositrace -> envited-x:ResourceDescription)
ositrace:hasResourceDescription a owl:ObjectProperty ;
rdfs:label "Object property: hasResourceDescription"@en ;
rdfs:comment "Links an OSI trace asset to a standard ResourceDescription instance from envited-x."@en ;
rdfs:subPropertyOf envited-x:hasResourceDescription ;
rdfs:domain ositrace:OSITrace ;
rdfs:range [
a owl:Class ;
owl:unionOf ( envited-x:ResourceDescription manifest:Link )
] .
### hasManifest (ositrace -> envited-x:Manifest or manifest:Link)
ositrace:hasManifest a owl:ObjectProperty ;
rdfs:label "Object property: hasManifest"@en ;
rdfs:comment """
Links an OSI Trace asset to its manifest.
The value can be either:
- an inline envited-x:Manifest node (embedded manifest structure), or
- an manifest:Link node (a link that points via manifest:iri
to an external manifest representation, typically identified by a DID).
"""@en ;
rdfs:subPropertyOf envited-x:hasManifest ;
rdfs:domain ositrace:OSITrace ;
rdfs:range [
a owl:Class ;
owl:unionOf ( envited-x:Manifest manifest:Link )
] .
### hasGeoreference (DomainSpecification -> georeference:Georeference)
ositrace:hasGeoreference a owl:ObjectProperty ;
rdfs:label "Object property: hasGeoreference"@en ;
rdfs:comment "Links a DomainSpecification to a georeference:Georeference describing how the OSI trace is georeferenced."@en ;
rdfs:domain ositrace:DomainSpecification ;
rdfs:range georeference:Georeference .
### hasContent (DomainSpecification -> Content)
ositrace:hasContent a owl:ObjectProperty ;
rdfs:label "Object property: hasContent"@en ;
rdfs:comment "Links a DomainSpecification to an instance of ositrace:Content that describes the OSI trace's content."@en ;
rdfs:subPropertyOf envited-x:hasContent ;
rdfs:domain ositrace:DomainSpecification ;
rdfs:range ositrace:Content .
### hasDataSource (DomainSpecification -> DataSource)
ositrace:hasDataSource a owl:ObjectProperty ;
rdfs:label "Object property: hasDataSource"@en ;
rdfs:comment "Links a DomainSpecification to an instance of ositrace:DataSource that describes how the OSI trace was generated or recorded."@en ;
rdfs:subPropertyOf envited-x:hasDataSource ;
rdfs:domain ositrace:DomainSpecification ;
rdfs:range ositrace:DataSource .
### hasFormat (DomainSpecification -> Format)
ositrace:hasFormat a owl:ObjectProperty ;
rdfs:label "Object property: hasFormat"@en ;
rdfs:comment "Links a DomainSpecification to an instance of ositrace:Format that describes the OSI trace file format details."@en ;
rdfs:subPropertyOf envited-x:hasFormat ;
rdfs:domain ositrace:DomainSpecification ;
rdfs:range ositrace:Format .
### hasQuality (DomainSpecification -> Quality)
ositrace:hasQuality a owl:ObjectProperty ;
rdfs:label "Object property: hasQuality"@en ;
rdfs:comment "Links a DomainSpecification to an instance of ositrace:Quality describing the OSI trace's accuracy and reliability aspects."@en ;
rdfs:subPropertyOf envited-x:hasQuality ;
rdfs:domain ositrace:DomainSpecification ;
rdfs:range ositrace:Quality .
### hasQuantity (DomainSpecification -> Quantity)
ositrace:hasQuantity a owl:ObjectProperty ;
rdfs:label "Object property: hasQuantity"@en ;
rdfs:comment "Links a DomainSpecification to an instance of ositrace:Quantity describing the OSI trace's quantity metrics (frames, objects, events, etc.)."@en ;
rdfs:subPropertyOf envited-x:hasQuantity ;
rdfs:domain ositrace:DomainSpecification ;
rdfs:range ositrace:Quantity .
### hasTargetMovingObject (Content -> MovingObject)
ositrace:hasTargetMovingObject a owl:ObjectProperty ;
rdfs:label "Object property: hasTargetMovingObject"@en ;
rdfs:comment "Links Content to an instance of ositrace:MovingObject describing target entities within the OSI trace."@en ;
rdfs:domain ositrace:Content ;
rdfs:range ositrace:MovingObject .
### hasHostMovingObject (Content -> MovingObject)
ositrace:hasHostMovingObject a owl:ObjectProperty ;
rdfs:label "Object property: hasHostMovingObject"@en ;
rdfs:comment "Links Content to an instance of ositrace:MovingObject describing the host vehicle entity within the OSI trace."@en ;
rdfs:domain ositrace:Content ;
rdfs:range ositrace:MovingObject .
### hasEvent (Content -> Event)
ositrace:hasEvent a owl:ObjectProperty ;
rdfs:label "Object property: hasEvent"@en ;
rdfs:comment "Links Content to an instance of ositrace:Event describing discrete events recorded in the OSI trace."@en ;
rdfs:domain ositrace:Content ;
rdfs:range ositrace:Event .