-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.html
5351 lines (5101 loc) · 258 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Shapes Constraint Language (SHACL)</title>
<meta charset="utf-8">
<script src="https://www.w3.org/Tools/respec/respec-w3c-common" async class="remove"></script>
<script class="remove">
var prepareSyntaxRules = function() {
var ttl = $("#shacl-shacl-pre").html();
$("[data-syntax-rule]").each(function(index, element) {
var ruleId = $(element).attr("data-syntax-rule");
var tr = $("<tr class=\"syntax-rule-tr\"><td class=\#syntax-rule-id\"><a class=\"syntax-rule-id-a\" href=\"#syntax-rule-" + ruleId + "\">" + ruleId + "</a></td><td>" + $(element).html() + "</td></tr>");
tr.find("dfn").replaceWith(function(el) { return $("<a>" + $(this).text() + "</a>"); });
$("#syntax-rules-table").append(tr);
$(element).attr("id", "syntax-rule-" + ruleId);
if("shape" !== ruleId) {
ttl = ttl.split("# " + ruleId).join("<a href=\"#syntax-rule-" + ruleId + "\"># " + ruleId + "</a>");
}
});
$("#shacl-shacl-pre").html(ttl);
};
var prepareValidators = function() {
$("[data-validator]").each(function(index, element) {
var validatorId = $(element).attr("data-validator") + "ConstraintComponent";
var tr = $("<tr class=\"validator-tr\"><td><a class=\"validator-id-a\" href=\"#validator-" + validatorId + "\">sh:" + validatorId + "</a>: " + $(element).html() + "</td></tr>");
$("#validators-table").append(tr);
$(element).attr("id", "validator-" + validatorId);
});
};
var respecConfig = {
edDraftURI: "https://w3c.github.io/data-shapes/shacl/",
issueBase: "http://www.w3.org/2014/data-shapes/track/issues/",
specStatus: "ED",
crEnd: "2017-05-09",
// publishDate: "2017-04-11",
implementationReportURI: "http://w3c.github.io/data-shapes/data-shapes-test-suite/",
preProcess : [ prepareSyntaxRules, prepareValidators ],
previousPublishDate: "2017-03-03",
previousMaturity: "WD",
shortName: "shacl",
editors: [
{
name: "Holger Knublauch",
url: "http://knublauch.com/",
company: "TopQuadrant, Inc.",
companyURL: "http://topquadrant.com/",
w3cid: 46500
},
{
name: "Dimitris Kontokostas",
url: "http://Kontokostas.com",
company: "University of Leipzig",
companyURL: "http://informatik.uni-leipzig.de/",
w3cid: 58399
}
],
otherLinks: [
{
key: "Repository",
data: [
{
value: "GitHub",
href: "https://github.com/w3c/data-shapes"
},
{
value: "Issues",
href: "https://github.com/w3c/data-shapes/issues"
}
]
},
{
key: "Test Suite",
data: [
{
value: "SHACL Test Suite",
href: "http://w3c.github.io/data-shapes/data-shapes-test-suite/"
}
]
}
],
errata: "https://www.w3.org/2017/shacl/errata",
wg: "RDF Data Shapes Working Group",
wgURI: "https://www.w3.org/2014/data-shapes/",
wgPublicList: "public-rdf-shapes",
wgPatentURI: "https://www.w3.org/2004/01/pp-impl/73865/status",
noHighlightCSS: true
};
</script>
<style>
pre {
tab-size: 3;
-moz-tab-size: 3; /* Code for Firefox */
-o-tab-size: 3; /* Code for Opera */
}
th {
text-align: left;
}
table.rule { background-color: #EBEBE0; }
table.rule td { text-align: center; }
td.up { border-bottom:1px solid black; }
td {
vertical-align: top;
}
.algorithm {
background: #fafafc;
border-left-style: solid;
border-left-width: .5em;
border-color: #c0c0c0;
margin-bottom: 16px;
padding: 8px;
}
.arg {
font-weight: bold;
color: #000080;
}
.def {
background: #fcfcfc;
border-left-style: solid;
border-left-width: .5em;
border-color: #c0c0c0;
margin-bottom: 16px;
}
.def-sparql {
}
.def-sparql-body {
margin-top: 0px;
margin-bottom: 0px;
}
.def-text {
}
.def-text-body {
}
.def-header {
color: #a0a0a0;
font-size: 16px;
padding-bottom: 8px;
}
.diagram-class {
border: 1px solid black;
border-radius: 4px;
width: 360px;
}
.diagram-class-name {
font-size: 16px;
font-weight: bold;
text-align: center;
}
.diagram-class-properties {
border-top: 1px solid black;
}
.diagram-class-properties-start {
padding: 8px;
}
.diagram-class-properties-section {
border-top: 1px dashed #808080;
padding: 8px;
}
.focus-node-selected {
color: blue;
}
.focus-node-error {
color: red;
}
.triple-can-be-skipped {
color: grey;
}
.focus-node-error {
color: red;
}
.target-can-be-skipped {
color: darkslategray;
font-style: italic;
}
.component-class {
font-weight: bold;
font-size: 16px;
}
.parameter-context {
font-weight: bold;
font-size: 16px;
}
.parameters {
font-weight: bold;
font-size: 16px;
}
.part-header {
font-weight: bold;
}
.syntax {
border-left-style: solid;
border-left-width: .5em;
border-color: #d0d0d0;
margin-bottom: 16px;
padding: .5em 1em;
background-color: #f6f6f6;
}
.syntax-rule-id {
padding-right: 10px;
}
.syntax-rule-id-a {
white-space: nowrap;
}
.validator-id-a {
font-weight: bold;
white-space: nowrap;
}
.term {
font-style: italic;
}
.term-def-header {
font-style: italic;
font-weight: bold;
}
.term-table {
border-collapse: collapse;
border-color: #000000;
margin: 16px;
}
.term-table td, th {
border-width: 1px;
border-style: solid;
padding: 5px;
}
.todo {
color: red;
}
pre {
word-wrap: normal;
}
/* example pre taken / adapted from R2RML */
pre.shapes, pre.example-shapes, pre.example-data, pre.example-results, pre.example-other { margin-left: 0; padding: 0 2em; margin-top: 1.5em; padding: 1em; }
pre.example-shapes:before, pre.example-data:before, pre.example-results:before, pre.example-other:before { background: white; display: block; font-family: sans-serif; margin: -1em 0 0.4em -1em; padding: 0.2em 1em; }
pre.shapes, pre.example-shapes { background: #deb; }
pre.shapes, pre.example-shapes, pre.example-shapes:before { border: 1px solid #bbb; }
pre.example-shapes:before { color: #888; content: "Example shapes graph"; width: 13em; }
pre.example-data { background: #eeb; }
pre.example-data, pre.example-data:before { border: 1px solid #cc9; }
pre.example-data:before { color: #996; content: "Example data graph"; width: 13em; }
.example-results { background: #edb; }
.example-results, .example-results:before, .example-results th, .example-results td { border: 1px solid #cca; }
pre.example-results:before { color: #997; content: "Example validation results"; width: 13em; }
pre.example-other { background: #bed; }
pre.example-other, pre.example-other:before { border: 1px solid #ddd; }
pre.example-other:before { color: #888; content: "Example"; width: 13em; }
/* our syntax menu for switching */
div.syntaxmenu {
border: 1px dotted black;
padding:0.5em;
margin: 1em;
}
@media print {
div.syntaxmenu { display:none; }
}
</style>
</head>
<body>
<section id="abstract">
<p>
This document defines the SHACL Shapes Constraint Language, a language for validating RDF graphs against a set of conditions.
These conditions are provided as shapes and other constructs expressed in the form of an RDF graph.
RDF graphs that are used in this manner are called "shapes graphs" in SHACL and
the RDF graphs that are validated against a shapes graph are called "data graphs".
As SHACL shape graphs are used to validate that data graphs satisfy a set of conditions
they can also be viewed as a description of the data graphs that do satisfy these conditions.
Such descriptions may be used for a variety of purposes beside validation, including
user interface building, code generation and data integration.
</p>
</section>
<section id="sotd">
</section>
<section class="introductory">
<h2>Document Outline</h2>
<p>
The introduction includes a <a href="#terminology">Terminology</a> section.
</p>
<p>
The sections 2 - 4 cover the <a>SHACL Core</a> language and may be read independently from the later sections.
</p>
<p>
The sections 5 and 6 are about the features that <a>SHACL-SPARQL</a> has in addition to the Core language.
These advanced features are SPARQL-based constraints and constraint components.
</p>
<p>
The syntax of SHACL is RDF.
The examples in this document use Turtle [[!turtle]] and (in one instance) JSON-LD [[json-ld]].
Other RDF serializations such as RDF/XML may be used in practice.
The reader should be familiar with basic RDF concepts [[!rdf11-concepts]] such as triples and, for the advanced concepts of SHACL, with SPARQL [[!sparql11-query]].
</p>
</section>
<section id="introduction">
<h2>Introduction</h2>
<p>
This document specifies SHACL (Shapes Constraint Language), a language for describing and validating RDF graphs.
This section introduces SHACL with an overview of the key terminology and an example to illustrate basic concepts.
</p>
<section id="terminology">
<h3>Terminology</h3>
<p>
Throughout this document, the following terminology is used.
</p>
<p>
Terminology that is linked to portions of RDF 1.1 Concepts and Abstract
Syntax is used in SHACL as defined there. Terminology that is linked to
portions of SPARQL 1.1 Query Language is used in SHACL as defined there. A
single linkage is sufficient to provide a definition for all occurences of a
particular term in this document.
</p>
<p>
Definitions are complete within this document, i.e., if there is no rule to
make some situation true in this document then the situation is false.
</p>
<div class="def" id="rdf-terminology">
<div class="term-def-header">Basic RDF Terminology</div>
<div>
This document uses the terms
<a href="http://www.w3.org/TR/rdf11-concepts/#dfn-rdf-graph"><dfn data-lt="graph|graphs|RDF graphs">RDF graph</dfn></a>,
<a href="http://www.w3.org/TR/rdf11-concepts/#dfn-rdf-triple"><dfn data-lt="triple|triples">RDF triple</dfn></a>,
<a href="http://www.w3.org/TR/rdf11-concepts/#dfn-iri"><dfn data-lt="IRI|IRIs">IRI</dfn></a>,
<a href="http://www.w3.org/TR/rdf11-concepts/#dfn-literal"><dfn data-lt="literal|literals">literal</dfn></a>,
<a href="http://www.w3.org/TR/rdf11-concepts/#dfn-blank-node"><dfn data-lt="blank node|blank nodes">blank node</dfn></a>,
<a href="http://www.w3.org/TR/rdf11-concepts/#dfn-node"><dfn data-lt="node|nodes">node</dfn></a> of an RDF graph,
<a href="http://www.w3.org/TR/rdf11-concepts/#dfn-rdf-term"><dfn>RDF term</dfn></a>, and
<a href="https://www.w3.org/TR/rdf11-concepts/#dfn-subject"><dfn data-lt="subject|subjects">subject</dfn></a>,
<a href="https://www.w3.org/TR/rdf11-concepts/#dfn-predicate"><dfn data-lt="predicate|predicates">predicate</dfn></a>, and
<a href="https://www.w3.org/TR/rdf11-concepts/#dfn-object"><dfn data-lt="object|objects">object</dfn></a> of RDF triples, and
<a href="https://www.w3.org/TR/rdf11-concepts/#dfn-datatype"><dfn data-lt="datatypes">datatype</dfn></a>
as defined in RDF 1.1 Concepts and Abstract Syntax [[!rdf11-concepts]].
<dfn data-lt="language tag">Language tags</dfn> are defined as in [[!BCP47]].
</div>
</div>
<div class="def">
<div class="term-def-header">Property Value and Path</div>
<div>
A <dfn data-lt="properties">property</dfn> is an <a>IRI</a>.
An <a>RDF term</a> <code>n</code> has a <dfn data-lt="values|property value|property values">value</dfn> <code>v</code>
for property <code>p</code> in an <a>RDF graph</a> if there is an <a>RDF triple</a> in the graph
with <a>subject</a> <code>n</code>, <a>predicate</a> <code>p</code>, and <a>object</a> <code>v</code>.
The phrase "Every value of P in graph G ..." means "Every object of a triple in G with predicate P ...".
(In this document, the verbs <em>specify</em> or <em>declare</em> are sometimes used to express the fact that an RDF term has values for a given predicate in a graph.)
<br />
<dfn data-lt="SPARQL property path">SPARQL property paths</dfn> are defined as in <a href="https://www.w3.org/TR/sparql11-query/#pp-language">SPARQL 1.1</a>.
An RDF term <code>n</code> has value <code>v</code> for <a>SPARQL property path</a> expression
<code>p</code> in an RDF graph <code>G</code> if there is a solution mapping in the result of the SPARQL query
<code>SELECT ?s ?o WHERE { ?s p' ?o }</code> on <code>G</code> that binds <code>?s</code> to
<code>n</code> and <code>?o</code> to <code>v</code>, where <code>p'</code> is SPARQL surface syntax for <code>p</code>.
</div>
</div>
<div class="def">
<div class="term-def-header">SHACL Lists</div>
<div>
<span data-syntax-rule="SHACL-list">A <dfn data-lt="SHACL lists">SHACL list</dfn> in an RDF graph <code>G</code> is an <a>IRI</a> or a <a>blank node</a>
that is either <code>rdf:nil</code> (provided that <code>rdf:nil</code> has no <a>value</a>
for either <code>rdf:first</code> or <code>rdf:rest</code>), or has exactly one <a>value</a>
for the property <code>rdf:first</code> in <code>G</code> and exactly one <a>value</a>
for the property <code>rdf:rest</code> in <code>G</code> that is also a SHACL list in <code>G</code>,
and the list does not have itself as a value of the property path <code>rdf:rest+</code> in <code>G</code>.</span>
<br />
The <dfn data-lt="member">members</dfn> of any SHACL list except <code>rdf:nil</code> in an RDF
graph <code>G</code> consist of its value for <code>rdf:first</code> in <code>G</code> followed by
the members in <code>G</code> of its value for <code>rdf:rest</code> in <code>G</code>.
The SHACL list <code>rdf:nil</code> has no members in any RDF graph.
</div>
</div>
<div class="def">
<div class="term-def-header">Binding, Solution</div>
<div>
A <dfn data-lt="bindings">binding</dfn> is a pair (<a href="https://www.w3.org/TR/sparql11-query/#defn_QueryVariable">variable</a>, <a>RDF term</a>), consistent with the term's use in <a href="https://www.w3.org/TR/sparql11-query/">SPARQL</a>.
A <dfn data-lt="solutions">solution</dfn> is a set of bindings, informally often understood as one row in the body of the result table of a SPARQL query.
Variables are not required to be bound in a solution.
</div>
</div>
<div class="def">
<div class="term-def-header">SHACL Subclass, SHACL superclass</div>
<div>
A <a>node</a> <code>Sub</code> in an <a>RDF graph</a> is a <dfn data-lt="subclasses|subclass|SHACL subclasses">SHACL subclass</dfn> of another <a>node</a> <code>Super</code>
in the <a>graph</a> if there is a sequence of <a>triples</a> in the <a>graph</a> each with predicate <code>rdfs:subClassOf</code> such that the <a>subject</a> of the first <a>triple</a> is <code>Sub</code>,
the <a>object</a> of the last triple is <code>Super</code>, and the <a>object</a> of each <a>triple</a> except the last is the <a>subject</a> of the next.
If <code>Sub</code> is a <a>SHACL subclass</a> of <code>Super</code> in an <a>RDF graph</a> then <code>Super</code>
is a <dfn data-lt="superclass|superclasses|SHACL superclasses|">SHACL superclass</dfn> of <code>Sub</code> in the <a>graph</a>.
</div>
</div>
<div class="def">
<div class="term-def-header">SHACL Type</div>
<div>
The <dfn data-lt="type|types|SHACL type">SHACL types</dfn> of an <a>RDF term</a> in an <a>RDF graph</a> is the set of its <a>values</a> for <code>rdf:type</code> in the
<a>graph</a> as well as the <a>SHACL superclasses</a> of these <a>values</a> in the <a>graph</a>.
</div>
</div>
<div class="def">
<div class="term-def-header">SHACL Class</div>
<div>
<a>Nodes</a> in an <a>RDF graph</a> that are subclasses, superclasses, or types of <a>nodes</a> in the <a>graph</a> are referred to as <dfn data-lt="class|classes|SHACL classes">SHACL class</dfn>.
</div>
</div>
<div class="def">
<div class="term-def-header">SHACL Class Instance</div>
<div>
A <a>node</a> <code>n</code> in an <a>RDF graph</a> <code>G</code> is a <dfn data-lt="SHACL instance|SHACL instances">SHACL instance</dfn> of a <a>SHACL class</a> <code>C</code> in <code>G</code>
if one of the <a>SHACL types</a> of <code>n</code> in <code>G</code> is <code>C</code>.
</div>
</div>
<div class="def">
<div class="term-def-header">SHACL Core and SHACL-SPARQL</div>
<div>
The SHACL specification is divided into SHACL Core and SHACL-SPARQL.
<dfn>SHACL Core</dfn> consists of frequently needed features for the representation of shapes, constraints and targets.
All SHACL implementations MUST at least implement SHACL Core.
<dfn>SHACL-SPARQL</dfn> consists of all features of SHACL Core plus the advanced features
of SPARQL-based constraints and an extension mechanism to declare new constraint components.
</div>
</div>
</section>
<section id="conventions">
<h3>Document Conventions</h3>
<p>
Within this document, the following namespace prefix bindings are used:
</p>
<table class="term-table">
<tr>
<th>Prefix</th>
<th>Namespace</th>
</tr>
<tr>
<td><code>rdf:</code></td>
<td><code>http://www.w3.org/1999/02/22-rdf-syntax-ns#</code></td>
</tr>
<tr>
<td><code>rdfs:</code></td>
<td><code>http://www.w3.org/2000/01/rdf-schema#</code></td>
</tr>
<tr>
<td><code>sh:</code></td>
<td><code><a href="http://www.w3.org/ns/shacl">http://www.w3.org/ns/shacl#</a></code></td>
</tr>
<tr>
<td><code>xsd:</code></td>
<td><code>http://www.w3.org/2001/XMLSchema#</code></td>
</tr>
<tr>
<td><code>ex:</code></td>
<td><code>http://example.com/ns#</code></td>
</tr>
</table>
<p>
Note that the URI of the graph defining the SHACL vocabulary itself is equivalent to
the namespace above, i.e. it includes the <code>#</code>.
References to the SHACL vocabulary, e.g. via <code>owl:imports</code> should include the <code>#</code>.
</p>
<p>
Throughout the document, color-coded boxes containing RDF graphs in Turtle will appear.
These fragments of Turtle documents use the prefix bindings given above.
</p>
<pre class="example-shapes">
# This box represents an input shapes graph
# Triples that can be omitted are marked as grey e.g.
<span class="triple-can-be-skipped"><s> <p> <o> .</span></pre>
<pre class="example-data">
# This box represents an input data graph.
# When highlighting is used in the examples:
# Elements highlighted in blue are <a>focus nodes</a>
<span class="focus-node-selected">ex:Bob</span> a ex:Person .
# Elements highlighted in red are focus nodes that fail <a href="#validation">validation</a>
<span class="focus-node-error">ex:Alice</span> a ex:Person .</pre>
<pre class="example-results">
# This box represents an output results graph</pre>
<p>
SHACL Definitions appear in blue boxes:
</p>
<div class="def def-sparql">
<div class="def-header">SPARQL or TEXTUAL DEFINITIONS</div>
<pre class="def-sparql-body">
# This box contains SPARQL or textual definitions. </pre>
</div>
<p class="syntax">
Grey boxes such as this include syntax rules that apply to the <a>shapes graph</a>.
</p>
<p>
<code>true</code> denotes the RDF term <code>"true"^^xsd:boolean</code>.
<code>false</code> denotes the RDF term <code>"false"^^xsd:boolean</code>.
</p>
</section>
<section id="conformance">
<p>
This document defines the <strong>SHACL Core</strong> language, also referred to as just <strong>SHACL</strong>, as described in Part A,
and the <strong>SHACL-SPARQL</strong> language that extends SHACL Core with constructs described in Part B.
This specification describes conformance criteria for:
</p>
<ul>
<li><strong>SHACL Core processors</strong> as processors that support validation with the SHACL Core Language</li>
<li><strong>SHACL-SPARQL processors</strong> as processors that support validation with the SHACL-SPARQL Language</li>
</ul>
<p>
This document includes syntactic rules that shapes and other nodes need to fulfill in the <a>shapes graph</a>.
These rules are typically of the form <em>A shape must have...</em> or <em>The values of X are literals</em> or <em>All objects of triples with predicate P must be IRIs</em>.
The complete list of these rules can be found in the <a href="#syntax-rules">appendix</a>.
Nodes that violate any of these rules are called <dfn>ill-formed</dfn>.
Nodes that violate none of these rules are called <dfn>well-formed</dfn>.
A <a>shapes graph</a> is ill-formed if it contains at least one ill-formed node.
</p>
<p><em>The remainder of this section is informative.</em></p>
<p>
SHACL Core processors that do not also support SHACL-SPARQL ignore any SHACL-SPARQL constructs
such as <code>sh:sparql</code> <a>triples</a>.
</p>
</section>
<section class="informative">
<h3>SHACL Example</h3>
<p>
The following example <a>data graph</a> contains three <a>SHACL instances</a> of the <a>class</a> <code>ex:Person</code>.
</p>
<pre class="example-data">
ex:Alice
a ex:Person ;
ex:ssn "987-65-432A" .
ex:Bob
a ex:Person ;
ex:ssn "123-45-6789" ;
ex:ssn "124-35-6789" .
ex:Calvin
a ex:Person ;
ex:birthDate "1971-07-07"^^xsd:date ;
ex:worksFor ex:UntypedCompany .</pre>
<p>
The following conditions are shown in the example:
<p>
<ul>
<li>
A <a>SHACL instance</a> of <code>ex:Person</code> can have at most one <a>value</a> for the property <code>ex:ssn</code>,
and this <a>value</a> is a <a>literal</a> with the datatype <code>xsd:string</code> that matches
a specified regular expression.
</li>
<li>
A <a>SHACL instance</a> of <code>ex:Person</code> can have unlimited <a>values</a> for the property <code>ex:worksFor</code>,
and these <a>values</a> are <a>IRIs</a> and <a>SHACL instances</a> of <code>ex:Company</code>.
</li>
<li>
A <a>SHACL instance</a> of <code>ex:Person</code> cannot have <a>values</a> for any other property apart from
<code>ex:ssn</code>, <code>ex:worksFor</code> and <code>rdf:type</code>.
</li>
</ul>
<p>
The aforementioned conditions can be represented as <a>shapes</a> and <a>constraints</a> in the following <a>shapes graph</a>:
</p>
<pre class="example-shapes ttl">
ex:PersonShape
a sh:NodeShape ;
sh:targetClass ex:Person ; # Applies to all persons
sh:property [ # _:b1
sh:path ex:ssn ; # constrains the values of ex:ssn
sh:maxCount 1 ;
sh:datatype xsd:string ;
sh:pattern "^\\d{3}-\\d{2}-\\d{4}$" ;
] ;
sh:property [ # _:b2
sh:path ex:worksFor ;
sh:class ex:Company ;
sh:nodeKind sh:IRI ;
] ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) .</pre>
<p>
The example below shows the same shape definition as a possible JSON-LD [[json-ld]] fragment.
Note that we have left out a <code>@context</code> declaration, and depending on the
<code>@context</code> the rendering may look quite different.
Therefore this example should be understood as an illustration only.
</p>
<pre class="example-shapes jsonld">
{
"@id" : "ex:PersonShape",
"@type" : "NodeShape",
"targetClass" : "ex:Person",
"property" : [
{
"path" : "ex:ssn",
"maxCount" : 1,
"datatype" : "xsd:string" ,
"pattern" : "^\\d{3}-\\d{2}-\\d{4}$"
},
{
"path" : "ex:worksFor",
"class" : "ex:Company",
"nodeKind" : "sh:IRI"
}
],
"closed" : true,
"ignoredProperties" : [ "rdf:type" ]
}</pre>
<p>
We can use the shape declaration above to illustrate some of the key terminology used by SHACL.
The <a>target</a> for the <a>shape</a> <code>ex:PersonShape</code> is the set of all <a>SHACL instances</a> of the <a>class</a> <code>ex:Person</code>.
This is specified using the property <code>sh:targetClass</code>.
During the validation, these target nodes become <a>focus nodes</a> for the shape.
The <a>shape</a> <code>ex:PersonShape</code> is a <a>node shape</a>, which means that it applies to the focus nodes.
It declares <a>constraints</a> on the <a>focus nodes</a>, for example using the <a>parameters</a> <code>sh:closed</code> and <code>sh:ignoredProperties</code>.
The <a>node shape</a> also declares two other constraints with the property <code>sh:property</code>,
and each of these is backed by a <a>property shape</a>.
These <a>property shapes</a> declare additional <a>constraints</a> using <a>parameters</a> such as <code>sh:datatype</code> and <code>sh:maxCount</code>.
</p>
<p>
Some of the <a>property shapes</a> specify parameters from multiple <a>constraint components</a> in order to
restrict multiple aspects of the <a>property values</a>.
For example, in the <a>property shape</a> for <code>ex:ssn</code>, parameters from three <a>constraint components</a> are used.
The <a>parameters</a> of these <a>constraint components</a> are <code>sh:datatype</code>, <code>sh:pattern</code> and <code>sh:maxCount</code>.
For each <a>focus node</a> the <a>property values</a> of <code>ex:ssn</code> will be validated against all three components.
</p>
<p>
SHACL <a>validation</a> based on the provided <a>data graph</a> and <a>shapes graph</a> would produce the following <a>validation report</a>.
See the section <a href="#validation-report">Validation Report</a> for details on the format.
</p>
<pre class="example-results">
[ a sh:ValidationReport ;
sh:conforms false ;
sh:result
[ a sh:ValidationResult ;
sh:resultSeverity sh:Violation ;
sh:focusNode ex:Alice ;
sh:resultPath ex:ssn ;
sh:value "987-65-432A" ;
sh:sourceConstraintComponent sh:RegexConstraintComponent ;
sh:sourceShape ... blank node _:b1 on ex:ssn above ... ;
] ,
[ a sh:ValidationResult ;
sh:resultSeverity sh:Violation ;
sh:focusNode ex:Bob ;
sh:resultPath ex:ssn ;
sh:sourceConstraintComponent sh:MaxCountConstraintComponent ;
sh:sourceShape ... blank node _:b1 on ex:ssn above ... ;
] ,
[ a sh:ValidationResult ;
sh:resultSeverity sh:Violation ;
sh:focusNode ex:Calvin ;
sh:resultPath ex:worksFor ;
sh:value ex:UntypedCompany ;
sh:sourceConstraintComponent sh:ClassConstraintComponent ;
sh:sourceShape ... blank node _:b2 on ex:worksFor above ... ;
] ,
[ a sh:ValidationResult ;
sh:resultSeverity sh:Violation ;
sh:focusNode ex:Calvin ;
sh:resultPath ex:birthDate ;
sh:value "1971-07-07"^^xsd:date ;
sh:sourceConstraintComponent sh:ClosedConstraintComponent ;
sh:sourceShape sh:PersonShape ;
]
] .</pre>
<p>
The <a>validation results</a> are enclosed in a <a>validation report</a>.
The first <a>validation result</a> is produced because <code>ex:Alice</code> has a <a>value</a> for <code>ex:ssn</code>
that does not match the regular expression specified by the property <code>sh:regex</code>.
The second <a>validation result</a> is produced because <code>ex:Bob</code> has more than the permitted number of <a>values</a>
for the property <code>ex:ssn</code> as specified by the <code>sh:maxCount</code> of 1.
The third <a>validation result</a> is produced because <code>ex:Calvin</code> has a <a>value</a> for <code>ex:worksFor</code>
that does not have an <code>rdf:type</code> triple that makes it a <a>SHACL instance</a> of <code>ex:Company</code>.
The forth <a>validation result</a> is produced because the <a>shape</a> <code>ex:PersonShape</code> has the property <code>sh:closed</code> set to <code>true</code>
but <code>ex:Calvin</code> uses the property <code>ex:birthDate</code> which is neither one of the predicates from any of the
<a>property shapes</a> of the shape, nor one of the properties listed using <code>sh:ignoredProperties</code>.
</p>
</section>
<section id="shacl-rdfs">
<h3>Relationship between SHACL and RDFS inferencing</h3>
<p>
SHACL uses the RDF and RDFS vocabularies, but full RDFS inferencing is not required.
</p>
<p>
However, SHACL processors MAY operate on RDF graphs that include entailments [[!sparql11-entailment]] -
either pre-computed before being submitted to a SHACL processor or performed on the fly as
part of SHACL processing (without modifying either <a>data graph</a> or <a>shapes graph</a>).
To support processing of entailments, SHACL includes the property
<code>sh:entailment</code> to indicate what inferencing is required
by a given <a>shapes graph</a>.
</p>
<p class="syntax">
<span data-syntax-rule="entailment-nodeKind">The <a>values</a> of the property <code>sh:entailment</code> are IRIs.</span>
Common values for this property are covered by [[!sparql11-entailment]].
</p>
<p>
SHACL implementations MAY, but are not required to, support entailment regimes.
If a <a>shapes graph</a> contains any <a>triple</a> with the <a>predicate</a> <code>sh:entailment</code> and <a>object</a> <code>E</code>
and the SHACL processor does not support <code>E</code> as an entailment regime for the given <a>data graph</a>
then the processor MUST signal a <a>failure</a>.
Otherwise, the SHACL processor MUST provide the entailments for all of the values of <code>sh:entailment</code> in the <a>shapes graph</a>,
and any inferred triples MUST be returned by all queries against the <a>data graph</a> during the <a>validation</a> process.
</p>
</section>
<section id="shacl-sparql" class="informative">
<h3>Relationship between SHACL and SPARQL</h3>
<p>
For <a>SHACL Core</a> this specification uses parts of SPARQL 1.1 in non-normative alternative definitions of the semantics of <a>constraint components</a> and <a>targets</a>.
While these may help some implementers, SPARQL is not required for the implementation of the SHACL Core language.
</p>
<p>
<a>SHACL-SPARQL</a> is based on SPARQL 1.1 and uses it as a mechanism to declare constraints and constraint components.
Implementations that cover only the SHACL Core features are not required to implement these mechanisms.
</p>
<p>
SPARQL variables using the <code>$</code> marker represent external <a>bindings</a> that are <a>pre-bound</a> or, in the case of <code>$PATH</code>, <a>substituted</a> in the SPARQL query before execution (as explained in <a href="#constraint-components-validation"></a>).
</p>
<p>
The definition of some <a>constraints</a> requires or is simplified through access to the <a>shapes graph</a> during query execution.
SHACL-SPARQL processors MAY <a>pre-bind</a> the variable <code>shapesGraph</code> to provide access to the <a>shapes graph</a>.
Access to the <a>shapes graph</a> is not a requirement for supporting the SHACL Core language.
The variable <code>shapesGraph</code> can also be used in <a href="#sparql-constraints">SPARQL-based constraints</a> and <a href="#sparql-constraint-components">SPARQL-based constraint components</a>.
However, such <a>constraints</a> may not be interoperable across different SHACL-SPARQL processors or not applicable to remote RDF datasets.
</p>
<p>
Note that at the time of writing, SPARQL EXISTS has been imperfectly defined and implementations vary.
While a <a href="https://www.w3.org/community/sparql-exists/">W3C Community Group</a> is working on improving this situation,
users of SPARQL are advised that the use of EXISTS may have inconsistent results and should be approached with care.
</p>
<div class="syntaxmenu">
<p>The button below can be used to show or hide the SPARQL definitions.</p>
<form>
<p>
<input id="hide-sparql" onclick="$('.def-sparql').css('display', 'none'); $('#hide-sparql').css('display', 'none'); $('#show-sparql').css('display', '');" type="button" value="Hide SPARQL Definitions" />
<input id="show-sparql" onclick="$('.def-sparql').css('display', ''); $('#show-sparql').css('display', 'none'); $('#hide-sparql').css('display', '');" style="display:none" type="button" value="Show SPARQL Definitions" />
</p>
</form>
</div>
</section>
</section>
<div style="padding-top: 30px"> <!-- ALH: really??? -->
<h1 id="part1" style="font-size: 160%; font-weight: bold">Part 1: SHACL Core</h1>
</div>
<section id="constraints-section">
<h2>Shapes and Constraints</h2>
<p><em>The following introduction is non-normative.</em></p>
<p>
The following informal diagram provides an overview of some of the key classes in the SHACL vocabulary.
Each box represents a class.
The content of the boxes under the class name lists some of the properties that instances of these classes may have, together with their value types.
The arrows indicate <code>rdfs:subClassOf</code> triples.
</p>
<div>
<div class="diagram-class" style="margin-left: 200px">
<div class="diagram-class-name"><a href="#shapes">sh:Shape</a></div>
<div class="diagram-class-properties">
<div class="diagram-class-properties-start">
<div><a href="#targetClass">sh:targetClass</a> : rdfs:Class</div>
<div><a href="#targetNode">sh:targetNode</a> : any IRI or literal</div>
<div><a href="#targetObjectsOf">sh:targetObjectsOf</a> : rdf:Property</div>
<div><a href="#targetSubjectsOf">sh:targetSubjectsOf</a> : rdf:Property</div>
</div>
<div class="diagram-class-properties-section">
<div><a href="#deactivated">sh:deactivated</a> : xsd:boolean</div>
<div><a href="#message">sh:message</a> : xsd:string or rdf:langString</div>
<div><a href="#severity">sh:severity</a> : sh:Severity</div>
</div>
</div>
</div>
<div style="height: 60px; margin-left: 260px">
<img alt="Class Diagram Arrows" src="images/Class-Diagram-Arrows.png" />
</div>
<div style="white-space: nowrap; min-width: 1000px">
<div class="diagram-class" style="float: left; margin-right: 60px;">
<div class="diagram-class-name"><a href="#node-shapes">sh:NodeShape</a></div>
<div class="diagram-class-properties">
<div class="diagram-class-properties-start">
<div><b><a href="#constraints">Constraint parameters</a></b>, for example:</div>
<div><a href="#ClosedConstraintComponent">sh:closed</a> : xsd:boolean</div>
<div><a href="#OrConstraintComponent">sh:or</a> : rdf:List</div>
<div><a href="#NotConstraintComponent">sh:not</a> : sh:Shape</div>
<div><a href="#PropertyConstraintComponent">sh:property</a> : sh:PropertyShape</div>
</div>
</div>
</div>
<div class="diagram-class" style="float: left;">
<div class="diagram-class-name"><a href="#property-shapes">sh:PropertyShape</a></div>
<div class="diagram-class-properties">
<div class="diagram-class-properties-start">
<div><b><a href="#constraints">Constraint parameters</a></b>, for example:</div>
<div><a href="#MinCountConstraintComponent">sh:minCount</a>, <a href="#MaxCountConstraintComponent">sh:maxCount</a> : xsd:integer</div>
<div><a href="#ClassConstraintComponent">sh:class</a> or <a href="#DatatypeConstraintComponent">sh:datatype</a> : rdfs:Resource</div>
<div><a href="#NodeConstraintComponent">sh:node</a> : sh:NodeShape</div>
</div>
<div class="diagram-class-properties-section">
<div><a href="#name">sh:name</a> : xsd:string or rdf:langString</div>
<div><a href="#description">sh:description</a> : xsd:string or rdf:langString</div>
<div><a href="#defaultValue">sh:defaultValue</a> : any</div>
<div><a href="#group">sh:group</a> : sh:PropertyGroup</div>
</div>
<div class="diagram-class-properties-section">
<div><a href="#property-shapes">sh:path</a> : rdfs:Resource</div>
</div>
</div>
</div>
<div style="clear: both"></div>
</div>
<p>
The <a href="http://www.w3.org/ns/shacl.ttl">Turtle serialization of the SHACL vocabulary</a> contains the complete SHACL vocabulary.
</p>
</div>
<section id="shapes">
<h3>Shapes</h3>
<div class="syntax" data-syntax-rule="shape">
A <dfn data-lt="shape|shapes">shape</dfn> is an <a>IRI</a> or <a>blank node</a> <code>s</code>
that fulfills at least one of the following conditions in the <a>shapes graph</a>:
<ul>
<li>
<code>s</code> is a <a>SHACL instance</a> of <code>sh:NodeShape</code> or <code>sh:PropertyShape</code>.
</li>
<li>
<code>s</code> is <a>subject</a> of a triple that has <code>sh:targetClass</code>, <code>sh:targetNode</code>,
<code>sh:targetObjectsOf</code> or <code>sh:targetSubjectsOf</code> as <a>predicate</a>.
</li>
<li>
<code>s</code> is <a>subject</a> of a triple that has a <a>parameter</a> as <a>predicate</a>.
</li>
<li>
<code>s</code> is a <a>value</a> of a <a>shape-expecting</a>, non-<a>list-taking</a> <a>parameter</a> such as <code>sh:node</code>,
or a <a>member</a> of a <a>SHACL list</a> that is a <a>value</a> of a <a>shape-expecting</a> and <a>list-taking</a> parameter such as <code>sh:or</code>.
</li>
</ul>
</div>
<p>
Note that the definition above does not include all of the syntax rules of <a>well-formed</a> shapes.
Those are found throughout the document and summarized in Appendix <a href="#syntax-rules"></a>.
For example, shapes that have <a>literals</a> as values for <code>sh:targetClass</code> are <a>ill-formed</a>.
</p>
<p>
Informally, a shape determines how to validate a <a>focus node</a> based on the <a>values</a> of properties and other characteristics of the focus node.
For example, shapes can declare the condition that a focus node be an IRI or that a focus node has a particular value for a property and also a minimum number of values for the property.
</p>
<p>
The SHACL Core language defines two types of shapes:
</p>
<ul>
<li>shapes about the <a>focus node</a> itself, called <a>node shapes</a></li>
<li>shapes about the <a>values</a> of a particular property or path for the focus node, called <a>property shapes</a></li>
</ul>
<p>
<code>sh:Shape</code> is the <a>SHACL superclass</a> of those two shape types in the SHACL vocabulary.
Its subclasses <code>sh:NodeShape</code> and <code>sh:PropertyShape</code> can be used as SHACL type of node and property shapes, respectively.
</p>
<section id="constraints">
<h3>Constraints, Parameters and Constraint Components</h3>
<p>
Shapes can declare <a>constraints</a> using the <a>parameters</a> of <a>constraint components</a>.
</p>
<p>
A <dfn data-lt="constraint component|constraint components|components|component">constraint component</dfn> is an <a>IRI</a>.
Each constraint component has one or more <dfn data-lt="mandatory parameter">mandatory parameters</dfn>, each of which is a property.
Each constraint component has zero or more <dfn data-lt="optional parameter">optional parameters</dfn>, each of which is a property.
The <dfn data-lt="parameter">parameters</dfn> of a constraint component are its mandatory parameters plus its optional parameters.
</p>
<p>
For example, the <a>component</a> <code>sh:MinCountConstraintComponent</code> declares the <a>parameter</a> <code>sh:minCount</code> to represent the restriction
that a <a>node</a> has at least a minimum number of <a>values</a> for a particular property.
</p>
<p>
For a <a>constraint component</a> <code>C</code> with <a>mandatory parameters</a> <code>p1</code>, ... <code>pn</code>,
a <a>shape</a> <code>s</code> in a <a>shapes graph</a> <code>SG</code> <em>declares</em> a <dfn data-lt="constraints">constraint</dfn>
that has <dfn>kind</dfn> <code>C</code> with <a>mandatory parameter</a> <a>values</a> <code><p1,v1></code>, ... <code><pn,vn></code>
in <code>SG</code> when <code>s</code> has <code>vi</code> as a <a>value</a> for <code>pi</code> in <code>SG</code>.
For constraint components with <a>optional parameters</a>, the constraint declaration consists of the <a>values</a> that the shape has for all mandatory and optional parameters of that component.
</p>
<p id="multiple-parameter-constraints-section">
Some constraint components declare only a single parameter.
For example <a href="#ClassConstraintComponent"><code>sh:ClassConstraintComponent</code></a> has the single parameter <code>sh:class</code>.
These parameters may be used multiple times in the same shape,
and each <a>value</a> of such a parameter declares an individual <a>constraint</a>.
The interpretation of such declarations is conjunction, i.e. all constraints apply.
The following example specifies that the values of <code>ex:customer</code> have to be <a>SHACL instances</a> of both
<code>ex:Customer</code> and <code>ex:Person</code>.
</p>
<pre class="example-shapes">
ex:InvoiceShape
a sh:NodeShape ;
sh:property [
sh:path ex:customer ;
sh:class ex:Customer ;
sh:class ex:Person ;
] .</pre>
<p class="syntax" data-syntax-rule="multiple-parameters">
Some constraint components such as <a href="#PatternConstraintComponent"><code>sh:PatternConstraintComponent</code></a> declare more than one parameter.
Shapes that have more than one value for any of the parameters of such components are <a>ill-formed</a>.
</p>
<p>
One way to bypass this syntax rule is to spread the constraints across multiple (property) shapes, as illustrated in the following example.
</p>
<pre class="example-shapes">
ex:MultiplePatternsShape
a sh:NodeShape ;
sh:property [
sh:path ex:name ;
sh:pattern "^Start" ;
sh:flags "i" ;
] ;
sh:property [
sh:path ex:name ;
sh:pattern "End$" ;
] .</pre>
<p>
Constraint components are associated with <dfn data-lt="validator">validators</dfn>, which provide instructions (for example expressed via SPARQL queries)
on how the parameters are used to validate data.
Validating an <a>RDF term</a> against a <a>shape</a> involves validating the term against each <a>constraint</a> where the
shape has <a>values</a> for all <a>mandatory parameters</a> of the <a>component</a> of the <a>constraint</a>,
using the validators associated with the respective component.
</p>
<p>
The list of constraint components included in SHACL Core is described in <a href="#constraints">section 4</a>.
SHACL-SPARQL can be used to declare additional <a href="#sparql-constraint-components">constraint components based on SPARQL</a>.
</p>
</section>
<section id="focusNodes">
<h3>Focus Nodes</h3>
<p>
An <a>RDF term</a> that is <a>validated</a> against a <a>shape</a> using the triples from a <a>data graph</a> is called a <dfn data-lt="focus node|focus nodes">focus node</dfn>.
</p>
<p><em>The remainder of this section is informative.</em></p>
<p>
The set of <a>focus nodes</a> for a <a>shape</a> may be identified as follows:
</p>
<ul>
<li>specified in a <a>shape</a> using <a>target declarations</a></li>
<li>specified in any <a>constraint</a> that references a <a>shape</a>
in parameters of <a>shape-expecting constraint parameters</a> (e.g. <code>sh:node</code>)</li>
<li>specified as explicit input to the SHACL processor for validating a specific RDF term against a shape</li>
</ul>
</section>
<section id="targets">
<h3>Targets</h3>
<p>
<dfn data-lt="target declaration">Target declarations</dfn> of a <a>shape</a> in a <a>shapes graph</a> are
<a>triples</a> with the <a>shape</a> as the <a>subject</a> and certain properties described in this document
(e.g., <code>sh:targetClass</code>) as <a>predicates</a>.
Target declarations can be used to produce <a>focus nodes</a> for a <a>shape</a>.
The <dfn data-lt="targets">target</dfn> of a <a>target declaration</a> is the set of RDF terms produced
by applying the rules described in the remainder of this section to the <a>data graph</a>.
The <dfn data-lt="target of the shape">target of a shape</dfn> is the union of all RDF terms produced by the individual
<a>targets</a> that are declared by the <a>shape</a> in the <a>shapes graph</a>.