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 pathgeneral.shacl.ttl
More file actions
81 lines (77 loc) · 2.68 KB
/
Copy pathgeneral.shacl.ttl
File metadata and controls
81 lines (77 loc) · 2.68 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
@prefix general: <https://w3id.org/gaia-x4plcaad/ontologies/general/v3/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# The Shapes Graph URI appends "/shapes" to the Ontology URI
<https://w3id.org/gaia-x4plcaad/ontologies/general/v3/shapes>
a owl:Ontology ;
owl:imports <https://w3id.org/gaia-x4plcaad/ontologies/general/v3> .
general:GeneralShape a sh:NodeShape ;
sh:closed false ;
sh:targetClass general:General ;
sh:property [
sh:maxCount 1 ;
sh:minCount 1 ;
sh:node general:DescriptionShape ;
sh:name "description object"@en ;
sh:description "General text based description of the simulation asset."@en ;
sh:order 1 ;
sh:path general:description
] ,
[
sh:maxCount 1 ;
sh:minCount 1 ;
sh:node general:DataShape ;
sh:name "data object"@en ;
sh:description "Data properties of the simulation asset."@en ;
sh:order 2 ;
sh:path general:data
] .
general:DescriptionShape a sh:NodeShape ;
sh:closed false ;
sh:targetClass general:Description ;
sh:property [
sh:datatype xsd:string ;
sh:description "A human readable name of the entity."@en ;
skos:example "3D Model of Grafing"@en ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "name"@en ;
sh:order 1 ;
sh:path general:name
] ,
[
sh:datatype xsd:string ;
sh:description "A free text description of the entity."@en ;
skos:example "Town district with traffic signs."@en ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "description"@en ;
sh:order 2 ;
sh:path general:description
] .
general:DataShape a sh:NodeShape ;
sh:closed false ;
sh:targetClass general:Data ;
sh:property [
sh:datatype xsd:float ;
sh:description "Size of the data file(s) (e.g. xodr, 3d model zip) to be downloaded in MB (megabyte)."@en ;
skos:example "5.8" ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "size"@en ;
sh:order 1 ;
sh:path general:size
] ,
[
skos:example "2022-04-01T00:00:00" ;
sh:datatype xsd:dateTime ;
sh:description "Time of data acquisition used to generate the asset, if partial measurement: oldest date"@en ;
sh:maxCount 1 ;
sh:message "Validation of recording time failed!"@en ;
sh:name "recording time"@en ;
sh:order 2 ;
sh:path general:recordingTime
] .