forked from carml/carml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rml.sh.ttl
480 lines (427 loc) · 11.2 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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
@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 fnml: <http://semweb.mmlab.be/ns/fnml#> .
@prefix fno: <http://semweb.datasciencelab.be/ns/function#> .
@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:message "TriplesMap is ill-formed." ;
sh:targetClass rr:TriplesMap ;
sh:targetSubjectsOf
rr:logicalTable,
rml:logicalSource,
rr:subject,
rr:subjectMap ;
sh:property [
sh:message "Triples map should have one and only one logical source." ;
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 ;
sh:message "Term map is ill-formed." ;
# 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 ,
fnml:functionValue ;
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 ;
]
]
[
sh:property [
sh:path fnml:functionValue ;
sh:minCount 1 ;
sh:maxCount 1 ;
]
]
[
sh:property [
sh:path carml:multiReference ;
sh:minCount 1 ;
sh:maxCount 1 ;
]
]
[
sh:property [
sh:path carml:multiTemplate ;
sh:minCount 1 ;
sh:maxCount 1 ;
]
]
[
sh:property [
sh:path carml:multiFunctionValue ;
sh:minCount 1 ;
sh:maxCount 1 ;
]
]
) ;
.
rmlsh:TermMapTermTypeShape
a sh:NodeShape ;
sh:targetSubjectsOf rr:termType ;
sh:property [
sh:message "Term map may have at most one value for rr:termType." ;
sh:path rr:termType ;
sh:maxCount 1 ;
]
.
rmlsh:ObjectOrRefObjectMapShape
a sh:NodeShape ;
# TODO: PM: could we not use sh:targetObjectsOf?
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:message "Subject map is ill-formed" ;
sh:targetObjectsOf rr:subjectMap ;
sh:targetClass rr:SubjectMap ;
sh:property
[
sh:message "Value for rr:termType on subject map should be rr:IRI or rr:BlankNode." ;
sh:path rr:termType ;
sh:in ( rr:IRI rr:BlankNode ) ;
] ,
[
sh:message "Value of rr:class in subject map should be an IRI" ;
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:message "Object map is ill-formed" ;
sh:property [
sh:message "Value for rr:termType on subject map should be rr:IRI or rr:BlankNode or rr:Literal." ;
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:message "Referencing object map is ill-formed" ;
sh:targetClass rr:RefObjectMap ;
sh:targetSubjectsOf rr:parentTriplesMap, rr:joinCondition, carml:multiJoinCondition ;
sh:targetObjectsOf rr:refObjectMap ;
sh:property
[
sh:message "Referencing object map should have one and only one parent triples map." ;
sh:path rr:parentTriplesMap ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ,
[
sh:message "Value of rr:parentTriplesMap op referencing object map should be rr:IRI." ;
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:message "Predicate map is ill-formed" ;
sh:targetObjectsOf rr:predicateMap ;
sh:property [
sh:message "Value for rr:termType on predicate map should be rr:IRI." ;
sh:path rr:termType ;
sh:in ( 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:message "Predicate object map is ill-formed" ;
sh:targetSubjectsOf rr:predicate, rr:predicateMap, rr:object, rr:objectMap ;
sh:targetObjectsOf rr:predicateObjectMap ;
sh:targetClass rr:PredicateObjectMap ;
sh:property
[
sh:message "Predicate object map should have at least one predicate map." ;
sh:path [
sh:alternativePath (rr:predicate rr:predicateMap) ;
] ;
sh:minCount 1 ;
] ,
[
sh:message "Predicate object map should have at least one object map." ;
sh:path [
sh:alternativePath (rr:object 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:message "Logical source is ill-formed" ;
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:message "Graph map is ill-formed" ;
sh:targetClass rr:GraphMap ;
sh:targetObjectsOf rr:graphMap ;
sh:property [
sh:message "Value for rr:termType on graph map should be rr:IRI." ;
sh:path rr:termType ;
sh:in ( rr:IRI ) ;
] ;
.
rmlsh:JoinShape
a sh:NodeShape ;
rdfs:label "Join shape"@en ;
rdfs:comment "Defines constraints for a well-formed join "@en ;
sh:message "Join is ill-formed" ;
sh:targetClass rr:Join ;
sh:targetSubjectsOf rr:parent, rr:child ;
sh:targetObjectsOf rr:joinCondition ;
sh:property
[
sh:message "Join should have one and only one child." ;
sh:path rr:child ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ,
[
sh:message "Value of child in join should be a literal value." ;
sh:path rr:child ;
sh:nodeKind sh:Literal ;
] ,
[
sh:message "Join should have one and only one parent." ;
sh:path rr:parent ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ,
[
sh:message "Join should have at least one parent." ;
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:message "A triple with an RML shorthand constant as predicate should have an IRI in the object position." ;
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:message "Constant value for object mapping is ill-formed" ;
sh:targetObjectsOf rr:object ;
sh:xone ( [ sh:nodeKind sh:IRI ; ] [ sh:nodeKind sh:literal ] )
.
rmlsh:FunctionTermMapShape
a sh:NodeShape ;
sh:targetObjectsOf fnml:functionValue ;
sh:message "Functional term map is ill-formed." ;
sh:property [
sh:message "Functional term map should have one and only one function executing predicate object map." ;
sh:path rr:predicateObjectMap ;
sh:qualifiedMinCount 1 ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape rmlsh:FunctionExecutionPOM ;
];
.
rmlsh:FunctionExecutionPOM
sh:or (
[
sh:path rr:predicate ;
sh:hasValue fno:executes ;
]
[
sh:path (rr:predicateMap rr:constant ) ;
sh:hasValue fno:executes ;
]
) ;
.