rdf-vocab 3.1.4 → 3.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +14 -28
- data/lib/rdf/vocab/acl.rb +84 -1
- data/lib/rdf/vocab/as.rb +466 -1
- data/lib/rdf/vocab/bf2.rb +1317 -1
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +496 -1
- data/lib/rdf/vocab/cc.rb +107 -1
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1303 -1
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +1 -1
- data/lib/rdf/vocab/dc11.rb +63 -1
- data/lib/rdf/vocab/dcat.rb +152 -4
- data/lib/rdf/vocab/dcmitype.rb +1 -1
- data/lib/rdf/vocab/disco.rb +228 -1
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +753 -1
- data/lib/rdf/vocab/earl.rb +135 -1
- data/lib/rdf/vocab/ebucore.rb +7335 -1974
- data/lib/rdf/vocab/edm.rb +150 -1
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +253 -203
- data/lib/rdf/vocab/fcrepo4.rb +377 -1
- data/lib/rdf/vocab/foaf.rb +305 -1
- data/lib/rdf/vocab/geo.rb +39 -1
- data/lib/rdf/vocab/geojson.rb +66 -1
- data/lib/rdf/vocab/geonames.rb +166 -1
- data/lib/rdf/vocab/gr.rb +684 -1
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +164 -1
- data/lib/rdf/vocab/hydra.rb +236 -2
- data/lib/rdf/vocab/iana.rb +230 -1
- data/lib/rdf/vocab/ical.rb +462 -1
- data/lib/rdf/vocab/identifiers.rb +462 -1
- data/lib/rdf/vocab/iiif.rb +136 -1
- data/lib/rdf/vocab/jsonld.rb +135 -1
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +1 -1
- data/lib/rdf/vocab/ma.rb +381 -1
- data/lib/rdf/vocab/mads.rb +600 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +809 -1
- data/lib/rdf/vocab/mo.rb +919 -1
- data/lib/rdf/vocab/mods.rb +516 -1
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +275 -1
- data/lib/rdf/vocab/og.rb +78 -1
- data/lib/rdf/vocab/ogc.rb +34 -1
- data/lib/rdf/vocab/ore.rb +56 -1
- data/lib/rdf/vocab/org.rb +189 -1
- data/lib/rdf/vocab/pcdm.rb +47 -1
- data/lib/rdf/vocab/pplan.rb +64 -1
- data/lib/rdf/vocab/premis.rb +1266 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +155 -1
- data/lib/rdf/vocab/prov.rb +619 -1
- data/lib/rdf/vocab/ptr.rb +138 -1
- data/lib/rdf/vocab/rightsstatements.rb +5 -1
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +1 -1
- data/lib/rdf/vocab/schema.rb +10032 -12
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +736 -1
- data/lib/rdf/vocab/sioc.rb +401 -1
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +38 -1
- data/lib/rdf/vocab/{sioct.rb → sioctypes.rb} +158 -1
- data/lib/rdf/vocab/skos.rb +119 -1
- data/lib/rdf/vocab/skosxl.rb +30 -1
- data/lib/rdf/vocab/v.rb +291 -1
- data/lib/rdf/vocab/vcard.rb +508 -1
- data/lib/rdf/vocab/vmd.rb +291 -1
- data/lib/rdf/vocab/void.rb +121 -1
- data/lib/rdf/vocab/vs.rb +19 -1
- data/lib/rdf/vocab/wdrs.rb +90 -1
- data/lib/rdf/vocab/wot.rb +78 -1
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +338 -1
- data/lib/rdf/vocab/xkos.rb +150 -1
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +15 -8
data/lib/rdf/vocab/sd.rb
ADDED
@@ -0,0 +1,372 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
# frozen_string_literal: true
|
3
|
+
# This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/sparql-service-description#
|
4
|
+
require 'rdf'
|
5
|
+
module RDF::Vocab
|
6
|
+
# @!parse
|
7
|
+
# # Vocabulary for <http://www.w3.org/ns/sparql-service-description#>
|
8
|
+
# #
|
9
|
+
# class SD < RDF::StrictVocabulary
|
10
|
+
# # An instance of sd:Aggregate represents an aggregate that may be used in a SPARQL aggregate query (for instance in a HAVING clause or SELECT expression) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE.
|
11
|
+
# # @return [RDF::Vocabulary::Term]
|
12
|
+
# attr_reader :Aggregate
|
13
|
+
#
|
14
|
+
# # An instance of sd:Dataset represents a RDF Dataset comprised of a default graph and zero or more named graphs.
|
15
|
+
# # @return [RDF::Vocabulary::Term]
|
16
|
+
# attr_reader :Dataset
|
17
|
+
#
|
18
|
+
# # An instance of sd:EntailmentProfile represents a profile of an entailment regime. An entailment profile MAY impose restrictions on what constitutes valid RDF with respect to entailment.
|
19
|
+
# # @return [RDF::Vocabulary::Term]
|
20
|
+
# attr_reader :EntailmentProfile
|
21
|
+
#
|
22
|
+
# # An instance of sd:EntailmentRegime represents an entailment regime used in basic graph pattern matching (as described by SPARQL 1.1 Query Language).
|
23
|
+
# # @return [RDF::Vocabulary::Term]
|
24
|
+
# attr_reader :EntailmentRegime
|
25
|
+
#
|
26
|
+
# # An instance of sd:Feature represents a feature of a SPARQL service. Specific types of features include functions, aggregates, languages, and entailment regimes and profiles. This document defines five instances of sd:Feature: sd:DereferencesURIs, sd:UnionDefaultGraph, sd:RequiresDataset, sd:EmptyGraphs, and sd:BasicFederatedQuery.
|
27
|
+
# # @return [RDF::Vocabulary::Term]
|
28
|
+
# attr_reader :Feature
|
29
|
+
#
|
30
|
+
# # An instance of sd:Function represents a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause.
|
31
|
+
# # @return [RDF::Vocabulary::Term]
|
32
|
+
# attr_reader :Function
|
33
|
+
#
|
34
|
+
# # An instance of sd:Graph represents the description of an RDF graph.
|
35
|
+
# # @return [RDF::Vocabulary::Term]
|
36
|
+
# attr_reader :Graph
|
37
|
+
#
|
38
|
+
# # An instance of sd:GraphCollection represents a collection of zero or more named graph descriptions. Each named graph description belonging to an sd:GraphCollection MUST be linked with the sd:namedGraph predicate.
|
39
|
+
# # @return [RDF::Vocabulary::Term]
|
40
|
+
# attr_reader :GraphCollection
|
41
|
+
#
|
42
|
+
# # An instance of sd:Language represents one of the SPARQL languages, including specific configurations providing particular features or extensions. This document defines three instances of sd:Language: sd:SPARQL10Query, sd:SPARQL11Query, and sd:SPARQL11Update.
|
43
|
+
# # @return [RDF::Vocabulary::Term]
|
44
|
+
# attr_reader :Language
|
45
|
+
#
|
46
|
+
# # An instance of sd:NamedGraph represents a named graph having a name (via sd:name) and an optional graph description (via sd:graph).
|
47
|
+
# # @return [RDF::Vocabulary::Term]
|
48
|
+
# attr_reader :NamedGraph
|
49
|
+
#
|
50
|
+
# # An instance of sd:Service represents a SPARQL service made available via the SPARQL Protocol.
|
51
|
+
# # @return [RDF::Vocabulary::Term]
|
52
|
+
# attr_reader :Service
|
53
|
+
#
|
54
|
+
# # Relates an instance of sd:Service to a description of the graphs which are allowed in the construction of a dataset either via the SPARQL Protocol, with FROM/FROM NAMED clauses in a query, or with USING/USING NAMED in an update request, if the service limits the scope of dataset construction.
|
55
|
+
# # @return [RDF::Vocabulary::Term]
|
56
|
+
# attr_reader :availableGraphs
|
57
|
+
#
|
58
|
+
# # Relates an instance of sd:Service to a description of the default dataset available when no explicit dataset is specified in the query, update request or via protocol parameters.
|
59
|
+
# # @return [RDF::Vocabulary::Term]
|
60
|
+
# attr_reader :defaultDataset
|
61
|
+
#
|
62
|
+
# # Relates an instance of sd:Service with a resource representing an entailment regime used for basic graph pattern matching. This property is intended for use when a single entailment regime by default applies to all graphs in the default dataset of the service. In situations where a different entailment regime applies to a specific graph in the dataset, the sd:entailmentRegime property should be used to indicate this fact in the description of that graph.
|
63
|
+
# # @return [RDF::Vocabulary::Term]
|
64
|
+
# attr_reader :defaultEntailmentRegime
|
65
|
+
#
|
66
|
+
# # Relates an instance of sd:Dataset to the description of its default graph.
|
67
|
+
# # @return [RDF::Vocabulary::Term]
|
68
|
+
# attr_reader :defaultGraph
|
69
|
+
#
|
70
|
+
# # Relates an instance of sd:Service with a resource representing a supported profile of the default entailment regime (as declared by sd:defaultEntailmentRegime).
|
71
|
+
# # @return [RDF::Vocabulary::Term]
|
72
|
+
# attr_reader :defaultSupportedEntailmentProfile
|
73
|
+
#
|
74
|
+
# # The SPARQL endpoint of an sd:Service that implements the SPARQL Protocol service. The object of the sd:endpoint property is an IRI.
|
75
|
+
# # @return [RDF::Vocabulary::Term]
|
76
|
+
# attr_reader :endpoint
|
77
|
+
#
|
78
|
+
# # Relates a named graph description with a resource representing an entailment regime used for basic graph pattern matching over that graph.
|
79
|
+
# # @return [RDF::Vocabulary::Term]
|
80
|
+
# attr_reader :entailmentRegime
|
81
|
+
#
|
82
|
+
# # Relates an instance of sd:Service to an aggregate that may be used in a SPARQL aggregate query (for instance in a HAVING clause or SELECT expression) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE
|
83
|
+
# # @return [RDF::Vocabulary::Term]
|
84
|
+
# attr_reader :extensionAggregate
|
85
|
+
#
|
86
|
+
# # Relates an instance of sd:Service to a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause.
|
87
|
+
# # @return [RDF::Vocabulary::Term]
|
88
|
+
# attr_reader :extensionFunction
|
89
|
+
#
|
90
|
+
# # Relates an instance of sd:Service with a resource representing a supported feature.
|
91
|
+
# # @return [RDF::Vocabulary::Term]
|
92
|
+
# attr_reader :feature
|
93
|
+
#
|
94
|
+
# # Relates a named graph to its graph description.
|
95
|
+
# # @return [RDF::Vocabulary::Term]
|
96
|
+
# attr_reader :graph
|
97
|
+
#
|
98
|
+
# # Relates an instance of sd:Service to a format that is supported for parsing RDF input; for example, via a SPARQL 1.1 Update LOAD statement, or when URIs are dereferenced in FROM/FROM NAMED/USING/USING NAMED clauses.
|
99
|
+
# # @return [RDF::Vocabulary::Term]
|
100
|
+
# attr_reader :inputFormat
|
101
|
+
#
|
102
|
+
# # Relates an instance of sd:Service to a resource representing an implemented extension to the SPARQL Query or Update language.
|
103
|
+
# # @return [RDF::Vocabulary::Term]
|
104
|
+
# attr_reader :languageExtension
|
105
|
+
#
|
106
|
+
# # Relates a named graph to the name by which it may be referenced in a FROM/FROM NAMED clause. The object of the sd:name property is an IRI.
|
107
|
+
# # @return [RDF::Vocabulary::Term]
|
108
|
+
# attr_reader :name
|
109
|
+
#
|
110
|
+
# # Relates an instance of sd:GraphCollection (or its subclass sd:Dataset) to the description of one of its named graphs. The description of such a named graph MUST include the sd:name property and MAY include the sd:graph property.
|
111
|
+
# # @return [RDF::Vocabulary::Term]
|
112
|
+
# attr_reader :namedGraph
|
113
|
+
#
|
114
|
+
# # Relates an instance of sd:Service to a resource representing an implemented feature that extends the SPARQL Query or Update language and that is accessed by using the named property.
|
115
|
+
# # @return [RDF::Vocabulary::Term]
|
116
|
+
# attr_reader :propertyFeature
|
117
|
+
#
|
118
|
+
# # Relates an instance of sd:Service to a format that is supported for serializing query results.
|
119
|
+
# # @return [RDF::Vocabulary::Term]
|
120
|
+
# attr_reader :resultFormat
|
121
|
+
#
|
122
|
+
# # Relates a named graph description with a resource representing a supported profile of the entailment regime (as declared by sd:entailmentRegime) used for basic graph pattern matching over that graph.
|
123
|
+
# # @return [RDF::Vocabulary::Term]
|
124
|
+
# attr_reader :supportedEntailmentProfile
|
125
|
+
#
|
126
|
+
# # Relates an instance of sd:Service to a SPARQL language (e.g. Query and Update) that it implements.
|
127
|
+
# # @return [RDF::Vocabulary::Term]
|
128
|
+
# attr_reader :supportedLanguage
|
129
|
+
#
|
130
|
+
# # sd:BasicFederatedQuery, when used as the object of the sd:feature property, indicates that the SPARQL service supports basic federated query using the SERVICE keyword as defined by SPARQL 1.1 Federation Extensions.
|
131
|
+
# # @return [RDF::Vocabulary::Term]
|
132
|
+
# attr_reader :BasicFederatedQuery
|
133
|
+
#
|
134
|
+
# # sd:DereferencesURIs, when used as the object of the sd:feature property, indicates that a SPARQL service will dereference URIs used in FROM/FROM NAMED and USING/USING NAMED clauses and use the resulting RDF in the dataset during query evaluation.
|
135
|
+
# # @return [RDF::Vocabulary::Term]
|
136
|
+
# attr_reader :DereferencesURIs
|
137
|
+
#
|
138
|
+
# # sd:EmptyGraphs, when used as the object of the sd:feature property, indicates that the underlying graph store supports empty graphs. A graph store that supports empty graphs MUST NOT remove graphs that are left empty after triples are removed from them.
|
139
|
+
# # @return [RDF::Vocabulary::Term]
|
140
|
+
# attr_reader :EmptyGraphs
|
141
|
+
#
|
142
|
+
# # sd:RequiresDataset, when used as the object of the sd:feature property, indicates that the SPARQL service requires an explicit dataset declaration (based on either FROM/FROM NAMED clauses in a query, USING/USING NAMED clauses in an update, or the appropriate SPARQL Protocol parameters).
|
143
|
+
# # @return [RDF::Vocabulary::Term]
|
144
|
+
# attr_reader :RequiresDataset
|
145
|
+
#
|
146
|
+
# # sd:SPARQL10Query is an sd:Language representing the SPARQL 1.0 Query language.
|
147
|
+
# # @return [RDF::Vocabulary::Term]
|
148
|
+
# attr_reader :SPARQL10Query
|
149
|
+
#
|
150
|
+
# # sd:SPARQL11Query is an sd:Language representing the SPARQL 1.1 Query language.
|
151
|
+
# # @return [RDF::Vocabulary::Term]
|
152
|
+
# attr_reader :SPARQL11Query
|
153
|
+
#
|
154
|
+
# # sd:SPARQLUpdate is an sd:Language representing the SPARQL 1.1 Update language.
|
155
|
+
# # @return [RDF::Vocabulary::Term]
|
156
|
+
# attr_reader :SPARQL11Update
|
157
|
+
#
|
158
|
+
# # sd:UnionDefaultGraph, when used as the object of the sd:feature property, indicates that the default graph of the dataset used during query and update evaluation (when an explicit dataset is not specified) is comprised of the union of all the named graphs in that dataset.
|
159
|
+
# # @return [RDF::Vocabulary::Term]
|
160
|
+
# attr_reader :UnionDefaultGraph
|
161
|
+
#
|
162
|
+
# end
|
163
|
+
SD = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/sparql-service-description#")) do
|
164
|
+
|
165
|
+
# Class definitions
|
166
|
+
term :Aggregate,
|
167
|
+
comment: %(An instance of sd:Aggregate represents an aggregate that may be used in a SPARQL aggregate query \(for instance in a HAVING clause or SELECT expression\) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE.).freeze,
|
168
|
+
label: "Aggregate".freeze,
|
169
|
+
subClassOf: "sd:Feature".freeze,
|
170
|
+
type: "rdfs:Class".freeze
|
171
|
+
term :Dataset,
|
172
|
+
comment: %(An instance of sd:Dataset represents a RDF Dataset comprised of a default graph and zero or more named graphs.).freeze,
|
173
|
+
label: "Dataset".freeze,
|
174
|
+
subClassOf: "sd:GraphCollection".freeze,
|
175
|
+
type: "rdfs:Class".freeze
|
176
|
+
term :EntailmentProfile,
|
177
|
+
comment: %(An instance of sd:EntailmentProfile represents a profile of an entailment regime. An entailment profile MAY impose restrictions on what constitutes valid RDF with respect to entailment.).freeze,
|
178
|
+
label: "Entailment Profile".freeze,
|
179
|
+
subClassOf: "sd:Feature".freeze,
|
180
|
+
type: "rdfs:Class".freeze
|
181
|
+
term :EntailmentRegime,
|
182
|
+
comment: %(An instance of sd:EntailmentRegime represents an entailment regime used in basic graph pattern matching \(as described by SPARQL 1.1 Query Language\).).freeze,
|
183
|
+
label: "Entailment Regime".freeze,
|
184
|
+
subClassOf: "sd:Feature".freeze,
|
185
|
+
type: "rdfs:Class".freeze
|
186
|
+
term :Feature,
|
187
|
+
comment: %(An instance of sd:Feature represents a feature of a SPARQL service. Specific types of features include functions, aggregates, languages, and entailment regimes and profiles. This document defines five instances of sd:Feature: sd:DereferencesURIs, sd:UnionDefaultGraph, sd:RequiresDataset, sd:EmptyGraphs, and sd:BasicFederatedQuery.).freeze,
|
188
|
+
label: "Feature".freeze,
|
189
|
+
type: "rdfs:Class".freeze
|
190
|
+
term :Function,
|
191
|
+
comment: %(An instance of sd:Function represents a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause.).freeze,
|
192
|
+
label: "Function".freeze,
|
193
|
+
subClassOf: "sd:Feature".freeze,
|
194
|
+
type: "rdfs:Class".freeze
|
195
|
+
term :Graph,
|
196
|
+
comment: %(An instance of sd:Graph represents the description of an RDF graph.).freeze,
|
197
|
+
label: "Graph".freeze,
|
198
|
+
type: "rdfs:Class".freeze
|
199
|
+
term :GraphCollection,
|
200
|
+
comment: %(An instance of sd:GraphCollection represents a collection of zero or more named graph descriptions. Each named graph description belonging to an sd:GraphCollection MUST be linked with the sd:namedGraph predicate.).freeze,
|
201
|
+
label: "Graph Collection".freeze,
|
202
|
+
type: "rdfs:Class".freeze
|
203
|
+
term :Language,
|
204
|
+
comment: %(An instance of sd:Language represents one of the SPARQL languages, including specific configurations providing particular features or extensions. This document defines three instances of sd:Language: sd:SPARQL10Query, sd:SPARQL11Query, and sd:SPARQL11Update.).freeze,
|
205
|
+
label: "Language".freeze,
|
206
|
+
subClassOf: "sd:Feature".freeze,
|
207
|
+
type: "rdfs:Class".freeze
|
208
|
+
term :NamedGraph,
|
209
|
+
comment: %(An instance of sd:NamedGraph represents a named graph having a name \(via sd:name\) and an optional graph description \(via sd:graph\).).freeze,
|
210
|
+
label: "Named Graph".freeze,
|
211
|
+
type: "rdfs:Class".freeze
|
212
|
+
term :Service,
|
213
|
+
comment: %(An instance of sd:Service represents a SPARQL service made available via the SPARQL Protocol.).freeze,
|
214
|
+
label: "Service".freeze,
|
215
|
+
type: "rdfs:Class".freeze
|
216
|
+
|
217
|
+
# Property definitions
|
218
|
+
property :availableGraphs,
|
219
|
+
comment: %(Relates an instance of sd:Service to a description of the graphs which are allowed in the construction of a dataset either via the SPARQL Protocol, with FROM/FROM NAMED clauses in a query, or with USING/USING NAMED in an update request, if the service limits the scope of dataset construction.).freeze,
|
220
|
+
domain: "sd:Service".freeze,
|
221
|
+
label: "available graph descriptions".freeze,
|
222
|
+
range: "sd:GraphCollection".freeze,
|
223
|
+
type: "rdf:Property".freeze
|
224
|
+
property :defaultDataset,
|
225
|
+
comment: %(Relates an instance of sd:Service to a description of the default dataset available when no explicit dataset is specified in the query, update request or via protocol parameters.).freeze,
|
226
|
+
domain: "sd:Service".freeze,
|
227
|
+
label: "default dataset description".freeze,
|
228
|
+
range: "sd:Dataset".freeze,
|
229
|
+
type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze]
|
230
|
+
property :defaultEntailmentRegime,
|
231
|
+
comment: %(Relates an instance of sd:Service with a resource representing an entailment regime used for basic graph pattern matching. This property is intended for use when a single entailment regime by default applies to all graphs in the default dataset of the service. In situations where a different entailment regime applies to a specific graph in the dataset, the sd:entailmentRegime property should be used to indicate this fact in the description of that graph.).freeze,
|
232
|
+
domain: "sd:Service".freeze,
|
233
|
+
label: "default entailment regime".freeze,
|
234
|
+
range: "sd:EntailmentRegime".freeze,
|
235
|
+
subPropertyOf: "sd:feature".freeze,
|
236
|
+
type: "rdf:Property".freeze
|
237
|
+
property :defaultGraph,
|
238
|
+
comment: %(Relates an instance of sd:Dataset to the description of its default graph.).freeze,
|
239
|
+
domain: "sd:Dataset".freeze,
|
240
|
+
label: "default graph".freeze,
|
241
|
+
range: "sd:Graph".freeze,
|
242
|
+
type: "rdf:Property".freeze
|
243
|
+
property :defaultSupportedEntailmentProfile,
|
244
|
+
comment: %(Relates an instance of sd:Service with a resource representing a supported profile of the default entailment regime \(as declared by sd:defaultEntailmentRegime\).).freeze,
|
245
|
+
domain: "sd:Service".freeze,
|
246
|
+
label: "default supported entailment profile".freeze,
|
247
|
+
range: "sd:EntailmentProfile".freeze,
|
248
|
+
subPropertyOf: "sd:feature".freeze,
|
249
|
+
type: "rdf:Property".freeze
|
250
|
+
property :endpoint,
|
251
|
+
comment: %(The SPARQL endpoint of an sd:Service that implements the SPARQL Protocol service. The object of the sd:endpoint property is an IRI.).freeze,
|
252
|
+
domain: "sd:Service".freeze,
|
253
|
+
label: "endpoint".freeze,
|
254
|
+
type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze]
|
255
|
+
property :entailmentRegime,
|
256
|
+
comment: %(Relates a named graph description with a resource representing an entailment regime used for basic graph pattern matching over that graph.).freeze,
|
257
|
+
domain: "sd:NamedGraph".freeze,
|
258
|
+
label: "entailment regime".freeze,
|
259
|
+
range: "sd:EntailmentRegime".freeze,
|
260
|
+
type: "rdf:Property".freeze
|
261
|
+
property :extensionAggregate,
|
262
|
+
comment: %(Relates an instance of sd:Service to an aggregate that may be used in a SPARQL aggregate query \(for instance in a HAVING clause or SELECT expression\) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE).freeze,
|
263
|
+
domain: "sd:Service".freeze,
|
264
|
+
label: "extension aggregate".freeze,
|
265
|
+
range: "sd:Aggregate".freeze,
|
266
|
+
subPropertyOf: "sd:feature".freeze,
|
267
|
+
type: "rdf:Property".freeze
|
268
|
+
property :extensionFunction,
|
269
|
+
comment: %(Relates an instance of sd:Service to a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause.).freeze,
|
270
|
+
domain: "sd:Service".freeze,
|
271
|
+
label: "extension function".freeze,
|
272
|
+
range: "sd:Function".freeze,
|
273
|
+
subPropertyOf: "sd:feature".freeze,
|
274
|
+
type: "rdf:Property".freeze
|
275
|
+
property :feature,
|
276
|
+
comment: %(Relates an instance of sd:Service with a resource representing a supported feature.).freeze,
|
277
|
+
domain: "sd:Service".freeze,
|
278
|
+
label: "feature".freeze,
|
279
|
+
range: "sd:Feature".freeze,
|
280
|
+
type: "rdf:Property".freeze
|
281
|
+
property :graph,
|
282
|
+
comment: %(Relates a named graph to its graph description.).freeze,
|
283
|
+
domain: "sd:NamedGraph".freeze,
|
284
|
+
label: "graph".freeze,
|
285
|
+
range: "sd:Graph".freeze,
|
286
|
+
type: "rdf:Property".freeze
|
287
|
+
property :inputFormat,
|
288
|
+
comment: %(Relates an instance of sd:Service to a format that is supported for parsing RDF input; for example, via a SPARQL 1.1 Update LOAD statement, or when URIs are dereferenced in FROM/FROM NAMED/USING/USING NAMED clauses.).freeze,
|
289
|
+
domain: "sd:Service".freeze,
|
290
|
+
label: "input format".freeze,
|
291
|
+
range: "http://www.w3.org/ns/formats/Format".freeze,
|
292
|
+
type: "rdf:Property".freeze
|
293
|
+
property :languageExtension,
|
294
|
+
comment: %(Relates an instance of sd:Service to a resource representing an implemented extension to the SPARQL Query or Update language.).freeze,
|
295
|
+
domain: "sd:Service".freeze,
|
296
|
+
label: "language extension".freeze,
|
297
|
+
range: "sd:Feature".freeze,
|
298
|
+
subPropertyOf: "sd:feature".freeze,
|
299
|
+
type: "rdf:Property".freeze
|
300
|
+
property :name,
|
301
|
+
comment: %(Relates a named graph to the name by which it may be referenced in a FROM/FROM NAMED clause. The object of the sd:name property is an IRI.).freeze,
|
302
|
+
domain: "sd:NamedGraph".freeze,
|
303
|
+
label: "name".freeze,
|
304
|
+
type: "rdf:Property".freeze
|
305
|
+
property :namedGraph,
|
306
|
+
comment: %(Relates an instance of sd:GraphCollection \(or its subclass sd:Dataset\) to the description of one of its named graphs. The description of such a named graph MUST include the sd:name property and MAY include the sd:graph property.).freeze,
|
307
|
+
domain: "sd:GraphCollection".freeze,
|
308
|
+
label: "named graph".freeze,
|
309
|
+
range: "sd:NamedGraph".freeze,
|
310
|
+
type: "rdf:Property".freeze
|
311
|
+
property :propertyFeature,
|
312
|
+
comment: %(Relates an instance of sd:Service to a resource representing an implemented feature that extends the SPARQL Query or Update language and that is accessed by using the named property.).freeze,
|
313
|
+
domain: "sd:Service".freeze,
|
314
|
+
label: "property feature".freeze,
|
315
|
+
range: "sd:Feature".freeze,
|
316
|
+
subPropertyOf: "sd:feature".freeze,
|
317
|
+
type: "rdf:Property".freeze
|
318
|
+
property :resultFormat,
|
319
|
+
comment: %(Relates an instance of sd:Service to a format that is supported for serializing query results.).freeze,
|
320
|
+
domain: "sd:Service".freeze,
|
321
|
+
label: "result format".freeze,
|
322
|
+
range: "http://www.w3.org/ns/formats/Format".freeze,
|
323
|
+
type: "rdf:Property".freeze
|
324
|
+
property :supportedEntailmentProfile,
|
325
|
+
comment: %(Relates a named graph description with a resource representing a supported profile of the entailment regime \(as declared by sd:entailmentRegime\) used for basic graph pattern matching over that graph.).freeze,
|
326
|
+
domain: "sd:NamedGraph".freeze,
|
327
|
+
label: "supported entailment profile".freeze,
|
328
|
+
range: "sd:EntailmentProfile".freeze,
|
329
|
+
type: "rdf:Property".freeze
|
330
|
+
property :supportedLanguage,
|
331
|
+
comment: %(Relates an instance of sd:Service to a SPARQL language \(e.g. Query and Update\) that it implements.).freeze,
|
332
|
+
domain: "sd:Service".freeze,
|
333
|
+
label: "supported language".freeze,
|
334
|
+
range: "sd:Language".freeze,
|
335
|
+
subPropertyOf: "sd:feature".freeze,
|
336
|
+
type: "rdf:Property".freeze
|
337
|
+
|
338
|
+
# Extra definitions
|
339
|
+
term :BasicFederatedQuery,
|
340
|
+
comment: %(sd:BasicFederatedQuery, when used as the object of the sd:feature property, indicates that the SPARQL service supports basic federated query using the SERVICE keyword as defined by SPARQL 1.1 Federation Extensions.).freeze,
|
341
|
+
label: "Basic Federated Query".freeze,
|
342
|
+
type: "sd:Feature".freeze
|
343
|
+
term :DereferencesURIs,
|
344
|
+
comment: %(sd:DereferencesURIs, when used as the object of the sd:feature property, indicates that a SPARQL service will dereference URIs used in FROM/FROM NAMED and USING/USING NAMED clauses and use the resulting RDF in the dataset during query evaluation.).freeze,
|
345
|
+
label: "Dereferences URIs".freeze,
|
346
|
+
type: "sd:Feature".freeze
|
347
|
+
term :EmptyGraphs,
|
348
|
+
comment: %(sd:EmptyGraphs, when used as the object of the sd:feature property, indicates that the underlying graph store supports empty graphs. A graph store that supports empty graphs MUST NOT remove graphs that are left empty after triples are removed from them.).freeze,
|
349
|
+
label: "Empty Graphs".freeze,
|
350
|
+
type: "sd:Feature".freeze
|
351
|
+
term :RequiresDataset,
|
352
|
+
comment: %(sd:RequiresDataset, when used as the object of the sd:feature property, indicates that the SPARQL service requires an explicit dataset declaration \(based on either FROM/FROM NAMED clauses in a query, USING/USING NAMED clauses in an update, or the appropriate SPARQL Protocol parameters\).).freeze,
|
353
|
+
label: "Requires Dataset".freeze,
|
354
|
+
type: "sd:Feature".freeze
|
355
|
+
term :SPARQL10Query,
|
356
|
+
comment: %(sd:SPARQL10Query is an sd:Language representing the SPARQL 1.0 Query language.).freeze,
|
357
|
+
label: "SPARQL 1.0 Query".freeze,
|
358
|
+
type: "sd:Language".freeze
|
359
|
+
term :SPARQL11Query,
|
360
|
+
comment: %(sd:SPARQL11Query is an sd:Language representing the SPARQL 1.1 Query language.).freeze,
|
361
|
+
label: "SPARQL 1.1 Query".freeze,
|
362
|
+
type: "sd:Language".freeze
|
363
|
+
term :SPARQL11Update,
|
364
|
+
comment: %(sd:SPARQLUpdate is an sd:Language representing the SPARQL 1.1 Update language.).freeze,
|
365
|
+
label: "SPARQL 1.1 Update".freeze,
|
366
|
+
type: "sd:Language".freeze
|
367
|
+
term :UnionDefaultGraph,
|
368
|
+
comment: %(sd:UnionDefaultGraph, when used as the object of the sd:feature property, indicates that the default graph of the dataset used during query and update evaluation \(when an explicit dataset is not specified\) is comprised of the union of all the named graphs in that dataset.).freeze,
|
369
|
+
label: "Union Default Graph".freeze,
|
370
|
+
type: "sd:Feature".freeze
|
371
|
+
end
|
372
|
+
end
|
data/lib/rdf/vocab/sh.rb
CHANGED
@@ -5,9 +5,744 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://www.w3.org/ns/shacl#>
|
8
|
+
# #
|
9
|
+
# # W3C Shapes Constraint Language (SHACL) Vocabulary
|
10
|
+
# #
|
11
|
+
# # This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language.
|
8
12
|
# class SH < RDF::StrictVocabulary
|
13
|
+
# # The base class of validation results, typically not instantiated directly.
|
14
|
+
# # @return [RDF::Vocabulary::Term]
|
15
|
+
# attr_reader :AbstractResult
|
16
|
+
#
|
17
|
+
# # The class of constraint components.
|
18
|
+
# # @return [RDF::Vocabulary::Term]
|
19
|
+
# attr_reader :ConstraintComponent
|
20
|
+
#
|
21
|
+
# # The class of SHACL functions.
|
22
|
+
# # @return [RDF::Vocabulary::Term]
|
23
|
+
# attr_reader :Function
|
24
|
+
#
|
25
|
+
# # The class of constraints backed by a JavaScript function.
|
26
|
+
# # @return [RDF::Vocabulary::Term]
|
27
|
+
# attr_reader :JSConstraint
|
28
|
+
#
|
29
|
+
# # Abstract base class of resources that declare an executable JavaScript.
|
30
|
+
# # @return [RDF::Vocabulary::Term]
|
31
|
+
# attr_reader :JSExecutable
|
32
|
+
#
|
33
|
+
# # The class of SHACL functions that execute a JavaScript function when called.
|
34
|
+
# # @return [RDF::Vocabulary::Term]
|
35
|
+
# attr_reader :JSFunction
|
36
|
+
#
|
37
|
+
# # Represents a JavaScript library, typically identified by one or more URLs of files to include.
|
38
|
+
# # @return [RDF::Vocabulary::Term]
|
39
|
+
# attr_reader :JSLibrary
|
40
|
+
#
|
41
|
+
# # The class of SHACL rules expressed using JavaScript.
|
42
|
+
# # @return [RDF::Vocabulary::Term]
|
43
|
+
# attr_reader :JSRule
|
44
|
+
#
|
45
|
+
# # The class of targets that are based on JavaScript functions.
|
46
|
+
# # @return [RDF::Vocabulary::Term]
|
47
|
+
# attr_reader :JSTarget
|
48
|
+
#
|
49
|
+
# # The (meta) class for parameterizable targets that are based on JavaScript functions.
|
50
|
+
# # @return [RDF::Vocabulary::Term]
|
51
|
+
# attr_reader :JSTargetType
|
52
|
+
#
|
53
|
+
# # A SHACL validator based on JavaScript. This can be used to declare SHACL constraint components that perform JavaScript-based validation when used.
|
54
|
+
# # @return [RDF::Vocabulary::Term]
|
55
|
+
# attr_reader :JSValidator
|
56
|
+
#
|
57
|
+
# # The class of all node kinds, including sh:BlankNode, sh:IRI, sh:Literal or the combinations of these: sh:BlankNodeOrIRI, sh:BlankNodeOrLiteral, sh:IRIOrLiteral.
|
58
|
+
# # @return [RDF::Vocabulary::Term]
|
59
|
+
# attr_reader :NodeKind
|
60
|
+
#
|
61
|
+
# # A node shape is a shape that specifies constraint that need to be met with respect to focus nodes.
|
62
|
+
# # @return [RDF::Vocabulary::Term]
|
63
|
+
# attr_reader :NodeShape
|
64
|
+
#
|
65
|
+
# # The class of parameter declarations, consisting of a path predicate and (possibly) information about allowed value type, cardinality and other characteristics.
|
66
|
+
# # @return [RDF::Vocabulary::Term]
|
67
|
+
# attr_reader :Parameter
|
68
|
+
#
|
69
|
+
# # Superclass of components that can take parameters, especially functions and constraint components.
|
70
|
+
# # @return [RDF::Vocabulary::Term]
|
71
|
+
# attr_reader :Parameterizable
|
72
|
+
#
|
73
|
+
# # The class of prefix declarations, consisting of pairs of a prefix with a namespace.
|
74
|
+
# # @return [RDF::Vocabulary::Term]
|
75
|
+
# attr_reader :PrefixDeclaration
|
76
|
+
#
|
77
|
+
# # Instances of this class represent groups of property shapes that belong together.
|
78
|
+
# # @return [RDF::Vocabulary::Term]
|
79
|
+
# attr_reader :PropertyGroup
|
80
|
+
#
|
81
|
+
# # A property shape is a shape that specifies constraints on the values of a focus node for a given property or path.
|
82
|
+
# # @return [RDF::Vocabulary::Term]
|
83
|
+
# attr_reader :PropertyShape
|
84
|
+
#
|
85
|
+
# # 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.
|
86
|
+
# # @return [RDF::Vocabulary::Term]
|
87
|
+
# attr_reader :ResultAnnotation
|
88
|
+
#
|
89
|
+
# # The class of SHACL rules. Never instantiated directly.
|
90
|
+
# # @return [RDF::Vocabulary::Term]
|
91
|
+
# attr_reader :Rule
|
92
|
+
#
|
93
|
+
# # The class of SPARQL executables that are based on an ASK query.
|
94
|
+
# # @return [RDF::Vocabulary::Term]
|
95
|
+
# attr_reader :SPARQLAskExecutable
|
96
|
+
#
|
97
|
+
# # 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.
|
98
|
+
# # @return [RDF::Vocabulary::Term]
|
99
|
+
# attr_reader :SPARQLAskValidator
|
100
|
+
#
|
101
|
+
# # The class of constraints based on SPARQL SELECT queries.
|
102
|
+
# # @return [RDF::Vocabulary::Term]
|
103
|
+
# attr_reader :SPARQLConstraint
|
104
|
+
#
|
105
|
+
# # The class of SPARQL executables that are based on a CONSTRUCT query.
|
106
|
+
# # @return [RDF::Vocabulary::Term]
|
107
|
+
# attr_reader :SPARQLConstructExecutable
|
108
|
+
#
|
109
|
+
# # The class of resources that encapsulate a SPARQL query.
|
110
|
+
# # @return [RDF::Vocabulary::Term]
|
111
|
+
# attr_reader :SPARQLExecutable
|
112
|
+
#
|
113
|
+
# # A function backed by a SPARQL query - either ASK or SELECT.
|
114
|
+
# # @return [RDF::Vocabulary::Term]
|
115
|
+
# attr_reader :SPARQLFunction
|
116
|
+
#
|
117
|
+
# # The class of SHACL rules based on SPARQL CONSTRUCT queries.
|
118
|
+
# # @return [RDF::Vocabulary::Term]
|
119
|
+
# attr_reader :SPARQLRule
|
120
|
+
#
|
121
|
+
# # The class of SPARQL executables based on a SELECT query.
|
122
|
+
# # @return [RDF::Vocabulary::Term]
|
123
|
+
# attr_reader :SPARQLSelectExecutable
|
124
|
+
#
|
125
|
+
# # 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.
|
126
|
+
# # @return [RDF::Vocabulary::Term]
|
127
|
+
# attr_reader :SPARQLSelectValidator
|
128
|
+
#
|
129
|
+
# # The class of targets that are based on SPARQL queries.
|
130
|
+
# # @return [RDF::Vocabulary::Term]
|
131
|
+
# attr_reader :SPARQLTarget
|
132
|
+
#
|
133
|
+
# # The (meta) class for parameterizable targets that are based on SPARQL queries.
|
134
|
+
# # @return [RDF::Vocabulary::Term]
|
135
|
+
# attr_reader :SPARQLTargetType
|
136
|
+
#
|
137
|
+
# # The class of SPARQL executables based on a SPARQL UPDATE.
|
138
|
+
# # @return [RDF::Vocabulary::Term]
|
139
|
+
# attr_reader :SPARQLUpdateExecutable
|
140
|
+
#
|
141
|
+
# # The class of validation result severity levels, including violation and warning levels.
|
142
|
+
# # @return [RDF::Vocabulary::Term]
|
143
|
+
# attr_reader :Severity
|
144
|
+
#
|
145
|
+
# # A shape is a collection of constraints that may be targeted for certain nodes.
|
146
|
+
# # @return [RDF::Vocabulary::Term]
|
147
|
+
# attr_reader :Shape
|
148
|
+
#
|
149
|
+
# # The base class of targets such as those based on SPARQL queries.
|
150
|
+
# # @return [RDF::Vocabulary::Term]
|
151
|
+
# attr_reader :Target
|
152
|
+
#
|
153
|
+
# # The (meta) class for parameterizable targets. Instances of this are instantiated as values of the sh:target property.
|
154
|
+
# # @return [RDF::Vocabulary::Term]
|
155
|
+
# attr_reader :TargetType
|
156
|
+
#
|
157
|
+
# # @return [RDF::Vocabulary::Term]
|
158
|
+
# attr_reader :TripleRule
|
159
|
+
#
|
160
|
+
# # The class of SHACL validation reports.
|
161
|
+
# # @return [RDF::Vocabulary::Term]
|
162
|
+
# attr_reader :ValidationReport
|
163
|
+
#
|
164
|
+
# # The class of validation results.
|
165
|
+
# # @return [RDF::Vocabulary::Term]
|
166
|
+
# attr_reader :ValidationResult
|
167
|
+
#
|
168
|
+
# # 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.
|
169
|
+
# # @return [RDF::Vocabulary::Term]
|
170
|
+
# attr_reader :Validator
|
171
|
+
#
|
172
|
+
# # The (single) value of this property must be a list of path elements, representing the elements of alternative paths.
|
173
|
+
# # @return [RDF::Vocabulary::Term]
|
174
|
+
# attr_reader :alternativePath
|
175
|
+
#
|
176
|
+
# # RDF list of shapes to validate the value nodes against.
|
177
|
+
# # @return [RDF::Vocabulary::Term]
|
178
|
+
# attr_reader :and
|
179
|
+
#
|
180
|
+
# # The annotation property that shall be set.
|
181
|
+
# # @return [RDF::Vocabulary::Term]
|
182
|
+
# attr_reader :annotationProperty
|
183
|
+
#
|
184
|
+
# # The (default) values of the annotation property.
|
185
|
+
# # @return [RDF::Vocabulary::Term]
|
186
|
+
# attr_reader :annotationValue
|
187
|
+
#
|
188
|
+
# # The name of the SPARQL variable from the SELECT clause that shall be used for the values.
|
189
|
+
# # @return [RDF::Vocabulary::Term]
|
190
|
+
# attr_reader :annotationVarName
|
191
|
+
#
|
192
|
+
# # The SPARQL ASK query to execute.
|
193
|
+
# # @return [RDF::Vocabulary::Term]
|
194
|
+
# attr_reader :ask
|
195
|
+
#
|
196
|
+
# # The type that all value nodes must have.
|
197
|
+
# # @return [RDF::Vocabulary::Term]
|
198
|
+
# attr_reader :class
|
199
|
+
#
|
200
|
+
# # If set to true then the shape is closed.
|
201
|
+
# # @return [RDF::Vocabulary::Term]
|
202
|
+
# attr_reader :closed
|
203
|
+
#
|
204
|
+
# # The shapes that the focus nodes need to conform to before a rule is executed on them.
|
205
|
+
# # @return [RDF::Vocabulary::Term]
|
206
|
+
# attr_reader :condition
|
207
|
+
#
|
208
|
+
# # True if the validation did not produce any validation results, and false otherwise.
|
209
|
+
# # @return [RDF::Vocabulary::Term]
|
210
|
+
# attr_reader :conforms
|
211
|
+
#
|
212
|
+
# # The SPARQL CONSTRUCT query to execute.
|
213
|
+
# # @return [RDF::Vocabulary::Term]
|
214
|
+
# attr_reader :construct
|
215
|
+
#
|
216
|
+
# # Specifies an RDF datatype that all value nodes must have.
|
217
|
+
# # @return [RDF::Vocabulary::Term]
|
218
|
+
# attr_reader :datatype
|
219
|
+
#
|
220
|
+
# # If set to true then all nodes conform to this.
|
221
|
+
# # @return [RDF::Vocabulary::Term]
|
222
|
+
# attr_reader :deactivated
|
223
|
+
#
|
224
|
+
# # Links a resource with its namespace prefix declarations.
|
225
|
+
# # @return [RDF::Vocabulary::Term]
|
226
|
+
# attr_reader :declare
|
227
|
+
#
|
228
|
+
# # A default value for a property, for example for user interface tools to pre-populate input fields.
|
229
|
+
# # @return [RDF::Vocabulary::Term]
|
230
|
+
# attr_reader :defaultValue
|
231
|
+
#
|
232
|
+
# # Human-readable descriptions for the property in the context of the surrounding shape.
|
233
|
+
# # @return [RDF::Vocabulary::Term]
|
234
|
+
# attr_reader :description
|
235
|
+
#
|
236
|
+
# # Links a result with other results that provide more details, for example to describe violations against nested shapes.
|
237
|
+
# # @return [RDF::Vocabulary::Term]
|
238
|
+
# attr_reader :detail
|
239
|
+
#
|
240
|
+
# # Specifies a property where the set of values must be disjoint with the value nodes.
|
241
|
+
# # @return [RDF::Vocabulary::Term]
|
242
|
+
# attr_reader :disjoint
|
243
|
+
#
|
244
|
+
# # An entailment regime that indicates what kind of inferencing is required by a shapes graph.
|
245
|
+
# # @return [RDF::Vocabulary::Term]
|
246
|
+
# attr_reader :entailment
|
247
|
+
#
|
248
|
+
# # Specifies a property that must have the same values as the value nodes.
|
249
|
+
# # @return [RDF::Vocabulary::Term]
|
250
|
+
# attr_reader :equals
|
251
|
+
#
|
252
|
+
# # The node expression that must return true for the value nodes.
|
253
|
+
# # @return [RDF::Vocabulary::Term]
|
254
|
+
# attr_reader :expression
|
255
|
+
#
|
256
|
+
# # The shape that all input nodes of the expression need to conform to.
|
257
|
+
# # @return [RDF::Vocabulary::Term]
|
258
|
+
# attr_reader :filterShape
|
259
|
+
#
|
260
|
+
# # An optional flag to be used with regular expression pattern matching.
|
261
|
+
# # @return [RDF::Vocabulary::Term]
|
262
|
+
# attr_reader :flags
|
263
|
+
#
|
264
|
+
# # The focus node that was validated when the result was produced.
|
265
|
+
# # @return [RDF::Vocabulary::Term]
|
266
|
+
# attr_reader :focusNode
|
267
|
+
#
|
268
|
+
# # Can be used to link to a property group to indicate that a property shape belongs to a group of related property shapes.
|
269
|
+
# # @return [RDF::Vocabulary::Term]
|
270
|
+
# attr_reader :group
|
271
|
+
#
|
272
|
+
# # Specifies a value that must be among the value nodes.
|
273
|
+
# # @return [RDF::Vocabulary::Term]
|
274
|
+
# attr_reader :hasValue
|
275
|
+
#
|
276
|
+
# # An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path.
|
277
|
+
# # @return [RDF::Vocabulary::Term]
|
278
|
+
# attr_reader :ignoredProperties
|
279
|
+
#
|
280
|
+
# # Specifies a list of allowed values so that each value node must be among the members of the given list.
|
281
|
+
# # @return [RDF::Vocabulary::Term]
|
282
|
+
# attr_reader :in
|
283
|
+
#
|
284
|
+
# # A list of node expressions that shall be intersected.
|
285
|
+
# # @return [RDF::Vocabulary::Term]
|
286
|
+
# attr_reader :intersection
|
287
|
+
#
|
288
|
+
# # The (single) value of this property represents an inverse path (object to subject).
|
289
|
+
# # @return [RDF::Vocabulary::Term]
|
290
|
+
# attr_reader :inversePath
|
291
|
+
#
|
292
|
+
# # Constraints expressed in JavaScript.
|
293
|
+
# # @return [RDF::Vocabulary::Term]
|
294
|
+
# attr_reader :js
|
295
|
+
#
|
296
|
+
# # The name of the JavaScript function to execute.
|
297
|
+
# # @return [RDF::Vocabulary::Term]
|
298
|
+
# attr_reader :jsFunctionName
|
299
|
+
#
|
300
|
+
# # Declares which JavaScript libraries are needed to execute this.
|
301
|
+
# # @return [RDF::Vocabulary::Term]
|
302
|
+
# attr_reader :jsLibrary
|
303
|
+
#
|
304
|
+
# # Declares the URLs of a JavaScript library. This should be the absolute URL of a JavaScript file. Implementations may redirect those to local files.
|
305
|
+
# # @return [RDF::Vocabulary::Term]
|
306
|
+
# attr_reader :jsLibraryURL
|
307
|
+
#
|
308
|
+
# # 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.
|
309
|
+
# # @return [RDF::Vocabulary::Term]
|
310
|
+
# attr_reader :labelTemplate
|
311
|
+
#
|
312
|
+
# # Specifies a list of language tags that all value nodes must have.
|
313
|
+
# # @return [RDF::Vocabulary::Term]
|
314
|
+
# attr_reader :languageIn
|
315
|
+
#
|
316
|
+
# # Specifies a property that must have smaller values than the value nodes.
|
317
|
+
# # @return [RDF::Vocabulary::Term]
|
318
|
+
# attr_reader :lessThan
|
319
|
+
#
|
320
|
+
# # Specifies a property that must have smaller or equal values than the value nodes.
|
321
|
+
# # @return [RDF::Vocabulary::Term]
|
322
|
+
# attr_reader :lessThanOrEquals
|
323
|
+
#
|
324
|
+
# # Specifies the maximum number of values in the set of value nodes.
|
325
|
+
# # @return [RDF::Vocabulary::Term]
|
326
|
+
# attr_reader :maxCount
|
327
|
+
#
|
328
|
+
# # Specifies the maximum exclusive value of each value node.
|
329
|
+
# # @return [RDF::Vocabulary::Term]
|
330
|
+
# attr_reader :maxExclusive
|
331
|
+
#
|
332
|
+
# # Specifies the maximum inclusive value of each value node.
|
333
|
+
# # @return [RDF::Vocabulary::Term]
|
334
|
+
# attr_reader :maxInclusive
|
335
|
+
#
|
336
|
+
# # Specifies the maximum string length of each value node.
|
337
|
+
# # @return [RDF::Vocabulary::Term]
|
338
|
+
# attr_reader :maxLength
|
339
|
+
#
|
340
|
+
# # A human-readable message (possibly with placeholders for variables) explaining the cause of the result.
|
341
|
+
# # @return [RDF::Vocabulary::Term]
|
342
|
+
# attr_reader :message
|
343
|
+
#
|
344
|
+
# # Specifies the minimum number of values in the set of value nodes.
|
345
|
+
# # @return [RDF::Vocabulary::Term]
|
346
|
+
# attr_reader :minCount
|
347
|
+
#
|
348
|
+
# # Specifies the minimum exclusive value of each value node.
|
349
|
+
# # @return [RDF::Vocabulary::Term]
|
350
|
+
# attr_reader :minExclusive
|
351
|
+
#
|
352
|
+
# # Specifies the minimum inclusive value of each value node.
|
353
|
+
# # @return [RDF::Vocabulary::Term]
|
354
|
+
# attr_reader :minInclusive
|
355
|
+
#
|
356
|
+
# # Specifies the minimum string length of each value node.
|
357
|
+
# # @return [RDF::Vocabulary::Term]
|
358
|
+
# attr_reader :minLength
|
359
|
+
#
|
360
|
+
# # Human-readable labels for the property in the context of the surrounding shape.
|
361
|
+
# # @return [RDF::Vocabulary::Term]
|
362
|
+
# attr_reader :name
|
363
|
+
#
|
364
|
+
# # The namespace associated with a prefix in a prefix declaration.
|
365
|
+
# # @return [RDF::Vocabulary::Term]
|
366
|
+
# attr_reader :namespace
|
367
|
+
#
|
368
|
+
# # Specifies the node shape that all value nodes must conform to.
|
369
|
+
# # @return [RDF::Vocabulary::Term]
|
370
|
+
# attr_reader :node
|
371
|
+
#
|
372
|
+
# # Specifies the node kind (e.g. IRI or literal) each value node.
|
373
|
+
# # @return [RDF::Vocabulary::Term]
|
374
|
+
# attr_reader :nodeKind
|
375
|
+
#
|
376
|
+
# # The validator(s) used to evaluate a constraint in the context of a node shape.
|
377
|
+
# # @return [RDF::Vocabulary::Term]
|
378
|
+
# attr_reader :nodeValidator
|
379
|
+
#
|
380
|
+
# # The node expression producing the input nodes of a filter shape expression.
|
381
|
+
# # @return [RDF::Vocabulary::Term]
|
382
|
+
# attr_reader :nodes
|
383
|
+
#
|
384
|
+
# # Specifies a shape that the value nodes must not conform to.
|
385
|
+
# # @return [RDF::Vocabulary::Term]
|
386
|
+
# attr_reader :not
|
387
|
+
#
|
388
|
+
# # An expression producing the nodes that shall be inferred as objects.
|
389
|
+
# # @return [RDF::Vocabulary::Term]
|
390
|
+
# attr_reader :object
|
391
|
+
#
|
392
|
+
# # The (single) value of this property represents a path that is matched one or more times.
|
393
|
+
# # @return [RDF::Vocabulary::Term]
|
394
|
+
# attr_reader :oneOrMorePath
|
395
|
+
#
|
396
|
+
# # Indicates whether a parameter is optional.
|
397
|
+
# # @return [RDF::Vocabulary::Term]
|
398
|
+
# attr_reader :optional
|
399
|
+
#
|
400
|
+
# # Specifies a list of shapes so that the value nodes must conform to at least one of the shapes.
|
401
|
+
# # @return [RDF::Vocabulary::Term]
|
402
|
+
# attr_reader :or
|
403
|
+
#
|
404
|
+
# # Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second.
|
405
|
+
# # @return [RDF::Vocabulary::Term]
|
406
|
+
# attr_reader :order
|
407
|
+
#
|
408
|
+
# # The parameters of a function or constraint component.
|
409
|
+
# # @return [RDF::Vocabulary::Term]
|
410
|
+
# attr_reader :parameter
|
411
|
+
#
|
412
|
+
# # Specifies the property path of a property shape.
|
413
|
+
# # @return [RDF::Vocabulary::Term]
|
414
|
+
# attr_reader :path
|
415
|
+
#
|
416
|
+
# # Specifies a regular expression pattern that the string representations of the value nodes must match.
|
417
|
+
# # @return [RDF::Vocabulary::Term]
|
418
|
+
# attr_reader :pattern
|
419
|
+
#
|
420
|
+
# # An expression producing the properties that shall be inferred as predicates.
|
421
|
+
# # @return [RDF::Vocabulary::Term]
|
422
|
+
# attr_reader :predicate
|
423
|
+
#
|
424
|
+
# # The prefix of a prefix declaration.
|
425
|
+
# # @return [RDF::Vocabulary::Term]
|
426
|
+
# attr_reader :prefix
|
427
|
+
#
|
428
|
+
# # The prefixes that shall be applied before parsing the associated SPARQL query.
|
429
|
+
# # @return [RDF::Vocabulary::Term]
|
430
|
+
# attr_reader :prefixes
|
431
|
+
#
|
432
|
+
# # Links a shape to its property shapes.
|
433
|
+
# # @return [RDF::Vocabulary::Term]
|
434
|
+
# attr_reader :property
|
435
|
+
#
|
436
|
+
# # The validator(s) used to evaluate a constraint in the context of a property shape.
|
437
|
+
# # @return [RDF::Vocabulary::Term]
|
438
|
+
# attr_reader :propertyValidator
|
439
|
+
#
|
440
|
+
# # The maximum number of value nodes that can conform to the shape.
|
441
|
+
# # @return [RDF::Vocabulary::Term]
|
442
|
+
# attr_reader :qualifiedMaxCount
|
443
|
+
#
|
444
|
+
# # The minimum number of value nodes that must conform to the shape.
|
445
|
+
# # @return [RDF::Vocabulary::Term]
|
446
|
+
# attr_reader :qualifiedMinCount
|
447
|
+
#
|
448
|
+
# # The shape that a specified number of values must conform to.
|
449
|
+
# # @return [RDF::Vocabulary::Term]
|
450
|
+
# attr_reader :qualifiedValueShape
|
451
|
+
#
|
452
|
+
# # Can be used to mark the qualified value shape to be disjoint with its sibling shapes.
|
453
|
+
# # @return [RDF::Vocabulary::Term]
|
454
|
+
# attr_reader :qualifiedValueShapesDisjoint
|
455
|
+
#
|
456
|
+
# # The validation results contained in a validation report.
|
457
|
+
# # @return [RDF::Vocabulary::Term]
|
458
|
+
# attr_reader :result
|
459
|
+
#
|
460
|
+
# # 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.
|
461
|
+
# # @return [RDF::Vocabulary::Term]
|
462
|
+
# attr_reader :resultAnnotation
|
463
|
+
#
|
464
|
+
# # Human-readable messages explaining the cause of the result.
|
465
|
+
# # @return [RDF::Vocabulary::Term]
|
466
|
+
# attr_reader :resultMessage
|
467
|
+
#
|
468
|
+
# # The path of a validation result, based on the path of the validated property shape.
|
469
|
+
# # @return [RDF::Vocabulary::Term]
|
470
|
+
# attr_reader :resultPath
|
471
|
+
#
|
472
|
+
# # The severity of the result, e.g. warning.
|
473
|
+
# # @return [RDF::Vocabulary::Term]
|
474
|
+
# attr_reader :resultSeverity
|
475
|
+
#
|
476
|
+
# # The expected type of values returned by the associated function.
|
477
|
+
# # @return [RDF::Vocabulary::Term]
|
478
|
+
# attr_reader :returnType
|
479
|
+
#
|
480
|
+
# # The rules linked to a shape.
|
481
|
+
# # @return [RDF::Vocabulary::Term]
|
482
|
+
# attr_reader :rule
|
483
|
+
#
|
484
|
+
# # The SPARQL SELECT query to execute.
|
485
|
+
# # @return [RDF::Vocabulary::Term]
|
486
|
+
# attr_reader :select
|
487
|
+
#
|
488
|
+
# # Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation.
|
489
|
+
# # @return [RDF::Vocabulary::Term]
|
490
|
+
# attr_reader :severity
|
491
|
+
#
|
492
|
+
# # Shapes graphs that should be used when validating this data graph.
|
493
|
+
# # @return [RDF::Vocabulary::Term]
|
494
|
+
# attr_reader :shapesGraph
|
495
|
+
#
|
496
|
+
# # If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process.
|
497
|
+
# # @return [RDF::Vocabulary::Term]
|
498
|
+
# attr_reader :shapesGraphWellFormed
|
499
|
+
#
|
500
|
+
# # The constraint that was validated when the result was produced.
|
501
|
+
# # @return [RDF::Vocabulary::Term]
|
502
|
+
# attr_reader :sourceConstraint
|
503
|
+
#
|
504
|
+
# # The constraint component that is the source of the result.
|
505
|
+
# # @return [RDF::Vocabulary::Term]
|
506
|
+
# attr_reader :sourceConstraintComponent
|
507
|
+
#
|
508
|
+
# # The shape that is was validated when the result was produced.
|
509
|
+
# # @return [RDF::Vocabulary::Term]
|
510
|
+
# attr_reader :sourceShape
|
511
|
+
#
|
512
|
+
# # Links a shape with SPARQL constraints.
|
513
|
+
# # @return [RDF::Vocabulary::Term]
|
514
|
+
# attr_reader :sparql
|
515
|
+
#
|
516
|
+
# # An expression producing the resources that shall be inferred as subjects.
|
517
|
+
# # @return [RDF::Vocabulary::Term]
|
518
|
+
# attr_reader :subject
|
519
|
+
#
|
520
|
+
# # Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements.
|
521
|
+
# # @return [RDF::Vocabulary::Term]
|
522
|
+
# attr_reader :suggestedShapesGraph
|
523
|
+
#
|
524
|
+
# # Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget.
|
525
|
+
# # @return [RDF::Vocabulary::Term]
|
526
|
+
# attr_reader :target
|
527
|
+
#
|
528
|
+
# # Links a shape to a class, indicating that all instances of the class must conform to the shape.
|
529
|
+
# # @return [RDF::Vocabulary::Term]
|
530
|
+
# attr_reader :targetClass
|
531
|
+
#
|
532
|
+
# # Links a shape to individual nodes, indicating that these nodes must conform to the shape.
|
533
|
+
# # @return [RDF::Vocabulary::Term]
|
534
|
+
# attr_reader :targetNode
|
535
|
+
#
|
536
|
+
# # 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.
|
537
|
+
# # @return [RDF::Vocabulary::Term]
|
538
|
+
# attr_reader :targetObjectsOf
|
539
|
+
#
|
540
|
+
# # 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.
|
541
|
+
# # @return [RDF::Vocabulary::Term]
|
542
|
+
# attr_reader :targetSubjectsOf
|
543
|
+
#
|
544
|
+
# # A list of node expressions that shall be used together.
|
545
|
+
# # @return [RDF::Vocabulary::Term]
|
546
|
+
# attr_reader :union
|
547
|
+
#
|
548
|
+
# # Specifies whether all node values must have a unique (or no) language tag.
|
549
|
+
# # @return [RDF::Vocabulary::Term]
|
550
|
+
# attr_reader :uniqueLang
|
551
|
+
#
|
552
|
+
# # The SPARQL UPDATE to execute.
|
553
|
+
# # @return [RDF::Vocabulary::Term]
|
554
|
+
# attr_reader :update
|
555
|
+
#
|
556
|
+
# # The validator(s) used to evaluate constraints of either node or property shapes.
|
557
|
+
# # @return [RDF::Vocabulary::Term]
|
558
|
+
# attr_reader :validator
|
559
|
+
#
|
560
|
+
# # An RDF node that has caused the result.
|
561
|
+
# # @return [RDF::Vocabulary::Term]
|
562
|
+
# attr_reader :value
|
563
|
+
#
|
564
|
+
# # Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes.
|
565
|
+
# # @return [RDF::Vocabulary::Term]
|
566
|
+
# attr_reader :xone
|
567
|
+
#
|
568
|
+
# # The (single) value of this property represents a path that is matched zero or more times.
|
569
|
+
# # @return [RDF::Vocabulary::Term]
|
570
|
+
# attr_reader :zeroOrMorePath
|
571
|
+
#
|
572
|
+
# # The (single) value of this property represents a path that is matched zero or one times.
|
573
|
+
# # @return [RDF::Vocabulary::Term]
|
574
|
+
# attr_reader :zeroOrOnePath
|
575
|
+
#
|
576
|
+
# # A constraint component that can be used to test whether a value node conforms to all members of a provided list of shapes.
|
577
|
+
# # @return [RDF::Vocabulary::Term]
|
578
|
+
# attr_reader :AndConstraintComponent
|
579
|
+
#
|
580
|
+
# # The node kind of all blank nodes.
|
581
|
+
# # @return [RDF::Vocabulary::Term]
|
582
|
+
# attr_reader :BlankNode
|
583
|
+
#
|
584
|
+
# # The node kind of all blank nodes or IRIs.
|
585
|
+
# # @return [RDF::Vocabulary::Term]
|
586
|
+
# attr_reader :BlankNodeOrIRI
|
587
|
+
#
|
588
|
+
# # The node kind of all blank nodes or literals.
|
589
|
+
# # @return [RDF::Vocabulary::Term]
|
590
|
+
# attr_reader :BlankNodeOrLiteral
|
591
|
+
#
|
592
|
+
# # A constraint component that can be used to verify that each value node is an instance of a given type.
|
593
|
+
# # @return [RDF::Vocabulary::Term]
|
594
|
+
# attr_reader :ClassConstraintComponent
|
595
|
+
#
|
596
|
+
# # 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.
|
597
|
+
# # @return [RDF::Vocabulary::Term]
|
598
|
+
# attr_reader :ClosedConstraintComponent
|
599
|
+
#
|
600
|
+
# # A constraint component that can be used to restrict the datatype of all value nodes.
|
601
|
+
# # @return [RDF::Vocabulary::Term]
|
602
|
+
# attr_reader :DatatypeConstraintComponent
|
603
|
+
#
|
604
|
+
# # 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.
|
605
|
+
# # @return [RDF::Vocabulary::Term]
|
606
|
+
# attr_reader :DisjointConstraintComponent
|
607
|
+
#
|
608
|
+
# # 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.
|
609
|
+
# # @return [RDF::Vocabulary::Term]
|
610
|
+
# attr_reader :EqualsConstraintComponent
|
611
|
+
#
|
612
|
+
# # A constraint component that can be used to verify that a given node expression produces true for all value nodes.
|
613
|
+
# # @return [RDF::Vocabulary::Term]
|
614
|
+
# attr_reader :ExpressionConstraintComponent
|
615
|
+
#
|
616
|
+
# # A constraint component that can be used to verify that one of the value nodes is a given RDF node.
|
617
|
+
# # @return [RDF::Vocabulary::Term]
|
618
|
+
# attr_reader :HasValueConstraintComponent
|
619
|
+
#
|
620
|
+
# # The node kind of all IRIs.
|
621
|
+
# # @return [RDF::Vocabulary::Term]
|
622
|
+
# attr_reader :IRI
|
623
|
+
#
|
624
|
+
# # The node kind of all IRIs or literals.
|
625
|
+
# # @return [RDF::Vocabulary::Term]
|
626
|
+
# attr_reader :IRIOrLiteral
|
627
|
+
#
|
628
|
+
# # A constraint component that can be used to exclusively enumerate the permitted value nodes.
|
629
|
+
# # @return [RDF::Vocabulary::Term]
|
630
|
+
# attr_reader :InConstraintComponent
|
631
|
+
#
|
632
|
+
# # The severity for an informational validation result.
|
633
|
+
# # @return [RDF::Vocabulary::Term]
|
634
|
+
# attr_reader :Info
|
635
|
+
#
|
636
|
+
# # A constraint component with the parameter sh:js linking to a sh:JSConstraint containing a sh:script.
|
637
|
+
# # @return [RDF::Vocabulary::Term]
|
638
|
+
# attr_reader :JSConstraintComponent
|
639
|
+
#
|
640
|
+
# # A constraint component that can be used to enumerate language tags that all value nodes must have.
|
641
|
+
# # @return [RDF::Vocabulary::Term]
|
642
|
+
# attr_reader :LanguageInConstraintComponent
|
643
|
+
#
|
644
|
+
# # 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.
|
645
|
+
# # @return [RDF::Vocabulary::Term]
|
646
|
+
# attr_reader :LessThanConstraintComponent
|
647
|
+
#
|
648
|
+
# # 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.
|
649
|
+
# # @return [RDF::Vocabulary::Term]
|
650
|
+
# attr_reader :LessThanOrEqualsConstraintComponent
|
651
|
+
#
|
652
|
+
# # The node kind of all literals.
|
653
|
+
# # @return [RDF::Vocabulary::Term]
|
654
|
+
# attr_reader :Literal
|
655
|
+
#
|
656
|
+
# # A constraint component that can be used to restrict the maximum number of value nodes.
|
657
|
+
# # @return [RDF::Vocabulary::Term]
|
658
|
+
# attr_reader :MaxCountConstraintComponent
|
659
|
+
#
|
660
|
+
# # A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value.
|
661
|
+
# # @return [RDF::Vocabulary::Term]
|
662
|
+
# attr_reader :MaxExclusiveConstraintComponent
|
663
|
+
#
|
664
|
+
# # A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value.
|
665
|
+
# # @return [RDF::Vocabulary::Term]
|
666
|
+
# attr_reader :MaxInclusiveConstraintComponent
|
667
|
+
#
|
668
|
+
# # A constraint component that can be used to restrict the maximum string length of value nodes.
|
669
|
+
# # @return [RDF::Vocabulary::Term]
|
670
|
+
# attr_reader :MaxLengthConstraintComponent
|
671
|
+
#
|
672
|
+
# # A constraint component that can be used to restrict the minimum number of value nodes.
|
673
|
+
# # @return [RDF::Vocabulary::Term]
|
674
|
+
# attr_reader :MinCountConstraintComponent
|
675
|
+
#
|
676
|
+
# # A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value.
|
677
|
+
# # @return [RDF::Vocabulary::Term]
|
678
|
+
# attr_reader :MinExclusiveConstraintComponent
|
679
|
+
#
|
680
|
+
# # A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value.
|
681
|
+
# # @return [RDF::Vocabulary::Term]
|
682
|
+
# attr_reader :MinInclusiveConstraintComponent
|
683
|
+
#
|
684
|
+
# # A constraint component that can be used to restrict the minimum string length of value nodes.
|
685
|
+
# # @return [RDF::Vocabulary::Term]
|
686
|
+
# attr_reader :MinLengthConstraintComponent
|
687
|
+
#
|
688
|
+
# # A constraint component that can be used to verify that all value nodes conform to the given node shape.
|
689
|
+
# # @return [RDF::Vocabulary::Term]
|
690
|
+
# attr_reader :NodeConstraintComponent
|
691
|
+
#
|
692
|
+
# # A constraint component that can be used to restrict the RDF node kind of each value node.
|
693
|
+
# # @return [RDF::Vocabulary::Term]
|
694
|
+
# attr_reader :NodeKindConstraintComponent
|
695
|
+
#
|
696
|
+
# # A constraint component that can be used to verify that value nodes do not conform to a given shape.
|
697
|
+
# # @return [RDF::Vocabulary::Term]
|
698
|
+
# attr_reader :NotConstraintComponent
|
699
|
+
#
|
700
|
+
# # 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.
|
701
|
+
# # @return [RDF::Vocabulary::Term]
|
702
|
+
# attr_reader :OrConstraintComponent
|
703
|
+
#
|
704
|
+
# # A constraint component that can be used to verify that every value node matches a given regular expression.
|
705
|
+
# # @return [RDF::Vocabulary::Term]
|
706
|
+
# attr_reader :PatternConstraintComponent
|
707
|
+
#
|
708
|
+
# # A constraint component that can be used to verify that all value nodes conform to the given property shape.
|
709
|
+
# # @return [RDF::Vocabulary::Term]
|
710
|
+
# attr_reader :PropertyConstraintComponent
|
711
|
+
#
|
712
|
+
# # A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape.
|
713
|
+
# # @return [RDF::Vocabulary::Term]
|
714
|
+
# attr_reader :QualifiedMaxCountConstraintComponent
|
715
|
+
#
|
716
|
+
# # A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape.
|
717
|
+
# # @return [RDF::Vocabulary::Term]
|
718
|
+
# attr_reader :QualifiedMinCountConstraintComponent
|
719
|
+
#
|
720
|
+
# # A constraint component that can be used to define constraints based on SPARQL queries.
|
721
|
+
# # @return [RDF::Vocabulary::Term]
|
722
|
+
# attr_reader :SPARQLConstraintComponent
|
723
|
+
#
|
724
|
+
# # A constraint component that can be used to specify that no pair of value nodes may use the same language tag.
|
725
|
+
# # @return [RDF::Vocabulary::Term]
|
726
|
+
# attr_reader :UniqueLangConstraintComponent
|
727
|
+
#
|
728
|
+
# # The severity for a violation validation result.
|
729
|
+
# # @return [RDF::Vocabulary::Term]
|
730
|
+
# attr_reader :Violation
|
731
|
+
#
|
732
|
+
# # The severity for a warning validation result.
|
733
|
+
# # @return [RDF::Vocabulary::Term]
|
734
|
+
# attr_reader :Warning
|
735
|
+
#
|
736
|
+
# # A constraint component that can be used to restrict the value nodes so that they conform to exactly one out of several provided shapes.
|
737
|
+
# # @return [RDF::Vocabulary::Term]
|
738
|
+
# attr_reader :XoneConstraintComponent
|
739
|
+
#
|
740
|
+
# # A node expression that represents the current focus node.
|
741
|
+
# # @return [RDF::Vocabulary::Term]
|
742
|
+
# attr_reader :this
|
743
|
+
#
|
9
744
|
# end
|
10
|
-
|
745
|
+
SH = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/shacl#")) do
|
11
746
|
|
12
747
|
# Ontology definition
|
13
748
|
ontology :"http://www.w3.org/ns/shacl#",
|