-
Notifications
You must be signed in to change notification settings - Fork 1
/
shapes.rdf
2050 lines (2049 loc) · 104 KB
/
shapes.rdf
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sh="http://www.w3.org/ns/shacl#"
>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b1">
<sh:message>
rml:source must be provided to locate the data source.
rml:source must be provided exactly once as an URI.
</sh:message>
<sh:description>
The source (rml:source) locates the input data source. It is a URI
that represents the data source where the data source is.
</sh:description>
<sh:path rdf:resource="http://w3id.org/rml/source"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:name>rml:source</sh:name>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLSourceShape"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b23">
<sh:description>
A template (format string) to specify how to generate a value for a
subject, predicate, or object, using one or more columns from a logical
table row or iterator.
</sh:description>
<sh:path rdf:resource="http://w3id.org/rml/template"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#Literal"/>
<sh:datatype rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<sh:message>
rml:template must be a string.
</sh:message>
<sh:name>template</sh:name>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLParentMapShape">
<sh:targetObjectsOf rdf:resource="http://www.w3.org/ns/r2rml#parent"/>
<sh:and rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b68"/>
<sh:message>
rml:ParentMap must specify a literal referencing data in the parent data
source.
</sh:message>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:targetClass rdf:resource="http://www.w3.org/ns/r2rml#ParentMap"/>
<sh:description>
Represents a Parent Map.
</sh:description>
<sh:name>ParentMap</sh:name>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLJoinShape">
<sh:message>
rml:Join must specify exactly one rml:parent/rml:parentMap
and rml:child/rml:childMap.
</sh:message>
<sh:targetObjectsOf rdf:resource="http://www.w3.org/ns/r2rml#joinCondition"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b30"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b36"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b38"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b34"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b35"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b37"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:description>
Represents a Join.
</sh:description>
<sh:targetClass rdf:resource="http://www.w3.org/ns/r2rml#Join"/>
<sh:name>Join</sh:name>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b94">
<sh:description>
Specifies the object for the generated RDF triples.
</sh:description>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/object"/>
<sh:message>
rml:object must be an IRI and be provided once.
</sh:message>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLobjectShape"/>
<sh:name>object</sh:name>
<sh:path rdf:resource="http://w3id.org/rml/object"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b5">
<sh:path rdf:resource="http://w3id.org/rml/null"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#Literal"/>
<sh:message>
rml:source must be provided as a string Literal.
</sh:message>
<sh:name>rml:null</sh:name>
<sh:datatype rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<sh:description>
rml:null specifies how NULL or empty values are exposed by the data
source.
</sh:description>
</rdf:Description>
<rdf:Description rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b1">
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:description>
rml:strategy specifies the collection strategy to use: rml:append
or rml:catessianProduct. rml:append is the default strategy.
</sh:description>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<sh:message>
Zero or one rml:strategy is required.
</sh:message>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLStrategyAppendShape"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:name>strategy</sh:name>
<sh:path rdf:resource="http://w3id.org/rml/strategy"/>
</rdf:Description>
<rdf:Description rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b22">
<rdf:first rdf:resource="http://w3id.org/rml/inputValue"/>
<rdf:rest rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b23"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b73">
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b74"/>
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLTermMapShape"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b66">
<sh:message>
rml:termType for Parent Map can only be a rml:Literal;
</sh:message>
<sh:in rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b67"/>
<sh:path rdf:resource="http://www.w3.org/ns/r2rml#termType"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b56">
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:message>
rml:datatypeMap must point to a rml:DatatypeMap specifying the
datatype of the Literal.
</sh:message>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/datatypeMap"/>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLDatatypeMapShape"/>
<sh:path rdf:resource="http://w3id.org/rml/datatypeMap"/>
<sh:description>
Specifies the datatype of the object component for the generated
RDF triples.
</sh:description>
<sh:name>datatypeMap</sh:name>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b36">
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLParentMapShape"/>
<sh:message>
rml:parentMap must point to a rml:ParentMap specifying the
parent tag of the string Literal.
</sh:message>
<sh:path rdf:resource="http://www.w3.org/ns/r2rml#parentMap"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:targetSubjectsOf rdf:resource="http://www.w3.org/ns/r2rml#parentMap"/>
<sh:description>
Specifies the parent of the object component for joining.
</sh:description>
<sh:name>parentMap</sh:name>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b123">
<sh:or rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b126"/>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/subjectMap"/>
<sh:message>
rml:SubjectMap must be an IRI or blank node.
</sh:message>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:path rdf:resource="http://w3id.org/rml/subjectMap"/>
<sh:name>subjectMap</sh:name>
<sh:description>
A Subject Map element to generate a subject for generated RDF triples.
</sh:description>
</rdf:Description>
<rdf:Description rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b29">
<rdf:rest rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b30"/>
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLTermMapShape"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b8">
<sh:message>
rml:encoding must be provided as an IRI.
</sh:message>
<sh:path rdf:resource="http://w3id.org/rml/encoding"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:name>rml:encoding</sh:name>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:description>
rml:encoding specifies the encoding to use when accessing the data
source. By default, UTF-8 is used.
</sh:description>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b44">
<sh:pattern>^((?:(en-GB-oed|i-ami|i-bnn|i-default|i-enochian|i-hak|i-klingon|i-lux|i-mingo|i-navajo|i-pwn|i-tao|i-tay|i-tsu|sgn-BE-FR|sgn-BE-NL|sgn-CH-DE)|(art-lojban|cel-gaulish|no-bok|no-nyn|zh-guoyu|zh-hakka|zh-min|zh-min-nan|zh-xiang))|((?:([A-Za-z]{2,3}(-(?:[A-Za-z]{3}(-[A-Za-z]{3}){0,2}))?)|[A-Za-z]{4})(-(?:[A-Za-z]{4}))?(-(?:[A-Za-z]{2}|[0-9]{3}))?(-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(-(?:[0-9A-WY-Za-wy-z](-[A-Za-z0-9]{2,8})+))*(-(?:x(-[A-Za-z0-9]{1,8})+))?)|(?:x(-[A-Za-z0-9]{1,8})+))$</sh:pattern>
<sh:path rdf:resource="http://w3id.org/rml/constant"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b135">
<sh:description>
Specifies a Graph Map. When used with a Subject Map element, all the
RDF triples generated will be stored in the specified named graph.
Otherwise, the RDF triple generated using the (predicate, object)
pair will be stored in the specified named graph.
</sh:description>
<sh:name>graphMap</sh:name>
<sh:path rdf:resource="http://w3id.org/rml/graphMap"/>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLGraphMapShape"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:message>
rml:graphMap must be either an IRI or blank node.
</sh:message>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLdatatypeShape">
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/datatype"/>
<sh:message>
rml:datatype must be an IRI.
</sh:message>
<sh:description>
An IRI reference for use as the graph name of all triples generated with
the datatype.
</sh:description>
<sh:name>datatype</sh:name>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
</rdf:Description>
<rdf:Description rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b14">
<rdf:rest rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b15"/>
<rdf:first rdf:resource="http://w3id.org/rml/parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLLogicalSourceShape">
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/logicalSource"/>
<sh:message>
RML Logical Source requires one rml:source and depending on the source
type: one rml:query, one rml:referenceFormulation and/or
one rml:iterator.
</sh:message>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b2"/>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b3"/>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b1"/>
<sh:description>
A logical source is any source that is mapped to RDF triples.
</sh:description>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:name>RML Logical Source</sh:name>
<sh:targetClass rdf:resource="http://w3id.org/rml/LogicalSource"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b31">
<sh:alternativePath rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b32"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b118">
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/subjectMap"/>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/quotedTriplesMap"/>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/subject"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:name>subjectMap/subject/quotedTriplesMap</sh:name>
<sh:description>
Either a rml:subject, rml:subjectMap or a rml:quotedTriplesMap is required, not multiple.
</sh:description>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
<sh:message>
Either a rml:subject, rml:subjectMap or a rml:quotedTriplesMap is required, not multiple.
</sh:message>
<sh:path rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b119"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b6">
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:description>
rml:query specifies the query to execute on a data source if that data
source suports it.
</sh:description>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#Literal"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:datatype rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<sh:message>
rml:query must be provided as a string Literal.
</sh:message>
<sh:name>rml:query</sh:name>
<sh:path rdf:resource="http://w3id.org/rml/query"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b14">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b8"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b117">
<sh:message>
rml:PredicateObjectMap must be an IRI or blank node.
</sh:message>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLPredicateObjectMapShape"/>
<sh:path rdf:resource="http://w3id.org/rml/predicateObjectMap"/>
<sh:name>predicateObjectMap</sh:name>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/predicateObjectMap"/>
<sh:description>
A Predicate Object Map element to generate a (predicate, object) pair.
</sh:description>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b103">
<sh:name>parentTriplesMap</sh:name>
<sh:targetSubjectsOf rdf:resource="http://www.w3.org/ns/r2rml#parentTriplesMap"/>
<sh:message>
rml:parentTriplesMap may only be provided once and must be an IRI
or Blank Node referring to a Triples Map.
</sh:message>
<sh:class rdf:resource="http://www.w3.org/ns/r2rml#TriplesMap"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLTriplesMapShape"/>
<sh:description>
Specifies the Triples Map element corresponding to the parent data
source of the foreign key constraint.
</sh:description>
<sh:path rdf:resource="http://www.w3.org/ns/r2rml#parentTriplesMap"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLchildShape">
<sh:targetSubjectsOf rdf:resource="http://www.w3.org/ns/r2rml#child"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:description>
A Literal reference to use as reference to the child data source.
</sh:description>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#Literal"/>
<sh:message>
rml:child shortcut for rml:ChildMap must be a Literal.
</sh:message>
<sh:name>child</sh:name>
<sh:datatype rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb18">
<rdf:first rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb16"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b7">
<sh:message>
rml:query must be provided as an IRI.
</sh:message>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:description>
rml:compression specifies the compression algorithm to use when
accessing the data source. By default, no compression is applied.
</sh:description>
<sh:path rdf:resource="http://w3id.org/rml/compression"/>
<sh:name>rml:compression</sh:name>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b137">
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<sh:name>termType</sh:name>
<sh:in rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b138"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:message>
rml:termType must be either rml:IRI, rml:Literal, or rml:BlankNode
for a Term Map. May only be provided once.
</sh:message>
<sh:description>
An IRI indicating whether a generated term should be an IRI,
Blank Node, or a Literal.
</sh:description>
<sh:path rdf:resource="http://w3id.org/rml/termType"/>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/termType"/>
</rdf:Description>
<rdf:Description rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b20">
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
<sh:message>
Exactly one rml:inputValue or rml:inputValueMap is required.
</sh:message>
<sh:description>
Exactly one rml:inputValue or rml:inputValueMap is required.
</sh:description>
<sh:name>rml:inputValue/rml:inputValueMap</sh:name>
<sh:path rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b21"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b2">
<sh:message>
One rml:gatherAs is required.
</sh:message>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<sh:description>
rml:gatherAs specifies how to gather the collection e.g. a rdf:Alt,
rdf:List, rdf:Bag, or rdf:Seq.
</sh:description>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:name>gatherAs</sh:name>
<sh:path rdf:resource="http://w3id.org/rml/gatherAs"/>
<sh:in rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b3"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b58">
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/datatype"/>
<sh:path rdf:resource="http://w3id.org/rml/datatype"/>
<sh:description>
Datatype for the object.
</sh:description>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLdatatypeShape"/>
<sh:name>datatype</sh:name>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b112">
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b113"/>
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLLogicalTargetPropertiesShape"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b47">
<rdf:first rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b42"/>
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b48"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b12">
<sh:description>
rml:serialization specifies the serialization format to use when
exporting the generated RDF to a target. By default N-Quads is used.
</sh:description>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<sh:path rdf:resource="http://w3id.org/rml/serialization"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:message>
rml:serialization must be provided as an IRI.
</sh:message>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:name>rml:serialization</sh:name>
</rdf:Description>
<rdf:Description rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b18">
<sh:description>
Parameters to supply to FnO function.
</sh:description>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLParameterMap"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:message>
rml:parameterMap must be an IRI or Blank node.
</sh:message>
<sh:path rdf:resource="http://w3id.org/rml/parameterMap"/>
<sh:name>rml:parameterMap</sh:name>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLFunctionExecutionShape">
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b5"/>
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b6"/>
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b7"/>
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b1"/>
<sh:name>rml:FunctionExecution</sh:name>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:description>
Represents a Function Execution.
</sh:description>
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/functionExecution"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b4">
<rdf:first rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:rest rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b5"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b7">
<rdf:first rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b3"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b49">
<sh:path rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b50"/>
<sh:description>
rml:language/rml:languageMap and rml:datatype/rml:datatypeMap
may only be provided once and not at the same time.
</sh:description>
<sh:name>languageMap/datatypeMap/language/datatype</sh:name>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
</rdf:Description>
<rdf:Description rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b25">
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLTermMapShape"/>
<rdf:rest rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b26"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb17">
<rdf:rest rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb18"/>
<rdf:first rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb15"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b21">
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/returnMap"/>
<sh:description>
A Return Map rml:returnMap is used to define the return values of a FnO
function from the RML-FNML specification. RML Core only validates if the
property is present and has the right node kind. The actual validation
happens with RML-FNML SHACL shapes.
</sh:description>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:name>returnMap</sh:name>
<sh:path rdf:resource="http://w3id.org/rml/returnMap"/>
<sh:message>
rml:returnMap must be an IRI;
</sh:message>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLparentShape">
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:name>parent</sh:name>
<sh:message>
rml:parent shortcut for rml:ParentMap must be a Literal.
</sh:message>
<sh:description>
A Literal reference to use as reference to the parent data source.
</sh:description>
<sh:targetSubjectsOf rdf:resource="http://www.w3.org/ns/r2rml#parent"/>
<sh:datatype rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#Literal"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b13">
<rdf:first rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b7"/>
<rdf:rest rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b14"/>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLExpressionMapShape">
<sh:description>
Represents a Expression Map.
</sh:description>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b21"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b24"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b22"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b20"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b13"/>
<sh:property rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b23"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:name>ExpressionMap</sh:name>
<sh:message>
Expression Map requires one rml:template or one rml:constant or one
rml:reference.
</sh:message>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b35">
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLchildShape"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<sh:description>
Specifies the child of the object component for joining.
</sh:description>
<sh:name>child</sh:name>
<sh:targetSubjectsOf rdf:resource="http://www.w3.org/ns/r2rml#child"/>
<sh:path rdf:resource="http://www.w3.org/ns/r2rml#child"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b34">
<sh:path rdf:resource="http://www.w3.org/ns/r2rml#childMap"/>
<sh:message>
rml:childMap must point to a rml:ChildMap specifying the
child of the Literal.
</sh:message>
<sh:name>childMap</sh:name>
<sh:description>
Specifies the child of the object component for joining.
</sh:description>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLChildMapShape"/>
<sh:targetSubjectsOf rdf:resource="http://www.w3.org/ns/r2rml#childMap"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLParameterMapShape">
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:and rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b25"/>
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/parameterMap"/>
<sh:name>ParameterMap</sh:name>
<sh:description>
Represents a Parameter Map of a function.
</sh:description>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b92">
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b93"/>
<rdf:first rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b89"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb13">
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:path rdf:resource="http://w3id.org/rml/quotedTriplesMap"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
<sh:name>quotedTriplesMap</sh:name>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:description>
An Quoted Triples Map element to generate a RDF-star triple as
subject or object or another triple from a logical source record.
</sh:description>
<sh:message>
Exactly one rml:quotedTriplesMap is required.
</sh:message>
</rdf:Description>
<rdf:Description rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb10">
<rdf:first rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb1"/>
<rdf:rest rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb11"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b48">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b44"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b24">
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/constant"/>
<sh:description>
A property for indicating whether a term map is a constant-valued term
map.
</sh:description>
<sh:path rdf:resource="http://w3id.org/rml/constant"/>
<sh:name>constant</sh:name>
<sh:message>
rml:constant must be an IRI or Literal.
</sh:message>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b101">
<rdf:first rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b87"/>
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b102"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b131">
<sh:message>
Either an rml:graph or rml:graphMap may be optionally be provided,
but not both.
</sh:message>
<sh:description>
Either an rml:graph or rml:graphMap may be optionally be provided,
but not both.
</sh:description>
<sh:name>graph/graphMap</sh:name>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:path rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b132"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
</rdf:Description>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b9">
<sh:path rdf:resource="http://w3id.org/rml/null"/>
<sh:description>
rml:null specifies which data values inside the source should be
considered as NULL. Defaults to the default NULL character of a source,
if available.
</sh:description>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#Literal"/>
<sh:name>rml:null</sh:name>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:message>
rml:null must be provided as a Literal.
</sh:message>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b106">
<sh:message>
rml:class must be an IRI and may be specified multiple times.
</sh:message>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<sh:path rdf:resource="http://w3id.org/rml/class"/>
<sh:name>class</sh:name>
<sh:description>
The subject value generated will be asserted as an instance of this
RDFS class.
</sh:description>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/class"/>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLSubjectMapShape">
<sh:name>SubjectMap</sh:name>
<sh:description>
Represents a Subject Map.
</sh:description>
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/subjectMap"/>
<sh:targetClass rdf:resource="http://w3id.org/rml/SubjectMap"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:message>
Subject Map must generate an IRI representing the subject of an RDF triple.
</sh:message>
<sh:and rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b110"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b4">
<sh:message>
rml:target must be provided to locate the target. rml:target must
be provided exactly once as an URI.
</sh:message>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLTargetShape"/>
<sh:path rdf:resource="http://w3id.org/rml/target"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
<sh:name>rml:target</sh:name>
<sh:description>
The target (rml:target) locates the output target. It is a URI
that represents the target where it must export generated RDF triples
to.
</sh:description>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
</rdf:Description>
<rdf:Description rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b21">
<sh:alternativePath rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b22"/>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLlanguageShape">
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/language"/>
<sh:pattern>^((?:(en-GB-oed|i-ami|i-bnn|i-default|i-enochian|i-hak|i-klingon|i-lux|i-mingo|i-navajo|i-pwn|i-tao|i-tay|i-tsu|sgn-BE-FR|sgn-BE-NL|sgn-CH-DE)|(art-lojban|cel-gaulish|no-bok|no-nyn|zh-guoyu|zh-hakka|zh-min|zh-min-nan|zh-xiang))|((?:([A-Za-z]{2,3}(-(?:[A-Za-z]{3}(-[A-Za-z]{3}){0,2}))?)|[A-Za-z]{4})(-(?:[A-Za-z]{4}))?(-(?:[A-Za-z]{2}|[0-9]{3}))?(-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(-(?:[0-9A-WY-Za-wy-z](-[A-Za-z0-9]{2,8})+))*(-(?:x(-[A-Za-z0-9]{1,8})+))?)|(?:x(-[A-Za-z0-9]{1,8})+))$</sh:pattern>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#Literal"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:name>language</sh:name>
<sh:description>
Specified the language for the generated Literal.
</sh:description>
<sh:message>
rml:language must be a valid language tag according to BCP47 and may
only be provided once as string.
</sh:message>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLInputShape">
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b18"/>
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b17"/>
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b19"/>
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b20"/>
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b12"/>
<sh:property rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b16"/>
<sh:name>rml:Input</sh:name>
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/input"/>
<sh:description>
Represents an Input for a function.
</sh:description>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b115">
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:path rdf:resource="http://w3id.org/rml/logicalSource"/>
<sh:name>logicalSource</sh:name>
<sh:description>
A logical source is any source that is mapped to RDF triples.
</sh:description>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
<sh:message>
Exactly one rml:logicalSource is required to access the data source.
</sh:message>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/logicalSource"/>
</rdf:Description>
<rdf:Description rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b17">
<sh:description>
Parameters to supply to FnO function.
</sh:description>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:message>
rml:inputValue must be a string Literal.
</sh:message>
<sh:datatype rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#Literal"/>
<sh:path rdf:resource="http://w3id.org/rml/inputValue"/>
<sh:name>rml:inputValue</sh:name>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b22">
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:description>
A Function Execution rml:functionExecution is used to define the FnO
function to execute from the RML-FNML specification. RML Core only
validates if the property is present and has the right node kind.
The actual validation happens with RML-FNML SHACL shapes.
</sh:description>
<sh:path rdf:resource="http://w3id.org/rml/functionExecution"/>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/functionExecution"/>
<sh:name>functionExecution</sh:name>
<sh:message>
rml:functionExecution must be an IRI;
</sh:message>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b79">
<rdf:first rdf:resource="http://w3id.org/rml/predicateMap"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b108">
<rdf:first rdf:resource="http://w3id.org/rml/IRI"/>
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b109"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb26">
<rdf:rest rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb27"/>
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLTriplesMapPropertiesShape"/>
</rdf:Description>
<rdf:Description rdf:nodeID="nebad10b7dac1425596dac561ec2574e7b16">
<sh:name>rml:inputValueMap</sh:name>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:path rdf:resource="http://w3id.org/rml/inputValueMap"/>
<sh:description>
Values of the parameters.
</sh:description>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:message>
rml:inputValueMap must be an IRI or Blank node, provided once.
</sh:message>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b107">
<sh:in rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b108"/>
<sh:path rdf:resource="http://w3id.org/rml/termType"/>
<sh:message>
rml:termType must be a rml:IRI or rml:BlankNode for Subject Map.
</sh:message>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b13">
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/reference"/>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/constant"/>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/functionExecution"/>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/template"/>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/returnMap"/>
<sh:name>template/constant/reference/returnMap/functionExecution</sh:name>
<sh:message>
Exactly one rml:template, one rml:constant, one rml:reference,
one rml:returnMap, or one rml:functionExecution is required.
</sh:message>
<sh:description>
Exactly one rml:template, one rml:constant, one rml:reference,
one rml:returnMap, or one rml:functionExecution is required.
</sh:description>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:path rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b14"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b99">
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b100"/>
<rdf:first rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b81"/>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLLanguageMapShape">
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:name>LanguageMap</sh:name>
<sh:message>
rml:LanguageMap must specify an rml:template or rml:constant with the IRI
of the language.
</sh:message>
<sh:and rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b45"/>
<sh:description>
Represents a Language Map.
</sh:description>
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/languageMap"/>
<sh:targetClass rdf:resource="http://w3id.org/rml/LanguageMap"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b30">
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:description>
rml:parent/rml:parentMap may only be provided once and
not at the same time.
</sh:description>
<sh:name>parentMap/parent</sh:name>
<sh:path rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b31"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b8">
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
<sh:name>gather</sh:name>
<sh:path rdf:resource="http://w3id.org/rml/gather"/>
<sh:description>
RML Term Maps to gather in the collection or container.
</sh:description>
<sh:message>
one or more rml:gather properties are needed, each pointing to a
RML Term Map.
</sh:message>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLTargetShape">
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b12"/>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b10"/>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b11"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:message>
RML Target accepts one rml:compression, and one rml:encoding.
All of them are optional.
</sh:message>
<sh:description>
A target describes access to a data target. Any data access description
is allowed, but rml:Target provides additional properties to complete
such descriptions.
</sh:description>
<sh:name>RML Target</sh:name>
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/target"/>
<sh:targetClass rdf:resource="http://w3id.org/rml/Target"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b125">
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLStarMapShape"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b9">
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLTermMapShape"/>
<rdf:rest rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b10"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b110">
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b111"/>
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLTermMapShape"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b11">
<sh:description>
rml:encoding specifies the encoding to use when accessing the data
target. By default, UTF-8 is used.
</sh:description>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:path rdf:resource="http://w3id.org/rml/encoding"/>
<sh:name>rml:encoding</sh:name>
<sh:message>
rml:encoding must be provided as an IRI.
</sh:message>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#IRI"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b141">
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLExpressionMapShape"/>
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b142"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b25">
<sh:in rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b26"/>
<sh:message>
rml:termType must be an IRI for a Graph Map.
</sh:message>
<sh:path rdf:resource="http://w3id.org/rml/termType"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b4">
<rdf:first rdf:resource="http://www.w3.org/ns/r2rml#Literal"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b116">
<sh:message>
rml:subject must be an IRI or blank node.
</sh:message>
<sh:node rdf:resource="http://w3id.org/rml/shapes/RMLsubjectShape"/>
<sh:description>
An IRI reference for use as subject for all generated RDF triples.
</sh:description>
<sh:name>subject</sh:name>
<sh:targetSubjectsOf rdf:resource="http://w3id.org/rml/subject"/>
<sh:path rdf:resource="http://w3id.org/rml/subject"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb12">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb7"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b119">
<sh:alternativePath rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b120"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b7">
<sh:name>allowEmptyListAndContainer</sh:name>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:path rdf:resource="http://w3id.org/rml/allowEmptyListAndContainer"/>
<sh:description>
Defines the behavior when the collection is empty. True will generate
a rdf:nil for a RDF collection or a resource with no members for an RDF
container. False will not generate any collection or container.
Default is false.
</sh:description>
<sh:message>
Zero or one rml:allowEmptyListAndContainer is required with datatype
xsd:boolean.
</sh:message>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#Literal"/>
<sh:datatype rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b28">
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLLogicalTargetPropertiesShape"/>
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b29"/>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLobjectShape">
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/object"/>
<sh:name>object</sh:name>
<sh:message>
rml:object shortcut for rml:objectMap must be an IRI, Blank Node,
or Literal.
</sh:message>
<sh:description>
An IRI, Blank Node, or Literal to use as object for all the RDF triples.
</sh:description>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLGatherMapShape">
<sh:and rdf:nodeID="n133d80b2c754401c8707a7dd30178a59b9"/>
<sh:message>
Gather Map requires one rml:strategy, one rml:gatherAs, and a list of
Term Map with rml:gather.
</sh:message>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:name>GatherMap</sh:name>
<sh:description>
Represents a Gather Map.
</sh:description>
</rdf:Description>
<rdf:Description rdf:nodeID="n4d0f161ab5054b8ab6995085574b3efdb15">
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
<sh:path rdf:resource="http://w3id.org/rml/predicate"/>
</rdf:Description>
<rdf:Description rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b46">
<rdf:first rdf:resource="http://w3id.org/rml/shapes/RMLLogicalTargetPropertiesShape"/>
<rdf:rest rdf:nodeID="naecdaccc9f204b5eb054431a545ecf70b47"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b3">
<sh:name>rml:referenceFormulation</sh:name>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</sh:minCount>
<sh:path rdf:resource="http://w3id.org/rml/referenceFormulation"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:message>
rml:referenceFormulation must be a blank node or IRI specifying the
reference formulation on how to reference elements of a data source.
</sh:message>
<sh:description>
The reference formulation (rml:referenceFormulation) defines how to
reference to elements of the data of the input source.
</sh:description>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLSourceShape">
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/source"/>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b9"/>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b6"/>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b7"/>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b5"/>
<sh:property rdf:nodeID="n0e4c16ba52da4094925083ee40a6f3d4b8"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:message>
RML Source accepts one or multiple rml:null, one rml:query,
one rml:compression, and one rml:encoding. All of them are optional.
</sh:message>
<sh:name>RML Source</sh:name>
<sh:description>
A source describes access to a data source. Any data access description
is allowed, but rml:Source provides additional properties to complete
such descriptions.
</sh:description>
<sh:targetClass rdf:resource="http://w3id.org/rml/Source"/>
</rdf:Description>
<rdf:Description rdf:about="http://w3id.org/rml/shapes/RMLsubjectShape">
<sh:targetObjectsOf rdf:resource="http://w3id.org/rml/subject"/>
<sh:name>subject</sh:name>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:nodeKind rdf:resource="http://www.w3.org/ns/shacl#BlankNodeOrIRI"/>
<sh:message>
rml:subject shortcut for rml:SubjectMap must be a IRI or BlankNode.
</sh:message>
<sh:description>
An IRI reference to use as subject for all the RDF triples.
</sh:description>
</rdf:Description>