@rdfc/js-runner 2.0.0-alpha.10 → 2.0.0-alpha.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +9 -0
- package/examples/echo/.idea/echo.iml +9 -0
- package/examples/echo/.idea/misc.xml +6 -0
- package/{.idea → examples/echo/.idea}/modules.xml +1 -1
- package/examples/echo/.idea/vcs.xml +7 -0
- package/examples/echo/.swls/config.json +1 -0
- package/examples/echo/index.ttl +3 -0
- package/examples/echo/minimal.ttl +90 -0
- package/examples/echo/shacl.ttl +9 -0
- package/examples/echo/shape.ttl +1339 -0
- package/examples/echo/test.ttl +11 -0
- package/examples/echo/untitled:/types/MyType.ttl +0 -0
- package/file:/home/silvius/Projects/mumo-pipeline/ldes/http_3A_2F_2Fdata.mumo.be_2Fstreams_2Fnodes_2Fdefault/root/index.trig +3 -0
- package/ldes/http_3A_2F_2Fdata.mumo.be_2Fstreams_2Fnodes_2Fdefault/root/index.trig +3 -0
- package/lib/client.js +2 -2
- package/lib/testUtils.d.ts +8 -8
- package/lib/testUtils.js +32 -32
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/minimal.ttl +99 -0
- package/package.json +1 -1
- package/src/client.ts +15 -15
- package/src/testUtils.ts +140 -140
- package/.idea/LNKD.tech Editor.xml +0 -194
- package/.idea/codeStyles/Project.xml +0 -52
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/js-runner.iml +0 -12
- package/.idea/vcs.xml +0 -6
- package/dist/args.d.ts +0 -4
- package/dist/args.js +0 -58
- package/dist/connectors/file.d.ts +0 -15
- package/dist/connectors/file.js +0 -89
- package/dist/connectors/http.d.ts +0 -14
- package/dist/connectors/http.js +0 -82
- package/dist/connectors/kafka.d.ts +0 -48
- package/dist/connectors/kafka.js +0 -68
- package/dist/connectors/ws.d.ts +0 -10
- package/dist/connectors/ws.js +0 -72
- package/dist/connectors.d.ts +0 -73
- package/dist/connectors.js +0 -168
- package/dist/index.cjs +0 -732
- package/dist/index.d.ts +0 -42
- package/dist/index.js +0 -83
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/dist/util.d.ts +0 -71
- package/dist/util.js +0 -92
|
@@ -0,0 +1,1339 @@
|
|
|
1
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
|
|
2
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#>.
|
|
3
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
|
|
4
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
|
|
5
|
+
@prefix sh: <http://www.w3.org/ns/shacl#>.
|
|
6
|
+
|
|
7
|
+
sh:resultPath a rdf:Property;
|
|
8
|
+
rdfs:comment "The path of a validation result, based on the path of the validated property shape."@en;
|
|
9
|
+
rdfs:domain sh:AbstractResult;
|
|
10
|
+
rdfs:isDefinedBy sh:;
|
|
11
|
+
rdfs:label "result path"@en;
|
|
12
|
+
rdfs:range rdfs:Resource.
|
|
13
|
+
|
|
14
|
+
sh:namespace a rdf:Property;
|
|
15
|
+
rdfs:comment "The namespace associated with a prefix in a prefix declaration."@en;
|
|
16
|
+
rdfs:domain sh:PrefixDeclaration;
|
|
17
|
+
rdfs:isDefinedBy sh:;
|
|
18
|
+
rdfs:label "namespace"@en;
|
|
19
|
+
rdfs:range xsd:anyURI.
|
|
20
|
+
|
|
21
|
+
sh:AndConstraintComponent-and a sh:Parameter;
|
|
22
|
+
rdfs:isDefinedBy sh:;
|
|
23
|
+
sh:path sh:and.
|
|
24
|
+
|
|
25
|
+
sh:detail a rdf:Property;
|
|
26
|
+
rdfs:comment "Links a result with other results that provide more details, for example to describe violations against nested shapes."@en;
|
|
27
|
+
rdfs:domain sh:AbstractResult;
|
|
28
|
+
rdfs:isDefinedBy sh:;
|
|
29
|
+
rdfs:label "detail"@en;
|
|
30
|
+
rdfs:range sh:AbstractResult.
|
|
31
|
+
|
|
32
|
+
sh:order a rdf:Property;
|
|
33
|
+
rdfs:comment "Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second."@en;
|
|
34
|
+
rdfs:isDefinedBy sh:;
|
|
35
|
+
rdfs:label "order"@en.
|
|
36
|
+
|
|
37
|
+
sh:resultMessage a rdf:Property;
|
|
38
|
+
rdfs:comment "Human-readable messages explaining the cause of the result."@en;
|
|
39
|
+
rdfs:domain sh:AbstractResult;
|
|
40
|
+
rdfs:isDefinedBy sh:;
|
|
41
|
+
rdfs:label "result message"@en.
|
|
42
|
+
|
|
43
|
+
sh:targetSubjectsOf a rdf:Property;
|
|
44
|
+
rdfs:comment "Links a shape to a property, indicating that all subjects of triples that have the given property as their predicate must conform to the shape."@en;
|
|
45
|
+
rdfs:domain sh:Shape;
|
|
46
|
+
rdfs:isDefinedBy sh:;
|
|
47
|
+
rdfs:label "target subjects of"@en;
|
|
48
|
+
rdfs:range rdf:Property.
|
|
49
|
+
|
|
50
|
+
sh:Info a sh:Severity;
|
|
51
|
+
rdfs:comment "The severity for an informational validation result."@en;
|
|
52
|
+
rdfs:isDefinedBy sh:;
|
|
53
|
+
rdfs:label "Info"@en.
|
|
54
|
+
|
|
55
|
+
sh:SPARQLAskValidator a rdfs:Class;
|
|
56
|
+
rdfs:comment "The class of validators based on SPARQL ASK queries. The queries are evaluated for each value node and are supposed to return true if the given node conforms."@en;
|
|
57
|
+
rdfs:isDefinedBy sh:;
|
|
58
|
+
rdfs:label "SPARQL ASK validator"@en;
|
|
59
|
+
rdfs:subClassOf sh:SPARQLAskExecutable, sh:Validator.
|
|
60
|
+
|
|
61
|
+
sh:union a rdf:Property;
|
|
62
|
+
rdfs:comment "A list of node expressions that shall be used together."@en;
|
|
63
|
+
rdfs:isDefinedBy sh:;
|
|
64
|
+
rdfs:label "union"@en.
|
|
65
|
+
|
|
66
|
+
sh:not a rdf:Property;
|
|
67
|
+
rdfs:comment "Specifies a shape that the value nodes must not conform to."@en;
|
|
68
|
+
rdfs:isDefinedBy sh:;
|
|
69
|
+
rdfs:label "not"@en;
|
|
70
|
+
rdfs:range sh:Shape.
|
|
71
|
+
|
|
72
|
+
sh:Validator a rdfs:Class;
|
|
73
|
+
rdfs:comment "The class of validators, which provide instructions on how to process a constraint definition. This class serves as base class for the SPARQL-based validators and other possible implementations."@en;
|
|
74
|
+
rdfs:isDefinedBy sh:;
|
|
75
|
+
rdfs:label "Validator"@en;
|
|
76
|
+
rdfs:subClassOf rdfs:Resource.
|
|
77
|
+
|
|
78
|
+
sh:qualifiedValueShapesDisjoint a rdf:Property;
|
|
79
|
+
rdfs:comment "Can be used to mark the qualified value shape to be disjoint with its sibling shapes."@en;
|
|
80
|
+
rdfs:isDefinedBy sh:;
|
|
81
|
+
rdfs:label "qualified value shapes disjoint"@en;
|
|
82
|
+
rdfs:range xsd:boolean.
|
|
83
|
+
|
|
84
|
+
sh:SPARQLAskExecutable a rdfs:Class;
|
|
85
|
+
rdfs:comment "The class of SPARQL executables that are based on an ASK query."@en;
|
|
86
|
+
rdfs:isDefinedBy sh:;
|
|
87
|
+
rdfs:label "SPARQL ASK executable"@en;
|
|
88
|
+
rdfs:subClassOf sh:SPARQLExecutable.
|
|
89
|
+
|
|
90
|
+
sh:QualifiedMaxCountConstraintComponent a sh:ConstraintComponent;
|
|
91
|
+
rdfs:comment "A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape."@en;
|
|
92
|
+
rdfs:isDefinedBy sh:;
|
|
93
|
+
rdfs:label "Qualified-max-count constraint component"@en;
|
|
94
|
+
sh:parameter sh:QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint,
|
|
95
|
+
sh:QualifiedMaxCountConstraintComponent-qualifiedValueShape,
|
|
96
|
+
sh:QualifiedMaxCountConstraintComponent-qualifiedMaxCount.
|
|
97
|
+
|
|
98
|
+
sh:MinLengthConstraintComponent a sh:ConstraintComponent;
|
|
99
|
+
rdfs:comment "A constraint component that can be used to restrict the minimum string length of value nodes."@en;
|
|
100
|
+
rdfs:isDefinedBy sh:;
|
|
101
|
+
rdfs:label "Min-length constraint component"@en;
|
|
102
|
+
sh:parameter sh:MinLengthConstraintComponent-minLength.
|
|
103
|
+
|
|
104
|
+
sh:annotationVarName a rdf:Property;
|
|
105
|
+
rdfs:comment "The name of the SPARQL variable from the SELECT clause that shall be used for the values."@en;
|
|
106
|
+
rdfs:domain sh:ResultAnnotation;
|
|
107
|
+
rdfs:isDefinedBy sh:;
|
|
108
|
+
rdfs:label "annotation variable name"@en;
|
|
109
|
+
rdfs:range xsd:string.
|
|
110
|
+
|
|
111
|
+
sh:DisjointConstraintComponent a sh:ConstraintComponent;
|
|
112
|
+
rdfs:comment "A constraint component that can be used to verify that the set of value nodes is disjoint with the the set of nodes that have the focus node as subject and the value of a given property as predicate."@en;
|
|
113
|
+
rdfs:isDefinedBy sh:;
|
|
114
|
+
rdfs:label "Disjoint constraint component"@en;
|
|
115
|
+
sh:parameter sh:DisjointConstraintComponent-disjoint.
|
|
116
|
+
|
|
117
|
+
sh:TargetType a rdfs:Class;
|
|
118
|
+
rdfs:comment "The (meta) class for parameterizable targets.\tInstances of this are instantiated as values of the sh:target property."@en;
|
|
119
|
+
rdfs:isDefinedBy sh:;
|
|
120
|
+
rdfs:label "Target type"@en;
|
|
121
|
+
rdfs:subClassOf sh:Parameterizable, rdfs:Class.
|
|
122
|
+
|
|
123
|
+
sh:Rule a rdfs:Class;
|
|
124
|
+
rdfs:comment "The class of SHACL rules. Never instantiated directly."@en;
|
|
125
|
+
rdfs:isDefinedBy sh:;
|
|
126
|
+
rdfs:label "Rule"@en;
|
|
127
|
+
rdfs:subClassOf rdfs:Resource.
|
|
128
|
+
|
|
129
|
+
sh:XoneConstraintComponent-xone a sh:Parameter;
|
|
130
|
+
rdfs:isDefinedBy sh:;
|
|
131
|
+
sh:path sh:xone.
|
|
132
|
+
|
|
133
|
+
sh:sourceConstraintComponent a rdf:Property;
|
|
134
|
+
rdfs:comment "The constraint component that is the source of the result."@en;
|
|
135
|
+
rdfs:domain sh:AbstractResult;
|
|
136
|
+
rdfs:isDefinedBy sh:;
|
|
137
|
+
rdfs:label "source constraint component"@en;
|
|
138
|
+
rdfs:range sh:ConstraintComponent.
|
|
139
|
+
|
|
140
|
+
sh:inversePath a rdf:Property;
|
|
141
|
+
rdfs:comment "The (single) value of this property represents an inverse path (object to subject)."@en;
|
|
142
|
+
rdfs:isDefinedBy sh:;
|
|
143
|
+
rdfs:label "inverse path"@en;
|
|
144
|
+
rdfs:range rdfs:Resource.
|
|
145
|
+
|
|
146
|
+
sh:returnType a rdf:Property;
|
|
147
|
+
rdfs:comment "The expected type of values returned by the associated function."@en;
|
|
148
|
+
rdfs:domain sh:Function;
|
|
149
|
+
rdfs:isDefinedBy sh:;
|
|
150
|
+
rdfs:label "return type"@en;
|
|
151
|
+
rdfs:range rdfs:Class.
|
|
152
|
+
|
|
153
|
+
sh:group a rdf:Property;
|
|
154
|
+
rdfs:comment "Can be used to link to a property group to indicate that a property shape belongs to a group of related property shapes."@en;
|
|
155
|
+
rdfs:domain sh:PropertyShape;
|
|
156
|
+
rdfs:isDefinedBy sh:;
|
|
157
|
+
rdfs:label "group"@en;
|
|
158
|
+
rdfs:range sh:PropertyGroup.
|
|
159
|
+
|
|
160
|
+
sh:MinInclusiveConstraintComponent-minInclusive a sh:Parameter;
|
|
161
|
+
rdfs:isDefinedBy sh:;
|
|
162
|
+
sh:maxCount 1;
|
|
163
|
+
sh:nodeKind sh:Literal;
|
|
164
|
+
sh:path sh:minInclusive.
|
|
165
|
+
|
|
166
|
+
sh:jsFunctionName a rdf:Property;
|
|
167
|
+
rdfs:comment "The name of the JavaScript function to execute."@en;
|
|
168
|
+
rdfs:domain sh:JSExecutable;
|
|
169
|
+
rdfs:isDefinedBy sh:;
|
|
170
|
+
rdfs:label "JavaScript function name"@en;
|
|
171
|
+
rdfs:range xsd:string.
|
|
172
|
+
|
|
173
|
+
sh:HasValueConstraintComponent-hasValue a sh:Parameter;
|
|
174
|
+
rdfs:isDefinedBy sh:;
|
|
175
|
+
sh:path sh:hasValue.
|
|
176
|
+
|
|
177
|
+
sh:or a rdf:Property;
|
|
178
|
+
rdfs:comment "Specifies a list of shapes so that the value nodes must conform to at least one of the shapes."@en;
|
|
179
|
+
rdfs:isDefinedBy sh:;
|
|
180
|
+
rdfs:label "or"@en;
|
|
181
|
+
rdfs:range rdf:List.
|
|
182
|
+
|
|
183
|
+
sh:JSTargetType a rdfs:Class;
|
|
184
|
+
rdfs:comment "The (meta) class for parameterizable targets that are based on JavaScript functions."@en;
|
|
185
|
+
rdfs:isDefinedBy sh:;
|
|
186
|
+
rdfs:label "JavaScript target type"@en;
|
|
187
|
+
rdfs:subClassOf sh:JSExecutable, sh:TargetType.
|
|
188
|
+
|
|
189
|
+
sh:OrConstraintComponent a sh:ConstraintComponent;
|
|
190
|
+
rdfs:comment "A constraint component that can be used to restrict the value nodes so that they conform to at least one out of several provided shapes."@en;
|
|
191
|
+
rdfs:isDefinedBy sh:;
|
|
192
|
+
rdfs:label "Or constraint component"@en;
|
|
193
|
+
sh:parameter sh:OrConstraintComponent-or.
|
|
194
|
+
|
|
195
|
+
sh:AndConstraintComponent a sh:ConstraintComponent;
|
|
196
|
+
rdfs:comment "A constraint component that can be used to test whether a value node conforms to all members of a provided list of shapes."@en;
|
|
197
|
+
rdfs:isDefinedBy sh:;
|
|
198
|
+
rdfs:label "And constraint component"@en;
|
|
199
|
+
sh:parameter sh:AndConstraintComponent-and.
|
|
200
|
+
|
|
201
|
+
sh:IRIOrLiteral a sh:NodeKind;
|
|
202
|
+
rdfs:comment "The node kind of all IRIs or literals."@en;
|
|
203
|
+
rdfs:isDefinedBy sh:;
|
|
204
|
+
rdfs:label "IRI or literal"@en.
|
|
205
|
+
|
|
206
|
+
sh:shapesGraph a rdf:Property;
|
|
207
|
+
rdfs:comment "Shapes graphs that should be used when validating this data graph."@en;
|
|
208
|
+
rdfs:domain owl:Ontology;
|
|
209
|
+
rdfs:isDefinedBy sh:;
|
|
210
|
+
rdfs:label "shapes graph"@en;
|
|
211
|
+
rdfs:range owl:Ontology.
|
|
212
|
+
|
|
213
|
+
sh:zeroOrMorePath a rdf:Property;
|
|
214
|
+
rdfs:comment "The (single) value of this property represents a path that is matched zero or more times."@en;
|
|
215
|
+
rdfs:isDefinedBy sh:;
|
|
216
|
+
rdfs:label "zero or more path"@en;
|
|
217
|
+
rdfs:range rdfs:Resource.
|
|
218
|
+
|
|
219
|
+
sh:prefixes a rdf:Property;
|
|
220
|
+
rdfs:comment "The prefixes that shall be applied before parsing the associated SPARQL query."@en;
|
|
221
|
+
rdfs:domain sh:SPARQLExecutable;
|
|
222
|
+
rdfs:isDefinedBy sh:;
|
|
223
|
+
rdfs:label "prefixes"@en;
|
|
224
|
+
rdfs:range owl:Ontology.
|
|
225
|
+
|
|
226
|
+
sh:equals a rdf:Property;
|
|
227
|
+
rdfs:comment "Specifies a property that must have the same values as the value nodes."@en;
|
|
228
|
+
rdfs:isDefinedBy sh:;
|
|
229
|
+
rdfs:label "equals"@en;
|
|
230
|
+
rdfs:range rdf:Property.
|
|
231
|
+
|
|
232
|
+
sh:MinInclusiveConstraintComponent a sh:ConstraintComponent;
|
|
233
|
+
rdfs:comment "A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value."@en;
|
|
234
|
+
rdfs:isDefinedBy sh:;
|
|
235
|
+
rdfs:label "Min-inclusive constraint component"@en;
|
|
236
|
+
sh:parameter sh:MinInclusiveConstraintComponent-minInclusive.
|
|
237
|
+
|
|
238
|
+
sh:maxExclusive a rdf:Property;
|
|
239
|
+
rdfs:comment "Specifies the maximum exclusive value of each value node."@en;
|
|
240
|
+
rdfs:isDefinedBy sh:;
|
|
241
|
+
rdfs:label "max exclusive"@en.
|
|
242
|
+
|
|
243
|
+
sh:description a rdf:Property;
|
|
244
|
+
rdfs:comment "Human-readable descriptions for the property in the context of the surrounding shape."@en;
|
|
245
|
+
rdfs:domain sh:PropertyShape;
|
|
246
|
+
rdfs:isDefinedBy sh:;
|
|
247
|
+
rdfs:label "description"@en.
|
|
248
|
+
|
|
249
|
+
sh:predicate a rdf:Property;
|
|
250
|
+
rdfs:comment "An expression producing the properties that shall be inferred as predicates."@en;
|
|
251
|
+
rdfs:domain sh:TripleRule;
|
|
252
|
+
rdfs:isDefinedBy sh:;
|
|
253
|
+
rdfs:label "predicate"@en.
|
|
254
|
+
|
|
255
|
+
sh:defaultValue a rdf:Property;
|
|
256
|
+
rdfs:comment "A default value for a property, for example for user interface tools to pre-populate input fields."@en;
|
|
257
|
+
rdfs:domain sh:PropertyShape;
|
|
258
|
+
rdfs:isDefinedBy sh:;
|
|
259
|
+
rdfs:label "default value"@en.
|
|
260
|
+
|
|
261
|
+
sh:JSValidator a rdfs:Class;
|
|
262
|
+
rdfs:comment "A SHACL validator based on JavaScript. This can be used to declare SHACL constraint components that perform JavaScript-based validation when used."@en;
|
|
263
|
+
rdfs:isDefinedBy sh:;
|
|
264
|
+
rdfs:label "JavaScript validator"@en;
|
|
265
|
+
rdfs:subClassOf sh:Validator, sh:JSExecutable.
|
|
266
|
+
|
|
267
|
+
sh:Function a rdfs:Class;
|
|
268
|
+
rdfs:comment "The class of SHACL functions."@en;
|
|
269
|
+
rdfs:isDefinedBy sh:;
|
|
270
|
+
rdfs:label "Function"@en;
|
|
271
|
+
rdfs:subClassOf sh:Parameterizable.
|
|
272
|
+
|
|
273
|
+
sh:SPARQLConstraint a rdfs:Class;
|
|
274
|
+
rdfs:comment "The class of constraints based on SPARQL SELECT queries."@en;
|
|
275
|
+
rdfs:isDefinedBy sh:;
|
|
276
|
+
rdfs:label "SPARQL constraint"@en;
|
|
277
|
+
rdfs:subClassOf sh:SPARQLSelectExecutable.
|
|
278
|
+
|
|
279
|
+
sh:maxInclusive a rdf:Property;
|
|
280
|
+
rdfs:comment "Specifies the maximum inclusive value of each value node."@en;
|
|
281
|
+
rdfs:isDefinedBy sh:;
|
|
282
|
+
rdfs:label "max inclusive"@en.
|
|
283
|
+
|
|
284
|
+
sh:LessThanOrEqualsConstraintComponent-lessThanOrEquals a sh:Parameter;
|
|
285
|
+
rdfs:isDefinedBy sh:;
|
|
286
|
+
sh:nodeKind sh:IRI;
|
|
287
|
+
sh:path sh:lessThanOrEquals.
|
|
288
|
+
|
|
289
|
+
sh:MinCountConstraintComponent a sh:ConstraintComponent;
|
|
290
|
+
rdfs:comment "A constraint component that can be used to restrict the minimum number of value nodes."@en;
|
|
291
|
+
rdfs:isDefinedBy sh:;
|
|
292
|
+
rdfs:label "Min-count constraint component"@en;
|
|
293
|
+
sh:parameter sh:MinCountConstraintComponent-minCount.
|
|
294
|
+
|
|
295
|
+
sh:ClassConstraintComponent a sh:ConstraintComponent;
|
|
296
|
+
rdfs:comment "A constraint component that can be used to verify that each value node is an instance of a given type."@en;
|
|
297
|
+
rdfs:isDefinedBy sh:;
|
|
298
|
+
rdfs:label "Class constraint component"@en;
|
|
299
|
+
sh:parameter sh:ClassConstraintComponent-class.
|
|
300
|
+
|
|
301
|
+
sh:jsLibraryURL a rdf:Property;
|
|
302
|
+
rdfs:comment "Declares the URLs of a JavaScript library. This should be the absolute URL of a JavaScript file. Implementations may redirect those to local files."@en;
|
|
303
|
+
rdfs:domain sh:JSLibrary;
|
|
304
|
+
rdfs:isDefinedBy sh:;
|
|
305
|
+
rdfs:label "JavaScript library URL"@en;
|
|
306
|
+
rdfs:range xsd:anyURI.
|
|
307
|
+
|
|
308
|
+
sh:SPARQLConstraintComponent-sparql a sh:Parameter;
|
|
309
|
+
rdfs:isDefinedBy sh:;
|
|
310
|
+
sh:path sh:sparql.
|
|
311
|
+
|
|
312
|
+
sh:AbstractResult a rdfs:Class;
|
|
313
|
+
rdfs:comment "The base class of validation results, typically not instantiated directly."@en;
|
|
314
|
+
rdfs:isDefinedBy sh:;
|
|
315
|
+
rdfs:label "Abstract result"@en;
|
|
316
|
+
rdfs:subClassOf rdfs:Resource.
|
|
317
|
+
|
|
318
|
+
sh:TripleRule a rdfs:Class;
|
|
319
|
+
rdfs:isDefinedBy sh:;
|
|
320
|
+
rdfs:label "A rule based on triple (subject, predicate, object) pattern."@en;
|
|
321
|
+
rdfs:subClassOf sh:Rule.
|
|
322
|
+
|
|
323
|
+
sh:QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint a sh:Parameter;
|
|
324
|
+
rdfs:isDefinedBy sh:;
|
|
325
|
+
sh:datatype xsd:boolean;
|
|
326
|
+
sh:optional true;
|
|
327
|
+
sh:path sh:qualifiedValueShapesDisjoint.
|
|
328
|
+
|
|
329
|
+
sh:PropertyConstraintComponent-property a sh:Parameter;
|
|
330
|
+
rdfs:isDefinedBy sh:;
|
|
331
|
+
sh:path sh:property.
|
|
332
|
+
|
|
333
|
+
sh:SPARQLSelectValidator a rdfs:Class;
|
|
334
|
+
rdfs:comment "The class of validators based on SPARQL SELECT queries. The queries are evaluated for each focus node and are supposed to produce bindings for all focus nodes that do not conform."@en;
|
|
335
|
+
rdfs:isDefinedBy sh:;
|
|
336
|
+
rdfs:label "SPARQL SELECT validator"@en;
|
|
337
|
+
rdfs:subClassOf sh:SPARQLSelectExecutable, sh:Validator.
|
|
338
|
+
|
|
339
|
+
sh:nodes a rdf:Property;
|
|
340
|
+
rdfs:comment "The node expression producing the input nodes of a filter shape expression."@en;
|
|
341
|
+
rdfs:isDefinedBy sh:;
|
|
342
|
+
rdfs:label "nodes"@en.
|
|
343
|
+
|
|
344
|
+
sh:xone a rdf:Property;
|
|
345
|
+
rdfs:comment "Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes."@en;
|
|
346
|
+
rdfs:isDefinedBy sh:;
|
|
347
|
+
rdfs:label "exactly one"@en;
|
|
348
|
+
rdfs:range rdf:List.
|
|
349
|
+
|
|
350
|
+
sh:JSConstraint-js a sh:Parameter;
|
|
351
|
+
rdfs:isDefinedBy sh:;
|
|
352
|
+
sh:path sh:js.
|
|
353
|
+
|
|
354
|
+
sh:annotationValue a rdf:Property;
|
|
355
|
+
rdfs:comment "The (default) values of the annotation property."@en;
|
|
356
|
+
rdfs:domain sh:ResultAnnotation;
|
|
357
|
+
rdfs:isDefinedBy sh:;
|
|
358
|
+
rdfs:label "annotation value"@en.
|
|
359
|
+
|
|
360
|
+
sh:Violation a sh:Severity;
|
|
361
|
+
rdfs:comment "The severity for a violation validation result."@en;
|
|
362
|
+
rdfs:isDefinedBy sh:;
|
|
363
|
+
rdfs:label "Violation"@en.
|
|
364
|
+
|
|
365
|
+
sh:ResultAnnotation a rdfs:Class;
|
|
366
|
+
rdfs:comment "A class of result annotations, which define the rules to derive the values of a given annotation property as extra values for a validation result."@en;
|
|
367
|
+
rdfs:isDefinedBy sh:;
|
|
368
|
+
rdfs:label "Result annotation"@en;
|
|
369
|
+
rdfs:subClassOf rdfs:Resource.
|
|
370
|
+
|
|
371
|
+
sh:targetObjectsOf a rdf:Property;
|
|
372
|
+
rdfs:comment "Links a shape to a property, indicating that all all objects of triples that have the given property as their predicate must conform to the shape."@en;
|
|
373
|
+
rdfs:domain sh:Shape;
|
|
374
|
+
rdfs:isDefinedBy sh:;
|
|
375
|
+
rdfs:label "target objects of"@en;
|
|
376
|
+
rdfs:range rdf:Property.
|
|
377
|
+
|
|
378
|
+
sh:DisjointConstraintComponent-disjoint a sh:Parameter;
|
|
379
|
+
rdfs:isDefinedBy sh:;
|
|
380
|
+
sh:nodeKind sh:IRI;
|
|
381
|
+
sh:path sh:disjoint.
|
|
382
|
+
|
|
383
|
+
sh:class a rdf:Property;
|
|
384
|
+
rdfs:comment "The type that all value nodes must have."@en;
|
|
385
|
+
rdfs:isDefinedBy sh:;
|
|
386
|
+
rdfs:label "class"@en;
|
|
387
|
+
rdfs:range rdfs:Class.
|
|
388
|
+
|
|
389
|
+
sh:condition a rdf:Property;
|
|
390
|
+
rdfs:comment "The shapes that the focus nodes need to conform to before a rule is executed on them."@en;
|
|
391
|
+
rdfs:domain sh:Rule;
|
|
392
|
+
rdfs:isDefinedBy sh:;
|
|
393
|
+
rdfs:label "condition"@en;
|
|
394
|
+
rdfs:range sh:Shape.
|
|
395
|
+
|
|
396
|
+
sh:entailment a rdf:Property;
|
|
397
|
+
rdfs:comment "An entailment regime that indicates what kind of inferencing is required by a shapes graph."@en;
|
|
398
|
+
rdfs:domain owl:Ontology;
|
|
399
|
+
rdfs:isDefinedBy sh:;
|
|
400
|
+
rdfs:label "entailment"@en;
|
|
401
|
+
rdfs:range rdfs:Resource.
|
|
402
|
+
|
|
403
|
+
sh:NotConstraintComponent a sh:ConstraintComponent;
|
|
404
|
+
rdfs:comment "A constraint component that can be used to verify that value nodes do not conform to a given shape."@en;
|
|
405
|
+
rdfs:isDefinedBy sh:;
|
|
406
|
+
rdfs:label "Not constraint component"@en;
|
|
407
|
+
sh:parameter sh:NotConstraintComponent-not.
|
|
408
|
+
|
|
409
|
+
sh:resultSeverity a rdf:Property;
|
|
410
|
+
rdfs:comment "The severity of the result, e.g. warning."@en;
|
|
411
|
+
rdfs:domain sh:AbstractResult;
|
|
412
|
+
rdfs:isDefinedBy sh:;
|
|
413
|
+
rdfs:label "result severity"@en;
|
|
414
|
+
rdfs:range sh:Severity.
|
|
415
|
+
|
|
416
|
+
sh:QualifiedMinCountConstraintComponent-qualifiedValueShape a sh:Parameter;
|
|
417
|
+
rdfs:isDefinedBy sh:;
|
|
418
|
+
sh:path sh:qualifiedValueShape.
|
|
419
|
+
|
|
420
|
+
sh:LanguageInConstraintComponent a sh:ConstraintComponent;
|
|
421
|
+
rdfs:comment "A constraint component that can be used to enumerate language tags that all value nodes must have."@en;
|
|
422
|
+
rdfs:isDefinedBy sh:;
|
|
423
|
+
rdfs:label "Language-in constraint component"@en;
|
|
424
|
+
sh:parameter sh:LanguageInConstraintComponent-languageIn.
|
|
425
|
+
|
|
426
|
+
sh:QualifiedMaxCountConstraintComponent-qualifiedMaxCount a sh:Parameter;
|
|
427
|
+
rdfs:isDefinedBy sh:;
|
|
428
|
+
sh:datatype xsd:integer;
|
|
429
|
+
sh:path sh:qualifiedMaxCount.
|
|
430
|
+
|
|
431
|
+
sh:subject a rdf:Property;
|
|
432
|
+
rdfs:comment "An expression producing the resources that shall be inferred as subjects."@en;
|
|
433
|
+
rdfs:domain sh:TripleRule;
|
|
434
|
+
rdfs:isDefinedBy sh:;
|
|
435
|
+
rdfs:label "subject"@en.
|
|
436
|
+
|
|
437
|
+
sh:conforms a rdf:Property;
|
|
438
|
+
rdfs:comment "True if the validation did not produce any validation results, and false otherwise."@en;
|
|
439
|
+
rdfs:domain sh:ValidationReport;
|
|
440
|
+
rdfs:isDefinedBy sh:;
|
|
441
|
+
rdfs:label "conforms"@en;
|
|
442
|
+
rdfs:range xsd:boolean.
|
|
443
|
+
|
|
444
|
+
sh:message a rdf:Property;
|
|
445
|
+
rdfs:comment "A human-readable message (possibly with placeholders for variables) explaining the cause of the result."@en;
|
|
446
|
+
rdfs:isDefinedBy sh:;
|
|
447
|
+
rdfs:label "message"@en.
|
|
448
|
+
|
|
449
|
+
sh:LessThanConstraintComponent-lessThan a sh:Parameter;
|
|
450
|
+
rdfs:isDefinedBy sh:;
|
|
451
|
+
sh:nodeKind sh:IRI;
|
|
452
|
+
sh:path sh:lessThan.
|
|
453
|
+
|
|
454
|
+
sh:ClassConstraintComponent-class a sh:Parameter;
|
|
455
|
+
rdfs:isDefinedBy sh:;
|
|
456
|
+
sh:nodeKind sh:IRI;
|
|
457
|
+
sh:path sh:class.
|
|
458
|
+
|
|
459
|
+
sh:intersection a rdf:Property;
|
|
460
|
+
rdfs:comment "A list of node expressions that shall be intersected."@en;
|
|
461
|
+
rdfs:isDefinedBy sh:;
|
|
462
|
+
rdfs:label "intersection"@en.
|
|
463
|
+
|
|
464
|
+
sh:SPARQLConstraintComponent a sh:ConstraintComponent;
|
|
465
|
+
rdfs:comment "A constraint component that can be used to define constraints based on SPARQL queries."@en;
|
|
466
|
+
rdfs:isDefinedBy sh:;
|
|
467
|
+
rdfs:label "SPARQL constraint component"@en;
|
|
468
|
+
sh:parameter sh:SPARQLConstraintComponent-sparql.
|
|
469
|
+
|
|
470
|
+
sh:UniqueLangConstraintComponent-uniqueLang a sh:Parameter;
|
|
471
|
+
rdfs:isDefinedBy sh:;
|
|
472
|
+
sh:datatype xsd:boolean;
|
|
473
|
+
sh:maxCount 1;
|
|
474
|
+
sh:path sh:uniqueLang.
|
|
475
|
+
|
|
476
|
+
sh:BlankNodeOrIRI a sh:NodeKind;
|
|
477
|
+
rdfs:comment "The node kind of all blank nodes or IRIs."@en;
|
|
478
|
+
rdfs:isDefinedBy sh:;
|
|
479
|
+
rdfs:label "Blank node or IRI"@en.
|
|
480
|
+
|
|
481
|
+
sh:MaxExclusiveConstraintComponent-maxExclusive a sh:Parameter;
|
|
482
|
+
rdfs:isDefinedBy sh:;
|
|
483
|
+
sh:maxCount 1;
|
|
484
|
+
sh:nodeKind sh:Literal;
|
|
485
|
+
sh:path sh:maxExclusive.
|
|
486
|
+
|
|
487
|
+
sh:object a rdf:Property;
|
|
488
|
+
rdfs:comment "An expression producing the nodes that shall be inferred as objects."@en;
|
|
489
|
+
rdfs:domain sh:TripleRule;
|
|
490
|
+
rdfs:isDefinedBy sh:;
|
|
491
|
+
rdfs:label "object"@en.
|
|
492
|
+
|
|
493
|
+
sh:zeroOrOnePath a rdf:Property;
|
|
494
|
+
rdfs:comment "The (single) value of this property represents a path that is matched zero or one times."@en;
|
|
495
|
+
rdfs:isDefinedBy sh:;
|
|
496
|
+
rdfs:label "zero or one path"@en;
|
|
497
|
+
rdfs:range rdfs:Resource.
|
|
498
|
+
|
|
499
|
+
sh:PropertyShape a rdfs:Class;
|
|
500
|
+
rdfs:comment "A property shape is a shape that specifies constraints on the values of a focus node for a given property or path."@en;
|
|
501
|
+
rdfs:isDefinedBy sh:;
|
|
502
|
+
rdfs:label "Property shape"@en;
|
|
503
|
+
rdfs:subClassOf sh:Shape.
|
|
504
|
+
|
|
505
|
+
sh:SPARQLUpdateExecutable a rdfs:Class;
|
|
506
|
+
rdfs:comment "The class of SPARQL executables based on a SPARQL UPDATE."@en;
|
|
507
|
+
rdfs:isDefinedBy sh:;
|
|
508
|
+
rdfs:label "SPARQL UPDATE executable"@en;
|
|
509
|
+
rdfs:subClassOf sh:SPARQLExecutable.
|
|
510
|
+
|
|
511
|
+
sh:maxLength a rdf:Property;
|
|
512
|
+
rdfs:comment "Specifies the maximum string length of each value node."@en;
|
|
513
|
+
rdfs:isDefinedBy sh:;
|
|
514
|
+
rdfs:label "max length"@en;
|
|
515
|
+
rdfs:range xsd:integer.
|
|
516
|
+
|
|
517
|
+
sh:ClosedConstraintComponent-closed a sh:Parameter;
|
|
518
|
+
rdfs:isDefinedBy sh:;
|
|
519
|
+
sh:datatype xsd:boolean;
|
|
520
|
+
sh:path sh:closed.
|
|
521
|
+
|
|
522
|
+
sh:severity a rdf:Property;
|
|
523
|
+
rdfs:comment "Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation."@en;
|
|
524
|
+
rdfs:domain sh:Shape;
|
|
525
|
+
rdfs:isDefinedBy sh:;
|
|
526
|
+
rdfs:label "severity"@en;
|
|
527
|
+
rdfs:range sh:Severity.
|
|
528
|
+
|
|
529
|
+
sh:LanguageInConstraintComponent-languageIn a sh:Parameter;
|
|
530
|
+
rdfs:isDefinedBy sh:;
|
|
531
|
+
sh:maxCount 1;
|
|
532
|
+
sh:path sh:languageIn.
|
|
533
|
+
|
|
534
|
+
sh:ValidationReport a rdfs:Class;
|
|
535
|
+
rdfs:comment "The class of SHACL validation reports."@en;
|
|
536
|
+
rdfs:isDefinedBy sh:;
|
|
537
|
+
rdfs:label "Validation report"@en;
|
|
538
|
+
rdfs:subClassOf rdfs:Resource.
|
|
539
|
+
|
|
540
|
+
sh:JSLibrary a rdfs:Class;
|
|
541
|
+
rdfs:comment "Represents a JavaScript library, typically identified by one or more URLs of files to include."@en;
|
|
542
|
+
rdfs:isDefinedBy sh:;
|
|
543
|
+
rdfs:label "JavaScript library"@en;
|
|
544
|
+
rdfs:subClassOf rdfs:Resource.
|
|
545
|
+
|
|
546
|
+
sh:targetNode a rdf:Property;
|
|
547
|
+
rdfs:comment "Links a shape to individual nodes, indicating that these nodes must conform to the shape."@en;
|
|
548
|
+
rdfs:domain sh:Shape;
|
|
549
|
+
rdfs:isDefinedBy sh:;
|
|
550
|
+
rdfs:label "target node"@en.
|
|
551
|
+
|
|
552
|
+
sh:DatatypeConstraintComponent-datatype a sh:Parameter;
|
|
553
|
+
rdfs:isDefinedBy sh:;
|
|
554
|
+
sh:maxCount 1;
|
|
555
|
+
sh:nodeKind sh:IRI;
|
|
556
|
+
sh:path sh:datatype.
|
|
557
|
+
|
|
558
|
+
sh:NodeKindConstraintComponent a sh:ConstraintComponent;
|
|
559
|
+
rdfs:comment "A constraint component that can be used to restrict the RDF node kind of each value node."@en;
|
|
560
|
+
rdfs:isDefinedBy sh:;
|
|
561
|
+
rdfs:label "Node-kind constraint component"@en;
|
|
562
|
+
sh:parameter sh:NodeKindConstraintComponent-nodeKind.
|
|
563
|
+
|
|
564
|
+
sh:NotConstraintComponent-not a sh:Parameter;
|
|
565
|
+
rdfs:isDefinedBy sh:;
|
|
566
|
+
sh:path sh:not.
|
|
567
|
+
|
|
568
|
+
sh:NodeShape a rdfs:Class;
|
|
569
|
+
rdfs:comment "A node shape is a shape that specifies constraint that need to be met with respect to focus nodes."@en;
|
|
570
|
+
rdfs:isDefinedBy sh:;
|
|
571
|
+
rdfs:label "Node shape"@en;
|
|
572
|
+
rdfs:subClassOf sh:Shape.
|
|
573
|
+
|
|
574
|
+
sh:InConstraintComponent-in a sh:Parameter;
|
|
575
|
+
rdfs:isDefinedBy sh:;
|
|
576
|
+
sh:maxCount 1;
|
|
577
|
+
sh:path sh:in.
|
|
578
|
+
|
|
579
|
+
sh:MinCountConstraintComponent-minCount a sh:Parameter;
|
|
580
|
+
rdfs:isDefinedBy sh:;
|
|
581
|
+
sh:datatype xsd:integer;
|
|
582
|
+
sh:maxCount 1;
|
|
583
|
+
sh:path sh:minCount.
|
|
584
|
+
|
|
585
|
+
sh:annotationProperty a rdf:Property;
|
|
586
|
+
rdfs:comment "The annotation property that shall be set."@en;
|
|
587
|
+
rdfs:domain sh:ResultAnnotation;
|
|
588
|
+
rdfs:isDefinedBy sh:;
|
|
589
|
+
rdfs:label "annotation property"@en;
|
|
590
|
+
rdfs:range rdf:Property.
|
|
591
|
+
|
|
592
|
+
sh:MaxLengthConstraintComponent a sh:ConstraintComponent;
|
|
593
|
+
rdfs:comment "A constraint component that can be used to restrict the maximum string length of value nodes."@en;
|
|
594
|
+
rdfs:isDefinedBy sh:;
|
|
595
|
+
rdfs:label "Max-length constraint component"@en;
|
|
596
|
+
sh:parameter sh:MaxLengthConstraintComponent-maxLength.
|
|
597
|
+
|
|
598
|
+
sh:declare a rdf:Property;
|
|
599
|
+
rdfs:comment "Links a resource with its namespace prefix declarations."@en;
|
|
600
|
+
rdfs:domain owl:Ontology;
|
|
601
|
+
rdfs:isDefinedBy sh:;
|
|
602
|
+
rdfs:label "declare"@en;
|
|
603
|
+
rdfs:range sh:PrefixDeclaration.
|
|
604
|
+
|
|
605
|
+
sh:MaxExclusiveConstraintComponent a sh:ConstraintComponent;
|
|
606
|
+
rdfs:comment "A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value."@en;
|
|
607
|
+
rdfs:isDefinedBy sh:;
|
|
608
|
+
rdfs:label "Max-exclusive constraint component"@en;
|
|
609
|
+
sh:parameter sh:MaxExclusiveConstraintComponent-maxExclusive.
|
|
610
|
+
|
|
611
|
+
sh:HasValueConstraintComponent a sh:ConstraintComponent;
|
|
612
|
+
rdfs:comment "A constraint component that can be used to verify that one of the value nodes is a given RDF node."@en;
|
|
613
|
+
rdfs:isDefinedBy sh:;
|
|
614
|
+
rdfs:label "Has-value constraint component"@en;
|
|
615
|
+
sh:parameter sh:HasValueConstraintComponent-hasValue.
|
|
616
|
+
|
|
617
|
+
sh:JSRule a rdfs:Class;
|
|
618
|
+
rdfs:comment "The class of SHACL rules expressed using JavaScript."@en;
|
|
619
|
+
rdfs:isDefinedBy sh:;
|
|
620
|
+
rdfs:label "JavaScript rule"@en;
|
|
621
|
+
rdfs:subClassOf sh:Rule, sh:JSExecutable.
|
|
622
|
+
|
|
623
|
+
sh:minLength a rdf:Property;
|
|
624
|
+
rdfs:comment "Specifies the minimum string length of each value node."@en;
|
|
625
|
+
rdfs:isDefinedBy sh:;
|
|
626
|
+
rdfs:label "min length"@en;
|
|
627
|
+
rdfs:range xsd:integer.
|
|
628
|
+
|
|
629
|
+
sh:IRI a sh:NodeKind;
|
|
630
|
+
rdfs:comment "The node kind of all IRIs."@en;
|
|
631
|
+
rdfs:isDefinedBy sh:;
|
|
632
|
+
rdfs:label "IRI"@en.
|
|
633
|
+
|
|
634
|
+
sh:js a rdf:Property;
|
|
635
|
+
rdfs:comment "Constraints expressed in JavaScript.";
|
|
636
|
+
rdfs:isDefinedBy sh:;
|
|
637
|
+
rdfs:label "JavaScript constraint"@en;
|
|
638
|
+
rdfs:range sh:JSConstraint.
|
|
639
|
+
|
|
640
|
+
sh:PropertyGroup a rdfs:Class;
|
|
641
|
+
rdfs:comment "Instances of this class represent groups of property shapes that belong together."@en;
|
|
642
|
+
rdfs:isDefinedBy sh:;
|
|
643
|
+
rdfs:label "Property group"@en;
|
|
644
|
+
rdfs:subClassOf rdfs:Resource.
|
|
645
|
+
|
|
646
|
+
sh:closed a rdf:Property;
|
|
647
|
+
rdfs:comment "If set to true then the shape is closed."@en;
|
|
648
|
+
rdfs:isDefinedBy sh:;
|
|
649
|
+
rdfs:label "closed"@en;
|
|
650
|
+
rdfs:range xsd:boolean.
|
|
651
|
+
|
|
652
|
+
sh:lessThanOrEquals a rdf:Property;
|
|
653
|
+
rdfs:comment "Specifies a property that must have smaller or equal values than the value nodes."@en;
|
|
654
|
+
rdfs:isDefinedBy sh:;
|
|
655
|
+
rdfs:label "less than or equals"@en;
|
|
656
|
+
rdfs:range rdf:Property.
|
|
657
|
+
|
|
658
|
+
sh:suggestedShapesGraph a rdf:Property;
|
|
659
|
+
rdfs:comment "Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements."@en;
|
|
660
|
+
rdfs:domain owl:Ontology;
|
|
661
|
+
rdfs:isDefinedBy sh:;
|
|
662
|
+
rdfs:label "suggested shapes graph"@en;
|
|
663
|
+
rdfs:range owl:Ontology.
|
|
664
|
+
|
|
665
|
+
sh:sourceShape a rdf:Property;
|
|
666
|
+
rdfs:comment "The shape that is was validated when the result was produced."@en;
|
|
667
|
+
rdfs:domain sh:AbstractResult;
|
|
668
|
+
rdfs:isDefinedBy sh:;
|
|
669
|
+
rdfs:label "source shape"@en;
|
|
670
|
+
rdfs:range sh:Shape.
|
|
671
|
+
|
|
672
|
+
sh:JSConstraintComponent a sh:ConstraintComponent;
|
|
673
|
+
rdfs:comment "A constraint component with the parameter sh:js linking to a sh:JSConstraint containing a sh:script."@en;
|
|
674
|
+
rdfs:isDefinedBy sh:;
|
|
675
|
+
rdfs:label "JavaScript constraint component"@en;
|
|
676
|
+
sh:parameter sh:JSConstraint-js.
|
|
677
|
+
|
|
678
|
+
sh:uniqueLang a rdf:Property;
|
|
679
|
+
rdfs:comment "Specifies whether all node values must have a unique (or no) language tag."@en;
|
|
680
|
+
rdfs:isDefinedBy sh:;
|
|
681
|
+
rdfs:label "unique languages"@en;
|
|
682
|
+
rdfs:range xsd:boolean.
|
|
683
|
+
|
|
684
|
+
sh:property a rdf:Property;
|
|
685
|
+
rdfs:comment "Links a shape to its property shapes."@en;
|
|
686
|
+
rdfs:domain sh:Shape;
|
|
687
|
+
rdfs:isDefinedBy sh:;
|
|
688
|
+
rdfs:label "property"@en;
|
|
689
|
+
rdfs:range sh:PropertyShape.
|
|
690
|
+
|
|
691
|
+
sh:languageIn a rdf:Property;
|
|
692
|
+
rdfs:comment "Specifies a list of language tags that all value nodes must have."@en;
|
|
693
|
+
rdfs:isDefinedBy sh:;
|
|
694
|
+
rdfs:label "language in"@en;
|
|
695
|
+
rdfs:range rdf:List.
|
|
696
|
+
|
|
697
|
+
sh:EqualsConstraintComponent-equals a sh:Parameter;
|
|
698
|
+
rdfs:isDefinedBy sh:;
|
|
699
|
+
sh:nodeKind sh:IRI;
|
|
700
|
+
sh:path sh:equals.
|
|
701
|
+
|
|
702
|
+
sh:minCount a rdf:Property;
|
|
703
|
+
rdfs:comment "Specifies the minimum number of values in the set of value nodes."@en;
|
|
704
|
+
rdfs:isDefinedBy sh:;
|
|
705
|
+
rdfs:label "min count"@en;
|
|
706
|
+
rdfs:range xsd:integer.
|
|
707
|
+
|
|
708
|
+
sh:LessThanConstraintComponent a sh:ConstraintComponent;
|
|
709
|
+
rdfs:comment "A constraint component that can be used to verify that each value node is smaller than all the nodes that have the focus node as subject and the value of a given property as predicate."@en;
|
|
710
|
+
rdfs:isDefinedBy sh:;
|
|
711
|
+
rdfs:label "Less-than constraint component"@en;
|
|
712
|
+
sh:parameter sh:LessThanConstraintComponent-lessThan.
|
|
713
|
+
|
|
714
|
+
sh:LessThanOrEqualsConstraintComponent a sh:ConstraintComponent;
|
|
715
|
+
rdfs:comment "A constraint component that can be used to verify that every value node is smaller than all the nodes that have the focus node as subject and the value of a given property as predicate."@en;
|
|
716
|
+
rdfs:isDefinedBy sh:;
|
|
717
|
+
rdfs:label "less-than-or-equals constraint component"@en;
|
|
718
|
+
sh:parameter sh:LessThanOrEqualsConstraintComponent-lessThanOrEquals.
|
|
719
|
+
|
|
720
|
+
sh:MaxCountConstraintComponent a sh:ConstraintComponent;
|
|
721
|
+
rdfs:comment "A constraint component that can be used to restrict the maximum number of value nodes."@en;
|
|
722
|
+
rdfs:isDefinedBy sh:;
|
|
723
|
+
rdfs:label "Max-count constraint component"@en;
|
|
724
|
+
sh:parameter sh:MaxCountConstraintComponent-maxCount.
|
|
725
|
+
|
|
726
|
+
sh:MaxInclusiveConstraintComponent-maxInclusive a sh:Parameter;
|
|
727
|
+
rdfs:isDefinedBy sh:;
|
|
728
|
+
sh:maxCount 1;
|
|
729
|
+
sh:nodeKind sh:Literal;
|
|
730
|
+
sh:path sh:maxInclusive.
|
|
731
|
+
|
|
732
|
+
sh:InConstraintComponent a sh:ConstraintComponent;
|
|
733
|
+
rdfs:comment "A constraint component that can be used to exclusively enumerate the permitted value nodes."@en;
|
|
734
|
+
rdfs:isDefinedBy sh:;
|
|
735
|
+
rdfs:label "In constraint component"@en;
|
|
736
|
+
sh:parameter sh:InConstraintComponent-in.
|
|
737
|
+
|
|
738
|
+
sh:targetClass a rdf:Property;
|
|
739
|
+
rdfs:comment "Links a shape to a class, indicating that all instances of the class must conform to the shape."@en;
|
|
740
|
+
rdfs:domain sh:Shape;
|
|
741
|
+
rdfs:isDefinedBy sh:;
|
|
742
|
+
rdfs:label "target class"@en;
|
|
743
|
+
rdfs:range rdfs:Class.
|
|
744
|
+
|
|
745
|
+
sh:ask a rdf:Property;
|
|
746
|
+
rdfs:comment "The SPARQL ASK query to execute."@en;
|
|
747
|
+
rdfs:domain sh:SPARQLAskExecutable;
|
|
748
|
+
rdfs:isDefinedBy sh:;
|
|
749
|
+
rdfs:label "ask"@en;
|
|
750
|
+
rdfs:range xsd:string.
|
|
751
|
+
|
|
752
|
+
sh:datatype a rdf:Property;
|
|
753
|
+
rdfs:comment "Specifies an RDF datatype that all value nodes must have."@en;
|
|
754
|
+
rdfs:isDefinedBy sh:;
|
|
755
|
+
rdfs:label "datatype"@en;
|
|
756
|
+
rdfs:range rdfs:Datatype.
|
|
757
|
+
|
|
758
|
+
sh:qualifiedMinCount a rdf:Property;
|
|
759
|
+
rdfs:comment "The minimum number of value nodes that must conform to the shape."@en;
|
|
760
|
+
rdfs:isDefinedBy sh:;
|
|
761
|
+
rdfs:label "qualified min count"@en;
|
|
762
|
+
rdfs:range xsd:integer.
|
|
763
|
+
|
|
764
|
+
sh:QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint a sh:Parameter;
|
|
765
|
+
rdfs:isDefinedBy sh:;
|
|
766
|
+
sh:datatype xsd:boolean;
|
|
767
|
+
sh:optional true;
|
|
768
|
+
sh:path sh:qualifiedValueShapesDisjoint.
|
|
769
|
+
|
|
770
|
+
sh:flags a rdf:Property;
|
|
771
|
+
rdfs:comment "An optional flag to be used with regular expression pattern matching."@en;
|
|
772
|
+
rdfs:isDefinedBy sh:;
|
|
773
|
+
rdfs:label "flags"@en;
|
|
774
|
+
rdfs:range xsd:string.
|
|
775
|
+
|
|
776
|
+
sh:ignoredProperties a rdf:Property;
|
|
777
|
+
rdfs:comment "An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path."@en;
|
|
778
|
+
rdfs:isDefinedBy sh:;
|
|
779
|
+
rdfs:label "ignored properties"@en;
|
|
780
|
+
rdfs:range rdf:List.
|
|
781
|
+
|
|
782
|
+
sh:target a rdf:Property;
|
|
783
|
+
rdfs:comment "Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget."@en;
|
|
784
|
+
rdfs:domain sh:Shape;
|
|
785
|
+
rdfs:isDefinedBy sh:;
|
|
786
|
+
rdfs:label "target"@en;
|
|
787
|
+
rdfs:range sh:Target.
|
|
788
|
+
|
|
789
|
+
sh:prefix a rdf:Property;
|
|
790
|
+
rdfs:comment "The prefix of a prefix declaration."@en;
|
|
791
|
+
rdfs:domain sh:PrefixDeclaration;
|
|
792
|
+
rdfs:isDefinedBy sh:;
|
|
793
|
+
rdfs:label "prefix"@en;
|
|
794
|
+
rdfs:range xsd:string.
|
|
795
|
+
|
|
796
|
+
sh:EqualsConstraintComponent a sh:ConstraintComponent;
|
|
797
|
+
rdfs:comment "A constraint component that can be used to verify that the set of value nodes is equal to the set of nodes that have the focus node as subject and the value of a given property as predicate."@en;
|
|
798
|
+
rdfs:isDefinedBy sh:;
|
|
799
|
+
rdfs:label "Equals constraint component"@en;
|
|
800
|
+
sh:parameter sh:EqualsConstraintComponent-equals.
|
|
801
|
+
|
|
802
|
+
sh:PropertyConstraintComponent a sh:ConstraintComponent;
|
|
803
|
+
rdfs:comment "A constraint component that can be used to verify that all value nodes conform to the given property shape."@en;
|
|
804
|
+
rdfs:isDefinedBy sh:;
|
|
805
|
+
rdfs:label "Property constraint component"@en;
|
|
806
|
+
sh:parameter sh:PropertyConstraintComponent-property.
|
|
807
|
+
|
|
808
|
+
sh:NodeKindConstraintComponent-nodeKind a sh:Parameter;
|
|
809
|
+
rdfs:isDefinedBy sh:;
|
|
810
|
+
sh:in (
|
|
811
|
+
sh:BlankNode
|
|
812
|
+
sh:IRI
|
|
813
|
+
sh:Literal
|
|
814
|
+
sh:BlankNodeOrIRI
|
|
815
|
+
sh:BlankNodeOrLiteral
|
|
816
|
+
sh:IRIOrLiteral
|
|
817
|
+
);
|
|
818
|
+
sh:maxCount 1;
|
|
819
|
+
sh:path sh:nodeKind.
|
|
820
|
+
|
|
821
|
+
sh:MinLengthConstraintComponent-minLength a sh:Parameter;
|
|
822
|
+
rdfs:isDefinedBy sh:;
|
|
823
|
+
sh:datatype xsd:integer;
|
|
824
|
+
sh:maxCount 1;
|
|
825
|
+
sh:path sh:minLength.
|
|
826
|
+
|
|
827
|
+
sh:ValidationResult a rdfs:Class;
|
|
828
|
+
rdfs:comment "The class of validation results."@en;
|
|
829
|
+
rdfs:isDefinedBy sh:;
|
|
830
|
+
rdfs:label "Validation result"@en;
|
|
831
|
+
rdfs:subClassOf sh:AbstractResult.
|
|
832
|
+
|
|
833
|
+
sh:name a rdf:Property;
|
|
834
|
+
rdfs:comment "Human-readable labels for the property in the context of the surrounding shape."@en;
|
|
835
|
+
rdfs:domain sh:PropertyShape;
|
|
836
|
+
rdfs:isDefinedBy sh:;
|
|
837
|
+
rdfs:label "name"@en.
|
|
838
|
+
|
|
839
|
+
sh:JSConstraint a rdfs:Class;
|
|
840
|
+
rdfs:comment "The class of constraints backed by a JavaScript function."@en;
|
|
841
|
+
rdfs:isDefinedBy sh:;
|
|
842
|
+
rdfs:label "JavaScript-based constraint"@en;
|
|
843
|
+
rdfs:subClassOf sh:JSExecutable.
|
|
844
|
+
|
|
845
|
+
sh:NodeKind a rdfs:Class;
|
|
846
|
+
rdfs:comment "The class of all node kinds, including sh:BlankNode, sh:IRI, sh:Literal or the combinations of these: sh:BlankNodeOrIRI, sh:BlankNodeOrLiteral, sh:IRIOrLiteral."@en;
|
|
847
|
+
rdfs:isDefinedBy sh:;
|
|
848
|
+
rdfs:label "Node kind"@en;
|
|
849
|
+
rdfs:subClassOf rdfs:Resource.
|
|
850
|
+
|
|
851
|
+
sh:Parameterizable a rdfs:Class;
|
|
852
|
+
rdfs:comment "Superclass of components that can take parameters, especially functions and constraint components."@en;
|
|
853
|
+
rdfs:isDefinedBy sh:;
|
|
854
|
+
rdfs:label "Parameterizable"@en;
|
|
855
|
+
rdfs:subClassOf rdfs:Resource.
|
|
856
|
+
|
|
857
|
+
sh:expression a rdf:Property;
|
|
858
|
+
rdfs:comment "The node expression that must return true for the value nodes."@en;
|
|
859
|
+
rdfs:isDefinedBy sh:;
|
|
860
|
+
rdfs:label "expression"@en.
|
|
861
|
+
|
|
862
|
+
sh:node a rdf:Property;
|
|
863
|
+
rdfs:comment "Specifies the node shape that all value nodes must conform to."@en;
|
|
864
|
+
rdfs:isDefinedBy sh:;
|
|
865
|
+
rdfs:label "node"@en;
|
|
866
|
+
rdfs:range sh:NodeShape.
|
|
867
|
+
|
|
868
|
+
sh:PatternConstraintComponent-flags a sh:Parameter;
|
|
869
|
+
rdfs:isDefinedBy sh:;
|
|
870
|
+
sh:datatype xsd:string;
|
|
871
|
+
sh:optional true;
|
|
872
|
+
sh:path sh:flags.
|
|
873
|
+
|
|
874
|
+
sh:OrConstraintComponent-or a sh:Parameter;
|
|
875
|
+
rdfs:isDefinedBy sh:;
|
|
876
|
+
sh:path sh:or.
|
|
877
|
+
|
|
878
|
+
sh:select a rdf:Property;
|
|
879
|
+
rdfs:comment "The SPARQL SELECT query to execute."@en;
|
|
880
|
+
rdfs:domain sh:SPARQLSelectExecutable;
|
|
881
|
+
rdfs:isDefinedBy sh:;
|
|
882
|
+
rdfs:label "select"@en;
|
|
883
|
+
rdfs:range xsd:string.
|
|
884
|
+
|
|
885
|
+
sh:QualifiedMinCountConstraintComponent-qualifiedMinCount a sh:Parameter;
|
|
886
|
+
rdfs:isDefinedBy sh:;
|
|
887
|
+
sh:datatype xsd:integer;
|
|
888
|
+
sh:path sh:qualifiedMinCount.
|
|
889
|
+
|
|
890
|
+
sh:BlankNode a sh:NodeKind;
|
|
891
|
+
rdfs:comment "The node kind of all blank nodes."@en;
|
|
892
|
+
rdfs:isDefinedBy sh:;
|
|
893
|
+
rdfs:label "Blank node"@en.
|
|
894
|
+
|
|
895
|
+
sh:NodeConstraintComponent-node a sh:Parameter;
|
|
896
|
+
rdfs:isDefinedBy sh:;
|
|
897
|
+
sh:path sh:node.
|
|
898
|
+
|
|
899
|
+
sh:DatatypeConstraintComponent a sh:ConstraintComponent;
|
|
900
|
+
rdfs:comment "A constraint component that can be used to restrict the datatype of all value nodes."@en;
|
|
901
|
+
rdfs:isDefinedBy sh:;
|
|
902
|
+
rdfs:label "Datatype constraint component"@en;
|
|
903
|
+
sh:parameter sh:DatatypeConstraintComponent-datatype.
|
|
904
|
+
|
|
905
|
+
sh:SPARQLTargetType a rdfs:Class;
|
|
906
|
+
rdfs:comment "The (meta) class for parameterizable targets that are based on SPARQL queries."@en;
|
|
907
|
+
rdfs:isDefinedBy sh:;
|
|
908
|
+
rdfs:label "SPARQL target type"@en;
|
|
909
|
+
rdfs:subClassOf sh:SPARQLSelectExecutable,
|
|
910
|
+
sh:SPARQLAskExecutable,
|
|
911
|
+
sh:TargetType.
|
|
912
|
+
|
|
913
|
+
sh:value a rdf:Property;
|
|
914
|
+
rdfs:comment "An RDF node that has caused the result."@en;
|
|
915
|
+
rdfs:domain sh:AbstractResult;
|
|
916
|
+
rdfs:isDefinedBy sh:;
|
|
917
|
+
rdfs:label "value"@en.
|
|
918
|
+
|
|
919
|
+
sh:pattern a rdf:Property;
|
|
920
|
+
rdfs:comment "Specifies a regular expression pattern that the string representations of the value nodes must match."@en;
|
|
921
|
+
rdfs:isDefinedBy sh:;
|
|
922
|
+
rdfs:label "pattern"@en;
|
|
923
|
+
rdfs:range xsd:string.
|
|
924
|
+
|
|
925
|
+
sh:MaxLengthConstraintComponent-maxLength a sh:Parameter;
|
|
926
|
+
rdfs:isDefinedBy sh:;
|
|
927
|
+
sh:datatype xsd:integer;
|
|
928
|
+
sh:maxCount 1;
|
|
929
|
+
sh:path sh:maxLength.
|
|
930
|
+
|
|
931
|
+
sh:JSFunction a rdfs:Class;
|
|
932
|
+
rdfs:comment "The class of SHACL functions that execute a JavaScript function when called."@en;
|
|
933
|
+
rdfs:isDefinedBy sh:;
|
|
934
|
+
rdfs:label "JavaScript function"@en;
|
|
935
|
+
rdfs:subClassOf sh:JSExecutable, sh:Function.
|
|
936
|
+
|
|
937
|
+
sh:update a rdf:Property;
|
|
938
|
+
rdfs:comment "The SPARQL UPDATE to execute."@en;
|
|
939
|
+
rdfs:domain sh:SPARQLUpdateExecutable;
|
|
940
|
+
rdfs:isDefinedBy sh:;
|
|
941
|
+
rdfs:label "update"@en;
|
|
942
|
+
rdfs:range xsd:string.
|
|
943
|
+
|
|
944
|
+
sh:Severity a rdfs:Class;
|
|
945
|
+
rdfs:comment "The class of validation result severity levels, including violation and warning levels."@en;
|
|
946
|
+
rdfs:isDefinedBy sh:;
|
|
947
|
+
rdfs:label "Severity"@en;
|
|
948
|
+
rdfs:subClassOf rdfs:Resource.
|
|
949
|
+
|
|
950
|
+
sh:ExpressionConstraintComponent-expression a sh:Parameter;
|
|
951
|
+
rdfs:isDefinedBy sh:;
|
|
952
|
+
sh:path sh:expression.
|
|
953
|
+
|
|
954
|
+
sh:maxCount a rdf:Property;
|
|
955
|
+
rdfs:comment "Specifies the maximum number of values in the set of value nodes."@en;
|
|
956
|
+
rdfs:isDefinedBy sh:;
|
|
957
|
+
rdfs:label "max count"@en;
|
|
958
|
+
rdfs:range xsd:integer.
|
|
959
|
+
|
|
960
|
+
sh:construct a rdf:Property;
|
|
961
|
+
rdfs:comment "The SPARQL CONSTRUCT query to execute."@en;
|
|
962
|
+
rdfs:domain sh:SPARQLConstructExecutable;
|
|
963
|
+
rdfs:isDefinedBy sh:;
|
|
964
|
+
rdfs:label "construct"@en;
|
|
965
|
+
rdfs:range xsd:string.
|
|
966
|
+
|
|
967
|
+
sh:MaxInclusiveConstraintComponent a sh:ConstraintComponent;
|
|
968
|
+
rdfs:comment "A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value."@en;
|
|
969
|
+
rdfs:isDefinedBy sh:;
|
|
970
|
+
rdfs:label "Max-inclusive constraint component"@en;
|
|
971
|
+
sh:parameter sh:MaxInclusiveConstraintComponent-maxInclusive.
|
|
972
|
+
|
|
973
|
+
sh:SPARQLConstructExecutable a rdfs:Class;
|
|
974
|
+
rdfs:comment "The class of SPARQL executables that are based on a CONSTRUCT query."@en;
|
|
975
|
+
rdfs:isDefinedBy sh:;
|
|
976
|
+
rdfs:label "SPARQL CONSTRUCT executable"@en;
|
|
977
|
+
rdfs:subClassOf sh:SPARQLExecutable.
|
|
978
|
+
|
|
979
|
+
sh:parameter a rdf:Property;
|
|
980
|
+
rdfs:comment "The parameters of a function or constraint component."@en;
|
|
981
|
+
rdfs:domain sh:Parameterizable;
|
|
982
|
+
rdfs:isDefinedBy sh:;
|
|
983
|
+
rdfs:label "parameter"@en;
|
|
984
|
+
rdfs:range sh:Parameter.
|
|
985
|
+
|
|
986
|
+
sh:nodeValidator a rdf:Property;
|
|
987
|
+
rdfs:comment "The validator(s) used to evaluate a constraint in the context of a node shape."@en;
|
|
988
|
+
rdfs:domain sh:ConstraintComponent;
|
|
989
|
+
rdfs:isDefinedBy sh:;
|
|
990
|
+
rdfs:label "shape validator"@en;
|
|
991
|
+
rdfs:range sh:Validator.
|
|
992
|
+
|
|
993
|
+
sh:QualifiedMinCountConstraintComponent a sh:ConstraintComponent;
|
|
994
|
+
rdfs:comment "A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape."@en;
|
|
995
|
+
rdfs:isDefinedBy sh:;
|
|
996
|
+
rdfs:label "Qualified-min-count constraint component"@en;
|
|
997
|
+
sh:parameter sh:QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint,
|
|
998
|
+
sh:QualifiedMinCountConstraintComponent-qualifiedValueShape,
|
|
999
|
+
sh:QualifiedMinCountConstraintComponent-qualifiedMinCount.
|
|
1000
|
+
|
|
1001
|
+
sh:path a rdf:Property;
|
|
1002
|
+
rdfs:comment "Specifies the property path of a property shape."@en;
|
|
1003
|
+
rdfs:domain sh:PropertyShape;
|
|
1004
|
+
rdfs:isDefinedBy sh:;
|
|
1005
|
+
rdfs:label "path"@en;
|
|
1006
|
+
rdfs:range rdfs:Resource.
|
|
1007
|
+
|
|
1008
|
+
sh: a owl:Ontology;
|
|
1009
|
+
rdfs:comment "This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language."@en;
|
|
1010
|
+
rdfs:label "W3C Shapes Constraint Language (SHACL) Vocabulary"@en;
|
|
1011
|
+
sh:declare [
|
|
1012
|
+
sh:namespace "http://www.w3.org/ns/shacl#";
|
|
1013
|
+
sh:prefix "sh";
|
|
1014
|
+
];
|
|
1015
|
+
sh:suggestedShapesGraph <http://www.w3.org/ns/shacl-shacl#>.
|
|
1016
|
+
|
|
1017
|
+
sh:JSTarget a rdfs:Class;
|
|
1018
|
+
rdfs:comment "The class of targets that are based on JavaScript functions."@en;
|
|
1019
|
+
rdfs:isDefinedBy sh:;
|
|
1020
|
+
rdfs:label "JavaScript target"@en;
|
|
1021
|
+
rdfs:subClassOf sh:JSExecutable, sh:Target.
|
|
1022
|
+
|
|
1023
|
+
sh:Warning a sh:Severity;
|
|
1024
|
+
rdfs:comment "The severity for a warning validation result."@en;
|
|
1025
|
+
rdfs:isDefinedBy sh:;
|
|
1026
|
+
rdfs:label "Warning"@en.
|
|
1027
|
+
|
|
1028
|
+
sh:optional a rdf:Property;
|
|
1029
|
+
rdfs:comment "Indicates whether a parameter is optional."@en;
|
|
1030
|
+
rdfs:domain sh:Parameter;
|
|
1031
|
+
rdfs:isDefinedBy sh:;
|
|
1032
|
+
rdfs:label "optional"@en;
|
|
1033
|
+
rdfs:range xsd:boolean.
|
|
1034
|
+
|
|
1035
|
+
sh:minExclusive a rdf:Property;
|
|
1036
|
+
rdfs:comment "Specifies the minimum exclusive value of each value node."@en;
|
|
1037
|
+
rdfs:isDefinedBy sh:;
|
|
1038
|
+
rdfs:label "min exclusive"@en.
|
|
1039
|
+
|
|
1040
|
+
sh:in a rdf:Property;
|
|
1041
|
+
rdfs:comment "Specifies a list of allowed values so that each value node must be among the members of the given list."@en;
|
|
1042
|
+
rdfs:isDefinedBy sh:;
|
|
1043
|
+
rdfs:label "in"@en;
|
|
1044
|
+
rdfs:range rdf:List.
|
|
1045
|
+
|
|
1046
|
+
sh:SPARQLSelectExecutable a rdfs:Class;
|
|
1047
|
+
rdfs:comment "The class of SPARQL executables based on a SELECT query."@en;
|
|
1048
|
+
rdfs:isDefinedBy sh:;
|
|
1049
|
+
rdfs:label "SPARQL SELECT executable"@en;
|
|
1050
|
+
rdfs:subClassOf sh:SPARQLExecutable.
|
|
1051
|
+
|
|
1052
|
+
sh:focusNode a rdf:Property;
|
|
1053
|
+
rdfs:comment "The focus node that was validated when the result was produced."@en;
|
|
1054
|
+
rdfs:domain sh:AbstractResult;
|
|
1055
|
+
rdfs:isDefinedBy sh:;
|
|
1056
|
+
rdfs:label "focus node"@en.
|
|
1057
|
+
|
|
1058
|
+
sh:qualifiedMaxCount a rdf:Property;
|
|
1059
|
+
rdfs:comment "The maximum number of value nodes that can conform to the shape."@en;
|
|
1060
|
+
rdfs:isDefinedBy sh:;
|
|
1061
|
+
rdfs:label "qualified max count"@en;
|
|
1062
|
+
rdfs:range xsd:integer.
|
|
1063
|
+
|
|
1064
|
+
sh:shapesGraphWellFormed a rdf:Property;
|
|
1065
|
+
rdfs:comment "If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process."@en;
|
|
1066
|
+
rdfs:domain sh:ValidationReport;
|
|
1067
|
+
rdfs:isDefinedBy sh:;
|
|
1068
|
+
rdfs:label "shapes graph well-formed"@en;
|
|
1069
|
+
rdfs:range xsd:boolean.
|
|
1070
|
+
|
|
1071
|
+
sh:ClosedConstraintComponent a sh:ConstraintComponent;
|
|
1072
|
+
rdfs:comment "A constraint component that can be used to indicate that focus nodes must only have values for those properties that have been explicitly enumerated via sh:property/sh:path."@en;
|
|
1073
|
+
rdfs:isDefinedBy sh:;
|
|
1074
|
+
rdfs:label "Closed constraint component"@en;
|
|
1075
|
+
sh:parameter sh:ClosedConstraintComponent-ignoredProperties,
|
|
1076
|
+
sh:ClosedConstraintComponent-closed.
|
|
1077
|
+
|
|
1078
|
+
sh:XoneConstraintComponent a sh:ConstraintComponent;
|
|
1079
|
+
rdfs:comment "A constraint component that can be used to restrict the value nodes so that they conform to exactly one out of several provided shapes."@en;
|
|
1080
|
+
rdfs:isDefinedBy sh:;
|
|
1081
|
+
rdfs:label "Exactly one constraint component"@en;
|
|
1082
|
+
sh:parameter sh:XoneConstraintComponent-xone.
|
|
1083
|
+
|
|
1084
|
+
sh:filterShape a rdf:Property;
|
|
1085
|
+
rdfs:comment "The shape that all input nodes of the expression need to conform to."@en;
|
|
1086
|
+
rdfs:isDefinedBy sh:;
|
|
1087
|
+
rdfs:label "filter shape"@en;
|
|
1088
|
+
rdfs:range sh:Shape.
|
|
1089
|
+
|
|
1090
|
+
sh:ConstraintComponent a rdfs:Class;
|
|
1091
|
+
rdfs:comment "The class of constraint components."@en;
|
|
1092
|
+
rdfs:isDefinedBy sh:;
|
|
1093
|
+
rdfs:label "Constraint component"@en;
|
|
1094
|
+
rdfs:subClassOf sh:Parameterizable.
|
|
1095
|
+
|
|
1096
|
+
sh:minInclusive a rdf:Property;
|
|
1097
|
+
rdfs:comment "Specifies the minimum inclusive value of each value node."@en;
|
|
1098
|
+
rdfs:isDefinedBy sh:;
|
|
1099
|
+
rdfs:label "min inclusive"@en.
|
|
1100
|
+
|
|
1101
|
+
sh:Literal a sh:NodeKind;
|
|
1102
|
+
rdfs:comment "The node kind of all literals."@en;
|
|
1103
|
+
rdfs:isDefinedBy sh:;
|
|
1104
|
+
rdfs:label "Literal"@en.
|
|
1105
|
+
|
|
1106
|
+
sh:BlankNodeOrLiteral a sh:NodeKind;
|
|
1107
|
+
rdfs:comment "The node kind of all blank nodes or literals."@en;
|
|
1108
|
+
rdfs:isDefinedBy sh:;
|
|
1109
|
+
rdfs:label "Blank node or literal"@en.
|
|
1110
|
+
|
|
1111
|
+
sh:PrefixDeclaration a rdfs:Class;
|
|
1112
|
+
rdfs:comment "The class of prefix declarations, consisting of pairs of a prefix with a namespace."@en;
|
|
1113
|
+
rdfs:isDefinedBy sh:;
|
|
1114
|
+
rdfs:label "Prefix declaration"@en;
|
|
1115
|
+
rdfs:subClassOf rdfs:Resource.
|
|
1116
|
+
|
|
1117
|
+
sh:validator a rdf:Property;
|
|
1118
|
+
rdfs:comment "The validator(s) used to evaluate constraints of either node or property shapes."@en;
|
|
1119
|
+
rdfs:domain sh:ConstraintComponent;
|
|
1120
|
+
rdfs:isDefinedBy sh:;
|
|
1121
|
+
rdfs:label "validator"@en;
|
|
1122
|
+
rdfs:range sh:Validator.
|
|
1123
|
+
|
|
1124
|
+
sh:this a rdfs:Resource;
|
|
1125
|
+
rdfs:comment "A node expression that represents the current focus node."@en;
|
|
1126
|
+
rdfs:isDefinedBy sh:;
|
|
1127
|
+
rdfs:label "this"@en.
|
|
1128
|
+
|
|
1129
|
+
sh:alternativePath a rdf:Property;
|
|
1130
|
+
rdfs:comment "The (single) value of this property must be a list of path elements, representing the elements of alternative paths."@en;
|
|
1131
|
+
rdfs:isDefinedBy sh:;
|
|
1132
|
+
rdfs:label "alternative path"@en;
|
|
1133
|
+
rdfs:range rdf:List.
|
|
1134
|
+
|
|
1135
|
+
sh:NodeConstraintComponent a sh:ConstraintComponent;
|
|
1136
|
+
rdfs:comment "A constraint component that can be used to verify that all value nodes conform to the given node shape."@en;
|
|
1137
|
+
rdfs:isDefinedBy sh:;
|
|
1138
|
+
rdfs:label "Node constraint component"@en;
|
|
1139
|
+
sh:parameter sh:NodeConstraintComponent-node.
|
|
1140
|
+
|
|
1141
|
+
sh:result a rdf:Property;
|
|
1142
|
+
rdfs:comment "The validation results contained in a validation report."@en;
|
|
1143
|
+
rdfs:domain sh:ValidationReport;
|
|
1144
|
+
rdfs:isDefinedBy sh:;
|
|
1145
|
+
rdfs:label "result"@en;
|
|
1146
|
+
rdfs:range sh:ValidationResult.
|
|
1147
|
+
|
|
1148
|
+
sh:resultAnnotation a rdf:Property;
|
|
1149
|
+
rdfs:comment "Links a SPARQL validator with zero or more sh:ResultAnnotation instances, defining how to derive additional result properties based on the variables of the SELECT query."@en;
|
|
1150
|
+
rdfs:domain sh:SPARQLSelectValidator;
|
|
1151
|
+
rdfs:isDefinedBy sh:;
|
|
1152
|
+
rdfs:label "result annotation"@en;
|
|
1153
|
+
rdfs:range sh:ResultAnnotation.
|
|
1154
|
+
|
|
1155
|
+
sh:MaxCountConstraintComponent-maxCount a sh:Parameter;
|
|
1156
|
+
rdfs:isDefinedBy sh:;
|
|
1157
|
+
sh:datatype xsd:integer;
|
|
1158
|
+
sh:maxCount 1;
|
|
1159
|
+
sh:path sh:maxCount.
|
|
1160
|
+
|
|
1161
|
+
sh:Target a rdfs:Class;
|
|
1162
|
+
rdfs:comment "The base class of targets such as those based on SPARQL queries."@en;
|
|
1163
|
+
rdfs:isDefinedBy sh:;
|
|
1164
|
+
rdfs:label "Target"@en;
|
|
1165
|
+
rdfs:subClassOf rdfs:Resource.
|
|
1166
|
+
|
|
1167
|
+
sh:sparql a rdf:Property;
|
|
1168
|
+
rdfs:comment "Links a shape with SPARQL constraints."@en;
|
|
1169
|
+
rdfs:domain sh:Shape;
|
|
1170
|
+
rdfs:isDefinedBy sh:;
|
|
1171
|
+
rdfs:label "constraint (in SPARQL)"@en;
|
|
1172
|
+
rdfs:range sh:SPARQLConstraint.
|
|
1173
|
+
|
|
1174
|
+
sh:Shape a rdfs:Class;
|
|
1175
|
+
rdfs:comment "A shape is a collection of constraints that may be targeted for certain nodes."@en;
|
|
1176
|
+
rdfs:isDefinedBy sh:;
|
|
1177
|
+
rdfs:label "Shape"@en;
|
|
1178
|
+
rdfs:subClassOf rdfs:Resource.
|
|
1179
|
+
|
|
1180
|
+
sh:labelTemplate a rdf:Property;
|
|
1181
|
+
rdfs:comment "Outlines how human-readable labels of instances of the associated Parameterizable shall be produced. The values can contain {?paramName} as placeholders for the actual values of the given parameter."@en;
|
|
1182
|
+
rdfs:domain sh:Parameterizable;
|
|
1183
|
+
rdfs:isDefinedBy sh:;
|
|
1184
|
+
rdfs:label "label template"@en.
|
|
1185
|
+
|
|
1186
|
+
sh:SPARQLTarget a rdfs:Class;
|
|
1187
|
+
rdfs:comment "The class of targets that are based on SPARQL queries."@en;
|
|
1188
|
+
rdfs:isDefinedBy sh:;
|
|
1189
|
+
rdfs:label "SPARQL target"@en;
|
|
1190
|
+
rdfs:subClassOf sh:SPARQLSelectExecutable, sh:SPARQLAskExecutable, sh:Target.
|
|
1191
|
+
|
|
1192
|
+
sh:hasValue a rdf:Property;
|
|
1193
|
+
rdfs:comment "Specifies a value that must be among the value nodes."@en;
|
|
1194
|
+
rdfs:isDefinedBy sh:;
|
|
1195
|
+
rdfs:label "has value"@en.
|
|
1196
|
+
|
|
1197
|
+
sh:and a rdf:Property;
|
|
1198
|
+
rdfs:comment "RDF list of shapes to validate the value nodes against."@en;
|
|
1199
|
+
rdfs:isDefinedBy sh:;
|
|
1200
|
+
rdfs:label "and"@en;
|
|
1201
|
+
rdfs:range rdf:List.
|
|
1202
|
+
|
|
1203
|
+
sh:jsLibrary a rdf:Property;
|
|
1204
|
+
rdfs:comment "Declares which JavaScript libraries are needed to execute this."@en;
|
|
1205
|
+
rdfs:isDefinedBy sh:;
|
|
1206
|
+
rdfs:label "JavaScript library"@en;
|
|
1207
|
+
rdfs:range sh:JSLibrary.
|
|
1208
|
+
|
|
1209
|
+
sh:SPARQLRule a rdfs:Class;
|
|
1210
|
+
rdfs:comment "The class of SHACL rules based on SPARQL CONSTRUCT queries."@en;
|
|
1211
|
+
rdfs:isDefinedBy sh:;
|
|
1212
|
+
rdfs:label "SPARQL CONSTRUCT rule"@en;
|
|
1213
|
+
rdfs:subClassOf sh:SPARQLConstructExecutable, sh:Rule.
|
|
1214
|
+
|
|
1215
|
+
sh:JSExecutable a rdfs:Class;
|
|
1216
|
+
rdfs:comment "Abstract base class of resources that declare an executable JavaScript."@en;
|
|
1217
|
+
rdfs:isDefinedBy sh:;
|
|
1218
|
+
rdfs:label "JavaScript executable"@en;
|
|
1219
|
+
rdfs:subClassOf rdfs:Resource.
|
|
1220
|
+
|
|
1221
|
+
sh:SPARQLExecutable a rdfs:Class;
|
|
1222
|
+
rdfs:comment "The class of resources that encapsulate a SPARQL query."@en;
|
|
1223
|
+
rdfs:isDefinedBy sh:;
|
|
1224
|
+
rdfs:label "SPARQL executable"@en;
|
|
1225
|
+
rdfs:subClassOf rdfs:Resource.
|
|
1226
|
+
|
|
1227
|
+
sh:rule a rdf:Property;
|
|
1228
|
+
rdfs:comment "The rules linked to a shape."@en;
|
|
1229
|
+
rdfs:domain sh:Shape;
|
|
1230
|
+
rdfs:isDefinedBy sh:;
|
|
1231
|
+
rdfs:label "rule"@en;
|
|
1232
|
+
rdfs:range sh:Rule.
|
|
1233
|
+
|
|
1234
|
+
sh:oneOrMorePath a rdf:Property;
|
|
1235
|
+
rdfs:comment "The (single) value of this property represents a path that is matched one or more times."@en;
|
|
1236
|
+
rdfs:isDefinedBy sh:;
|
|
1237
|
+
rdfs:label "one or more path"@en;
|
|
1238
|
+
rdfs:range rdfs:Resource.
|
|
1239
|
+
|
|
1240
|
+
sh:MinExclusiveConstraintComponent a sh:ConstraintComponent;
|
|
1241
|
+
rdfs:comment "A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value."@en;
|
|
1242
|
+
rdfs:isDefinedBy sh:;
|
|
1243
|
+
rdfs:label "Min-exclusive constraint component"@en;
|
|
1244
|
+
sh:parameter sh:MinExclusiveConstraintComponent-minExclusive.
|
|
1245
|
+
|
|
1246
|
+
sh:ClosedConstraintComponent-ignoredProperties a sh:Parameter;
|
|
1247
|
+
rdfs:isDefinedBy sh:;
|
|
1248
|
+
sh:optional true;
|
|
1249
|
+
sh:path sh:ignoredProperties.
|
|
1250
|
+
|
|
1251
|
+
sh:PatternConstraintComponent-pattern a sh:Parameter;
|
|
1252
|
+
rdfs:isDefinedBy sh:;
|
|
1253
|
+
sh:datatype xsd:string;
|
|
1254
|
+
sh:path sh:pattern.
|
|
1255
|
+
|
|
1256
|
+
sh:disjoint a rdf:Property;
|
|
1257
|
+
rdfs:comment "Specifies a property where the set of values must be disjoint with the value nodes."@en;
|
|
1258
|
+
rdfs:isDefinedBy sh:;
|
|
1259
|
+
rdfs:label "disjoint"@en;
|
|
1260
|
+
rdfs:range rdf:Property.
|
|
1261
|
+
|
|
1262
|
+
sh:nodeKind a rdf:Property;
|
|
1263
|
+
rdfs:comment "Specifies the node kind (e.g. IRI or literal) each value node."@en;
|
|
1264
|
+
rdfs:isDefinedBy sh:;
|
|
1265
|
+
rdfs:label "node kind"@en;
|
|
1266
|
+
rdfs:range sh:NodeKind.
|
|
1267
|
+
|
|
1268
|
+
sh:deactivated a rdf:Property;
|
|
1269
|
+
rdfs:comment "If set to true then all nodes conform to this."@en;
|
|
1270
|
+
rdfs:isDefinedBy sh:;
|
|
1271
|
+
rdfs:label "deactivated"@en;
|
|
1272
|
+
rdfs:range xsd:boolean.
|
|
1273
|
+
|
|
1274
|
+
sh:ExpressionConstraintComponent a sh:ConstraintComponent;
|
|
1275
|
+
rdfs:comment "A constraint component that can be used to verify that a given node expression produces true for all value nodes."@en;
|
|
1276
|
+
rdfs:isDefinedBy sh:;
|
|
1277
|
+
rdfs:label "Expression constraint component"@en;
|
|
1278
|
+
sh:parameter sh:ExpressionConstraintComponent-expression.
|
|
1279
|
+
|
|
1280
|
+
sh:propertyValidator a rdf:Property;
|
|
1281
|
+
rdfs:comment "The validator(s) used to evaluate a constraint in the context of a property shape."@en;
|
|
1282
|
+
rdfs:domain sh:ConstraintComponent;
|
|
1283
|
+
rdfs:isDefinedBy sh:;
|
|
1284
|
+
rdfs:label "property validator"@en;
|
|
1285
|
+
rdfs:range sh:Validator.
|
|
1286
|
+
|
|
1287
|
+
sh:lessThan a rdf:Property;
|
|
1288
|
+
rdfs:comment "Specifies a property that must have smaller values than the value nodes."@en;
|
|
1289
|
+
rdfs:isDefinedBy sh:;
|
|
1290
|
+
rdfs:label "less than"@en;
|
|
1291
|
+
rdfs:range rdf:Property.
|
|
1292
|
+
|
|
1293
|
+
sh:sourceConstraint a rdf:Property;
|
|
1294
|
+
rdfs:comment "The constraint that was validated when the result was produced."@en;
|
|
1295
|
+
rdfs:domain sh:AbstractResult;
|
|
1296
|
+
rdfs:isDefinedBy sh:;
|
|
1297
|
+
rdfs:label "source constraint"@en.
|
|
1298
|
+
|
|
1299
|
+
sh:PatternConstraintComponent a sh:ConstraintComponent;
|
|
1300
|
+
rdfs:comment "A constraint component that can be used to verify that every value node matches a given regular expression."@en;
|
|
1301
|
+
rdfs:isDefinedBy sh:;
|
|
1302
|
+
rdfs:label "Pattern constraint component"@en;
|
|
1303
|
+
sh:parameter sh:PatternConstraintComponent-flags,
|
|
1304
|
+
sh:PatternConstraintComponent-pattern.
|
|
1305
|
+
|
|
1306
|
+
sh:MinExclusiveConstraintComponent-minExclusive a sh:Parameter;
|
|
1307
|
+
rdfs:isDefinedBy sh:;
|
|
1308
|
+
sh:maxCount 1;
|
|
1309
|
+
sh:nodeKind sh:Literal;
|
|
1310
|
+
sh:path sh:minExclusive.
|
|
1311
|
+
|
|
1312
|
+
sh:UniqueLangConstraintComponent a sh:ConstraintComponent;
|
|
1313
|
+
rdfs:comment "A constraint component that can be used to specify that no pair of value nodes may use the same language tag."@en;
|
|
1314
|
+
rdfs:isDefinedBy sh:;
|
|
1315
|
+
rdfs:label "Unique-languages constraint component"@en;
|
|
1316
|
+
sh:parameter sh:UniqueLangConstraintComponent-uniqueLang.
|
|
1317
|
+
|
|
1318
|
+
sh:SPARQLFunction a rdfs:Class;
|
|
1319
|
+
rdfs:comment "A function backed by a SPARQL query - either ASK or SELECT."@en;
|
|
1320
|
+
rdfs:isDefinedBy sh:;
|
|
1321
|
+
rdfs:label "SPARQL function"@en;
|
|
1322
|
+
rdfs:subClassOf sh:SPARQLSelectExecutable, sh:SPARQLAskExecutable, sh:Function.
|
|
1323
|
+
|
|
1324
|
+
sh:QualifiedMaxCountConstraintComponent-qualifiedValueShape a sh:Parameter;
|
|
1325
|
+
rdfs:isDefinedBy sh:;
|
|
1326
|
+
sh:path sh:qualifiedValueShape.
|
|
1327
|
+
|
|
1328
|
+
sh:qualifiedValueShape a rdf:Property;
|
|
1329
|
+
rdfs:comment "The shape that a specified number of values must conform to."@en;
|
|
1330
|
+
rdfs:isDefinedBy sh:;
|
|
1331
|
+
rdfs:label "qualified value shape"@en;
|
|
1332
|
+
rdfs:range sh:Shape.
|
|
1333
|
+
|
|
1334
|
+
sh:Parameter a rdfs:Class;
|
|
1335
|
+
rdfs:comment "The class of parameter declarations, consisting of a path predicate and (possibly) information about allowed value type, cardinality and other characteristics."@en;
|
|
1336
|
+
rdfs:isDefinedBy sh:;
|
|
1337
|
+
rdfs:label "Parameter"@en;
|
|
1338
|
+
rdfs:subClassOf sh:PropertyShape.
|
|
1339
|
+
|