-
Notifications
You must be signed in to change notification settings - Fork 1
/
overervingshacl-SHACL.ttl
104 lines (98 loc) · 3.13 KB
/
overervingshacl-SHACL.ttl
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
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix qb: <http://purl.org/linked-data/cube#> .
<https://data.vlaanderen.be/shacl/overervingshacl#A1Shape>
a sh:NodeShape ;
sh:targetClass <http://www.example.com/overervingshacl#A1> ;
sh:property [
sh:name "heeftB1" ;
sh:description "Definitie etc." ;
sh:path <http://www.example.com/overervingshacl#heeftB1> ;
sh:class <http://www.example.com/overervingshacl#B1> ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:property [
sh:name "a1" ;
sh:description "Definitie etc." ;
sh:path <http://www.example.com/overervingshacl#a1> ;
sh:datatype <http://www.w3.org/2001/XMLSchema#integer> ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:closed false .
<https://data.vlaanderen.be/shacl/overervingshacl#A2Shape>
a sh:NodeShape ;
sh:targetClass <http://www.example.com/overervingshacl#A2> ;
sh:property [
sh:name "heeftB2" ;
sh:description "Definitie etc." ;
sh:path <http://www.example.com/overervingshacl#heeftB2> ;
sh:class <http://www.example.com/overervingshacl#B2> ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:property [
sh:name "a2" ;
sh:description "Definitie etc." ;
sh:path <http://www.example.com/overervingshacl#a2> ;
sh:datatype <http://www.w3.org/2001/XMLSchema#integer> ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:closed false .
<https://data.vlaanderen.be/shacl/overervingshacl#A3Shape>
a sh:NodeShape ;
sh:targetClass <http://www.example.com/overervingshacl#A3> ;
sh:property [
sh:name "heeftB3" ;
sh:description "Definitie etc." ;
sh:path <http://www.example.com/overervingshacl#heeftB3> ;
sh:class <http://www.example.com/overervingshacl#B3> ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:property [
sh:name "a3" ;
sh:description "Definitie etc." ;
sh:path <http://www.example.com/overervingshacl#a3> ;
sh:datatype <http://www.w3.org/2001/XMLSchema#integer> ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:closed false .
<https://data.vlaanderen.be/shacl/overervingshacl#B1Shape>
a sh:NodeShape ;
sh:targetClass <http://www.example.com/overervingshacl#B1> ;
sh:property [
sh:name "b1" ;
sh:description "Definitie etc." ;
sh:path <http://www.example.com/overervingshacl#b1> ;
sh:datatype <http://www.w3.org/2001/XMLSchema#integer> ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:closed false .
<https://data.vlaanderen.be/shacl/overervingshacl#B2Shape>
a sh:NodeShape ;
sh:targetClass <http://www.example.com/overervingshacl#B2> ;
sh:property [
sh:name "b2" ;
sh:description "Definitie etc." ;
sh:path <http://www.example.com/overervingshacl#b2> ;
sh:datatype <http://www.w3.org/2001/XMLSchema#integer> ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:closed false .
<https://data.vlaanderen.be/shacl/overervingshacl#B3Shape>
a sh:NodeShape ;
sh:targetClass <http://www.example.com/overervingshacl#B3> ;
sh:property [
sh:name "b3" ;
sh:description "Definitie etc." ;
sh:path <http://www.example.com/overervingshacl#b3> ;
sh:datatype <http://www.w3.org/2001/XMLSchema#integer> ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:closed false .