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 pathscenario.owl.ttl
More file actions
233 lines (205 loc) · 9.99 KB
/
Copy pathscenario.owl.ttl
File metadata and controls
233 lines (205 loc) · 9.99 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
@prefix scenario: <https://w3id.org/ascs-ev/envited-x/scenario/v5/> .
@prefix openlabel: <https://openlabel.asam.net/V1-0-0/ontologies/> .
@prefix environment-model: <https://w3id.org/ascs-ev/envited-x/environment-model/v5/> .
@prefix hdmap: <https://w3id.org/ascs-ev/envited-x/hdmap/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 owl: <http://www.w3.org/2002/07/owl#> .
@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 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/scenario/v5> a owl:Ontology ;
rdfs:label "Ontology definition for scenario"@en ;
rdfs:comment "An ontology with common classes to describe a scenario asset."@en ;
dcterms:creator "The GAIA-X 4 PLC AAD Project Team"@en ;
dcterms:contributor [
a foaf:Person ;
foaf:name "Fin Heuer" ;
org:memberOf <https://www.dlr.de/> ;
] , [
a foaf:Person ;
foaf:name "Rico Auerswald" ;
org:memberOf <https://www.ivi.fraunhofer.de/> ;
] , [
a foaf:Person ;
foaf:name "Mirco Nierenz" ;
org:memberOf <https://triangraphics.de/> ;
] , [
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/scenario> ;
# 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/scenario/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/scenario/v5/shapes> ;
# Additional references to the ENVITED Ecosystem Specification (EVES) or related ontologies/specifications
dcterms:references <https://www.asam.net/standards/detail/openscenario/> ;
rdfs:seeAlso <https://ascs-ev.github.io/EVES/> .
### Classes ###################################################################
scenario:Scenario a owl:Class ;
rdfs:label "Class definition for Scenario"@en ;
rdfs:comment "General properties for defining a scenario asset, including format, content, data sources, quantity, and quality attributes."@en ;
rdfs:subClassOf envited-x:SimulationAsset ,
openlabel:Scenario ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty scenario:hasDomainSpecification ;
owl:someValuesFrom scenario:DomainSpecification
] ;
# Scenario must have a standard envited-x:ResourceDescription
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty scenario:hasResourceDescription ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf ( envited-x:ResourceDescription manifest:Link )
]
] ;
# Scenario must have a manifest, either:
# - an inline envited-x:Manifest instance, or
# - a manifest:Link.
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty scenario:hasManifest ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf ( envited-x:Manifest manifest:Link )
]
] .
scenario:DomainSpecification a owl:Class ;
rdfs:label "Class definition for DomainSpecification"@en ;
rdfs:comment "Scenario DomainSpecification containing additional metadata information of the simulation asset."@en ;
rdfs:subClassOf envited-x:DomainSpecification ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty scenario:hasContent ;
owl:minCardinality 1
] , [
a owl:Restriction ;
owl:onProperty scenario:hasDataSource ;
owl:cardinality 1
] , [
a owl:Restriction ;
owl:onProperty scenario:hasFormat ;
owl:cardinality 1
] , [
a owl:Restriction ;
owl:onProperty scenario:hasQuality ;
owl:cardinality 1
] , [
a owl:Restriction ;
owl:onProperty scenario:hasQuantity ;
owl:cardinality 1
] , [
a owl:Restriction ;
owl:onProperty scenario:hasGeoreference ;
owl:cardinality 1
] .
scenario:Format a owl:Class ;
rdfs:label "Class definition for Format"@en ;
rdfs:comment "Contains properties that describe the format of the scenario asset."@en ;
rdfs:subClassOf envited-x:Format .
scenario:Content a owl:Class ;
rdfs:label "Class definition for Content"@en ;
rdfs:comment "Defines the content of the scenario asset, such as time, abstraction level, and links."@en ;
rdfs:subClassOf envited-x:Content .
scenario:Quantity a owl:Class ;
rdfs:label "Class definition for Quantity"@en ;
rdfs:comment "Contains properties that describe the quantity of the scenario asset (e.g., number of traffic objects, controllers)."@en ;
rdfs:subClassOf envited-x:Quantity .
scenario:Quality a owl:Class ;
rdfs:label "Class definition for Quality"@en ;
rdfs:comment "Contains properties that describe the accuracy of objects and the calibration of the scenario asset."@en ;
rdfs:subClassOf envited-x:Quality .
scenario:DataSource a owl:Class ;
rdfs:label "Class definition for DataSource"@en ;
rdfs:comment "Defines which data resources were used to create the scenario asset."@en ;
rdfs:subClassOf envited-x:DataSource .
### Object properties #########################################################
scenario:hasDomainSpecification a owl:ObjectProperty ;
rdfs:label "Object property: hasDomainSpecification"@en ;
rdfs:comment "Links a scenario asset to its specific metadata (DomainSpecification), which may contain additional scenario-specific attributes."@en ;
rdfs:subPropertyOf envited-x:hasDomainSpecification ;
rdfs:domain scenario:Scenario ;
rdfs:range scenario:DomainSpecification .
scenario:hasResourceDescription a owl:ObjectProperty ;
rdfs:label "Object property: hasResourceDescription"@en ;
rdfs:comment "Links a scenario asset to a standard ResourceDescription instance from envited-x."@en ;
rdfs:subPropertyOf envited-x:hasResourceDescription ;
rdfs:domain scenario:Scenario ;
rdfs:range [
a owl:Class ;
owl:unionOf ( envited-x:ResourceDescription manifest:Link )
] .
scenario:hasManifest a owl:ObjectProperty ;
rdfs:label "Object property: hasManifest"@en ;
rdfs:comment """
Links an Scenario 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 scenario:Scenario ;
rdfs:range [
a owl:Class ;
owl:unionOf ( envited-x:Manifest manifest:Link )
] .
# Declare a union class combining scenario:Content and openlabel:Tag
scenario:ContentOrTag a owl:Class ;
rdfs:label "Content or OpenLabel Tag"@en ;
rdfs:comment "Combines Scenario content with OpenLABEL's Tag."@en ;
owl:unionOf (scenario:Content openlabel:Tag) .
scenario:hasContent a owl:ObjectProperty ;
rdfs:label "Object property: hasContent"@en ;
rdfs:comment "Links a DomainSpecification to an instance of scenario:Content that describes the scenario's content."@en ;
rdfs:subPropertyOf envited-x:hasContent ;
rdfs:domain scenario:DomainSpecification ;
rdfs:range scenario:ContentOrTag .
scenario:hasDataSource a owl:ObjectProperty ;
rdfs:label "Object property: hasDataSource"@en ;
rdfs:comment "Links a DomainSpecification to an instance of scenario:DataSource that describes how the scenario was created."@en ;
rdfs:subPropertyOf envited-x:hasDataSource ;
rdfs:domain scenario:DomainSpecification ;
rdfs:range scenario:DataSource .
scenario:hasFormat a owl:ObjectProperty ;
rdfs:label "Object property: hasFormat"@en ;
rdfs:comment "Links a DomainSpecification to an instance of scenario:Format that describes the scenario's format details."@en ;
rdfs:subPropertyOf envited-x:hasFormat ;
rdfs:domain scenario:DomainSpecification ;
rdfs:range scenario:Format .
scenario:hasQuantity a owl:ObjectProperty ;
rdfs:label "Object property: hasQuantity"@en ;
rdfs:comment "Links a DomainSpecification to an instance of scenario:Quantity describing the scenario's quantity."@en ;
rdfs:subPropertyOf envited-x:hasQuantity ;
rdfs:domain scenario:DomainSpecification ;
rdfs:range scenario:Quantity .
scenario:hasQuality a owl:ObjectProperty ;
rdfs:label "Object property: hasQuality"@en ;
rdfs:comment "Links a DomainSpecification to an instance of scenario:Quality describing the scenario's accuracy or calibration."@en ;
rdfs:subPropertyOf envited-x:hasQuality ;
rdfs:domain scenario:DomainSpecification ;
rdfs:range scenario:Quality .
### hasGeoreference (DomainSpecification -> georeference:Georeference)
scenario:hasGeoreference a owl:ObjectProperty ;
rdfs:label "Object property: hasGeoreference"@en ;
rdfs:comment "Links a DomainSpecification to a georeference:Georeference describing how the scenario is georeferenced."@en ;
rdfs:domain scenario:DomainSpecification ;
rdfs:range georeference:Georeference .