forked from carml/carml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrml.sh.ttl
380 lines (311 loc) · 8.59 KB
/
rml.sh.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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rr: <http://www.w3.org/ns/r2rml#> .
@prefix rml: <http://semweb.mmlab.be/ns/rml#> .
@prefix carml: <http://carml.taxonic.com/carml/> .
@prefix rmlsh: <http://www.taxonic.com/ns/rml-shacl#> .
rmlsh:
rdfs:label "SHACL for RML"@en ;
rdfs:comment "This shapes graph can be used to validate RML mapping graphs."@en ;
sh:declare [
sh:prefix "rmlsh" ;
sh:namespace "http://www.taxonic.com/ns/rml-shacl#" ;
] .
rmlsh:TriplesMapShape
a sh:NodeShape ;
rdfs:label "Triples map shape"@en ;
rdfs:comment "Defines constraints for a well-formed triples map."@en;
sh:targetClass rr:TriplesMap ;
sh:targetSubjectsOf
rr:logicalTable,
rml:logicalSource,
rr:subject,
rr:subjectMap ;
sh:property [
sh:path rml:logicalSource ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:xone (
[
sh:property [
sh:path rr:subjectMap ;
sh:minCount 1 ;
sh:maxCount 1 ;
]
]
[
sh:property [
sh:path rr:subject ;
sh:minCount 1 ;
sh:maxCount 1 ;
]
]
) ;
.
rmlsh:TermMapShape
a sh:NodeShape ;
rdfs:label "Term map shape"@en ;
rdfs:comment "Defines constraints for a well-formed term map."@en;
# NOTE: We don't target object maps directly, because not all object maps are term maps;
# the range for `rr:objectMap` is `rr:ObjectMap` or `rr:RefObjectMap`
sh:targetObjectsOf
rr:subjectMap ,
rr:predicateMap ,
rr:graphMap ;
sh:targetClass
rr:SubjectMap ,
rr:PredicateMap ,
rr:GraphMap ;
sh:targetSubjectsOf
rr:constant ,
rml:reference ,
rr:template ,
rr:termType ;
sh:xone (
[
sh:property [
sh:path rr:constant ;
sh:minCount 1 ;
sh:maxCount 1 ;
]
]
[
sh:property [
sh:path rml:reference ;
sh:minCount 1 ;
sh:maxCount 1 ;
]
]
[
sh:property [
sh:path rr:template ;
sh:minCount 1 ;
sh:maxCount 1 ;
]
]
) .
rmlsh:ObjectOrRefObjectMapShape
a sh:NodeShape ;
sh:targetSubjectsOf rr:objectMap ;
sh:xone (
[
sh:property [
sh:path rr:objectMap ;
sh:node rmlsh:TermMapShape, rmlsh:ObjectMapShape ;
]
]
[
sh:property [
sh:path rr:objectMap ;
sh:node rmlsh:RefObjectMapShape ;
]
]
) ;
.
rmlsh:SubjectMapShape
a sh:NodeShape ;
rdfs:label "Subject map shape"@en ;
rdfs:comment "Defines constraints for a well-formed subject map."@en;
sh:targetObjectsOf rr:subjectMap ;
sh:targetClass rr:SubjectMap ;
sh:and (
[ sh:property [ sh:path rr:termType ; sh:maxCount 1 ; ] ; ]
[ sh:property [ sh:path rr:termType ; sh:in ( rr:IRI rr:BlankNode ) ; ] ; ]
) ;
sh:property [
sh:path rr:class ;
sh:nodeKind sh:IRI ;
] ;
.
rmlsh:ObjectMapShape
a sh:NodeShape ;
rdfs:label "Object map shape"@en ;
rdfs:comment "Defines constraints for a well-formed object map."@en;
sh:and(
[ sh:property [ sh:path rr:termType ; sh:maxCount 1 ; ] ; ]
[ sh:property [ sh:path rr:termType ; sh:in ( rr:IRI rr:BlankNode rr:Literal ) ; ] ; ]
) ;
# @INCOMPLETE
# sh:xone (
# [
# sh:property [
# sh:path rr:termType ;
# sh:in (rr:IRI rr:BlankNode)
# ]
# ]
# [
# sh:property [
# sh:path rr:termType ;
# sh:maxCount 0 ;
# ]
# ]
# [
# sh:property [
# sh:path rr:datatype ;
# sh:minCount 1 ;
# sh:nodeKind sh:IRI ;
# ]
# ]
# [
# sh:property [
# sh:path rr:datatype ;
# sh:minCount 1 ;
# sh:nodeKind sh:IRI ;
# ]
# ]
# )
.
rmlsh:RefObjectMapShape
a sh:NodeShape ;
rdfs:label "Ref object map shape"@en ;
rdfs:comment "Defines constraints for a well-formed ref object map."@en;
sh:targetClass rr:RefObjectMap ;
sh:targetSubjectsOf rr:parentTriplesMap, rr:joinCondition ;
sh:targetObjectsOf rr:refObjectMap ;
sh:and (
[ sh:property [ sh:path rr:parentTriplesMap ; sh:minCount 1 ; sh:maxCount 1 ; ] ; ]
[ sh:property [ sh:path rr:parentTriplesMap ; sh:nodeKind sh:IRI ; ] ; ]
) ;
.
rmlsh:PredicateMapShape
a sh:NodeShape ;
rdfs:label "Predicate map shape"@en ;
rdfs:comment "Defines constraints for a well-formed predicate map."@en;
sh:and (
[ sh:property [ sh:path rr:termType ; sh:maxCount 1 ; ] ; ]
[ sh:property [ sh:path rr:termType ; sh:hasValue rr:IRI ; ] ; ]
) ;
.
rmlsh:PredicateObjectMapShape
a sh:NodeShape ;
rdfs:label "Predicate object map shape"@en ;
rdfs:comment "Defines constraints for a well-formed predicate object map."@en;
sh:targetSubjectsOf rr:predicate, rr:predicateMap, rr:object, rr:objectMap ;
sh:targetObjectsOf rr:predicateObjectMap ;
sh:targetClass rr:PredicateObjectMap ;
sh:or (
[ sh:property [ sh:path rr:predicate ; sh:minCount 1 ; ] ; ]
[ sh:property [ sh:path rr:predicateMap ; sh:minCount 1 ; ] ; ]
) ;
sh:or (
[ sh:property [ sh:path rr:object ; sh:minCount 1 ; ] ; ]
[ sh:property [ sh:path rr:objectMap ; sh:minCount 1 ; ] ; ]
) ;
.
rmlsh:BaseSourceShape
a sh:NodeShape ;
rdfs:label "Base source shape"@en ;
rdfs:comment "Defines constraints for a well-formed base source."@en;
.
rmlsh:LogicalSourceShape
a sh:NodeShape ;
rdfs:label "Logical source shape"@en ;
rdfs:comment "Defines constraints for a well-formed logical source."@en;
sh:targetClass rml:LogicalSource ;
sh:targetObjectsOf rml:logicalSource ;
sh:targetSubjectsOf rml:source ;
# @NOTE: The iterator and referenceFormulation could be required, based on the rml:source. These
# constraints will be checked at run time, and will cause a run time error when violated.
sh:property
[
sh:message "LogicalSource should have one and only one source." ;
sh:path rml:source ;
sh:minCount 1;
sh:maxCount 1;
] ,
[
sh:message "Logical source's source should be either a source location string or a valid carml stream description" ;
sh:path rml:source ;
sh:or (
[
sh:nodeKind sh:Literal ;
sh:datatype xsd:string ;
]
[
sh:node rmlsh:CarmlStreamShape ;
]
)
] ,
[
sh:message "LogicalSource should have at most one iterator." ;
sh:path rml:iterator ;
sh:maxCount 1;
] ,
[
sh:message "LogicalSource should have at most one reference formulation." ;
sh:path rml:referenceFormulation ;
sh:maxCount 1 ;
# @NOTE: The namespace sets the range to `rml:ReferenceFormulation`, but in practice, this
# class does not have any special characteristic. From a practical perspective, it
# seems useful to allow any IRI.
sh:nodeKind sh:IRI ;
]
.
rmlsh:CarmlStreamShape
a sh:NodeShape ;
sh:targetClass carml:Stream ;
sh:message "Carml stream is ill-formed." ;
sh:property
[
sh:path rdf:type ;
sh:minCount 1 ;
sh:hasValue carml:Stream ;
] ,
[
sh:message "Carlm stream can have at most one stream name.";
sh:path carml:streamName ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:datatype xsd:string ;
] ;
.
# rmlsh:ReferenceFormulationShape
# a sh:NodeShape ;
# rdfs:label "Reference formulation shape"@en ;
# rdfs:comment "Defines constraints for a well-formed reference formulation."@en;
# .
rmlsh:GraphMapShape
a sh:NodeShape ;
rdfs:label "Graph map shape"@en ;
rdfs:comment "Defines constraints for a well-formed graph map."@en;
sh:targetClass rr:GraphMap ;
sh:targetObjecsOf rr:graphMap ;
sh:and (
[ sh:property [ sh:path rr:termType ; sh:maxCount 1 ; ] ]
[ sh:property [ sh:path rr:termType ; sh:hasValue rr:IRI ; ] ]
) ;
.
rmlsh:JoinShape
a sh:NodeShape ;
rdfs:label "Join shape"@en ;
rdfs:comment "Defines constraints for a well-formed join "@en;
sh:targetClass rr:Join ;
sh:targetSubjectsOf rr:parent, rr:child ;
sh:targetObjectsOf rr:joinCondition ;
sh:and (
[ sh:property [ sh:path rr:child ; sh:minCount 1 ; sh:maxCount 1 ; ] ]
[ sh:property [ sh:path rr:child ; sh:nodeKind sh:Literal ; ] ]
) ;
sh:and (
[ sh:property [ sh:path rr:parent ; sh:minCount 1 ; sh:maxCount 1 ; ] ]
[ sh:property [ sh:path rr:parent ; sh:nodeKind sh:Literal ; ] ]
) ;
.
rmlsh:ConstantSubjectPredicateOrGraphShape
a sh:PropertyShape ;
rdfs:label "Constant value shape for subject, predicate or graph mappings"@en ;
rdfs:comment "Defines constraints for a well-formed constant value for a subject, predicate or graph mapping."@en;
sh:path rr:constant, rr:subject, rr:predicate, rr:graph ;
sh:nodeKind sh:IRI .
rmlsh:ConstantObjectShape
a sh:PropertyShape ;
rdfs:label "Constant value shape for object mappings"@en ;
rdfs:comment "Defines constraints for a well-formed constant value for an object mapping."@en;
sh:targetObjectsOf rr:object ;
sh:xone ( [ sh:nodeKind sh:IRI ; ] [ sh:nodeKind sh:literal ] ) .
# rmlsh:ObjectPropertyShape
# a sh:PropertyShape ;
# sh:path