lib/rdf/vocab/sh.rb in rdf-vocab-3.1.7 vs lib/rdf/vocab/sh.rb in rdf-vocab-3.1.8
- old
+ new
@@ -744,937 +744,937 @@
# end
SH = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/shacl#")) do
# Ontology definition
ontology :"http://www.w3.org/ns/shacl#",
- comment: %(This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language.).freeze,
+ comment: "This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language.".freeze,
label: "W3C Shapes Constraint Language (SHACL) Vocabulary".freeze,
"sh:declare": term(
"sh:namespace": "http://www.w3.org/ns/shacl#".freeze,
"sh:prefix": "sh".freeze
),
"sh:suggestedShapesGraph": "http://www.w3.org/ns/shacl-shacl#".freeze,
type: "owl:Ontology".freeze
# Class definitions
term :AbstractResult,
- comment: %(The base class of validation results, typically not instantiated directly.).freeze,
+ comment: "The base class of validation results, typically not instantiated directly.".freeze,
isDefinedBy: "sh:".freeze,
label: "Abstract result".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :ConstraintComponent,
- comment: %(The class of constraint components.).freeze,
+ comment: "The class of constraint components.".freeze,
isDefinedBy: "sh:".freeze,
label: "Constraint component".freeze,
subClassOf: "sh:Parameterizable".freeze,
type: "rdfs:Class".freeze
term :Function,
- comment: %(The class of SHACL functions.).freeze,
+ comment: "The class of SHACL functions.".freeze,
isDefinedBy: "sh:".freeze,
label: "Function".freeze,
subClassOf: "sh:Parameterizable".freeze,
type: "rdfs:Class".freeze
term :JSConstraint,
- comment: %(The class of constraints backed by a JavaScript function.).freeze,
+ comment: "The class of constraints backed by a JavaScript function.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript-based constraint".freeze,
subClassOf: "sh:JSExecutable".freeze,
type: "rdfs:Class".freeze
term :JSExecutable,
- comment: %(Abstract base class of resources that declare an executable JavaScript.).freeze,
+ comment: "Abstract base class of resources that declare an executable JavaScript.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript executable".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :JSFunction,
- comment: %(The class of SHACL functions that execute a JavaScript function when called.).freeze,
+ comment: "The class of SHACL functions that execute a JavaScript function when called.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript function".freeze,
subClassOf: ["sh:Function".freeze, "sh:JSExecutable".freeze],
type: "rdfs:Class".freeze
term :JSLibrary,
- comment: %(Represents a JavaScript library, typically identified by one or more URLs of files to include.).freeze,
+ comment: "Represents a JavaScript library, typically identified by one or more URLs of files to include.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript library".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :JSRule,
- comment: %(The class of SHACL rules expressed using JavaScript.).freeze,
+ comment: "The class of SHACL rules expressed using JavaScript.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript rule".freeze,
subClassOf: ["sh:JSExecutable".freeze, "sh:Rule".freeze],
type: "rdfs:Class".freeze
term :JSTarget,
- comment: %(The class of targets that are based on JavaScript functions.).freeze,
+ comment: "The class of targets that are based on JavaScript functions.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript target".freeze,
subClassOf: ["sh:JSExecutable".freeze, "sh:Target".freeze],
type: "rdfs:Class".freeze
term :JSTargetType,
- comment: %(The \(meta\) class for parameterizable targets that are based on JavaScript functions.).freeze,
+ comment: "The (meta) class for parameterizable targets that are based on JavaScript functions.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript target type".freeze,
subClassOf: ["sh:JSExecutable".freeze, "sh:TargetType".freeze],
type: "rdfs:Class".freeze
term :JSValidator,
- comment: %(A SHACL validator based on JavaScript. This can be used to declare SHACL constraint components that perform JavaScript-based validation when used.).freeze,
+ comment: "A SHACL validator based on JavaScript. This can be used to declare SHACL constraint components that perform JavaScript-based validation when used.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript validator".freeze,
subClassOf: ["sh:JSExecutable".freeze, "sh:Validator".freeze],
type: "rdfs:Class".freeze
term :NodeKind,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "Node kind".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :NodeShape,
- comment: %(A node shape is a shape that specifies constraint that need to be met with respect to focus nodes.).freeze,
+ comment: "A node shape is a shape that specifies constraint that need to be met with respect to focus nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "Node shape".freeze,
subClassOf: "sh:Shape".freeze,
type: "rdfs:Class".freeze
term :Parameter,
- comment: %(The class of parameter declarations, consisting of a path predicate and \(possibly\) information about allowed value type, cardinality and other characteristics.).freeze,
+ comment: "The class of parameter declarations, consisting of a path predicate and (possibly) information about allowed value type, cardinality and other characteristics.".freeze,
isDefinedBy: "sh:".freeze,
label: "Parameter".freeze,
subClassOf: "sh:PropertyShape".freeze,
type: "rdfs:Class".freeze
term :Parameterizable,
- comment: %(Superclass of components that can take parameters, especially functions and constraint components.).freeze,
+ comment: "Superclass of components that can take parameters, especially functions and constraint components.".freeze,
isDefinedBy: "sh:".freeze,
label: "Parameterizable".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :PrefixDeclaration,
- comment: %(The class of prefix declarations, consisting of pairs of a prefix with a namespace.).freeze,
+ comment: "The class of prefix declarations, consisting of pairs of a prefix with a namespace.".freeze,
isDefinedBy: "sh:".freeze,
label: "Prefix declaration".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :PropertyGroup,
- comment: %(Instances of this class represent groups of property shapes that belong together.).freeze,
+ comment: "Instances of this class represent groups of property shapes that belong together.".freeze,
isDefinedBy: "sh:".freeze,
label: "Property group".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :PropertyShape,
- comment: %(A property shape is a shape that specifies constraints on the values of a focus node for a given property or path.).freeze,
+ comment: "A property shape is a shape that specifies constraints on the values of a focus node for a given property or path.".freeze,
isDefinedBy: "sh:".freeze,
label: "Property shape".freeze,
subClassOf: "sh:Shape".freeze,
type: "rdfs:Class".freeze
term :ResultAnnotation,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "Result annotation".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :Rule,
- comment: %(The class of SHACL rules. Never instantiated directly.).freeze,
+ comment: "The class of SHACL rules. Never instantiated directly.".freeze,
isDefinedBy: "sh:".freeze,
label: "Rule".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :SPARQLAskExecutable,
- comment: %(The class of SPARQL executables that are based on an ASK query.).freeze,
+ comment: "The class of SPARQL executables that are based on an ASK query.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL ASK executable".freeze,
subClassOf: "sh:SPARQLExecutable".freeze,
type: "rdfs:Class".freeze
term :SPARQLAskValidator,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL ASK validator".freeze,
subClassOf: ["sh:SPARQLAskExecutable".freeze, "sh:Validator".freeze],
type: "rdfs:Class".freeze
term :SPARQLConstraint,
- comment: %(The class of constraints based on SPARQL SELECT queries.).freeze,
+ comment: "The class of constraints based on SPARQL SELECT queries.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL constraint".freeze,
subClassOf: "sh:SPARQLSelectExecutable".freeze,
type: "rdfs:Class".freeze
term :SPARQLConstructExecutable,
- comment: %(The class of SPARQL executables that are based on a CONSTRUCT query.).freeze,
+ comment: "The class of SPARQL executables that are based on a CONSTRUCT query.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL CONSTRUCT executable".freeze,
subClassOf: "sh:SPARQLExecutable".freeze,
type: "rdfs:Class".freeze
term :SPARQLExecutable,
- comment: %(The class of resources that encapsulate a SPARQL query.).freeze,
+ comment: "The class of resources that encapsulate a SPARQL query.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL executable".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :SPARQLFunction,
- comment: %(A function backed by a SPARQL query - either ASK or SELECT.).freeze,
+ comment: "A function backed by a SPARQL query - either ASK or SELECT.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL function".freeze,
subClassOf: ["sh:Function".freeze, "sh:SPARQLAskExecutable".freeze, "sh:SPARQLSelectExecutable".freeze],
type: "rdfs:Class".freeze
term :SPARQLRule,
- comment: %(The class of SHACL rules based on SPARQL CONSTRUCT queries.).freeze,
+ comment: "The class of SHACL rules based on SPARQL CONSTRUCT queries.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL CONSTRUCT rule".freeze,
subClassOf: ["sh:Rule".freeze, "sh:SPARQLConstructExecutable".freeze],
type: "rdfs:Class".freeze
term :SPARQLSelectExecutable,
- comment: %(The class of SPARQL executables based on a SELECT query.).freeze,
+ comment: "The class of SPARQL executables based on a SELECT query.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL SELECT executable".freeze,
subClassOf: "sh:SPARQLExecutable".freeze,
type: "rdfs:Class".freeze
term :SPARQLSelectValidator,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL SELECT validator".freeze,
subClassOf: ["sh:SPARQLSelectExecutable".freeze, "sh:Validator".freeze],
type: "rdfs:Class".freeze
term :SPARQLTarget,
- comment: %(The class of targets that are based on SPARQL queries.).freeze,
+ comment: "The class of targets that are based on SPARQL queries.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL target".freeze,
subClassOf: ["sh:SPARQLAskExecutable".freeze, "sh:SPARQLSelectExecutable".freeze, "sh:Target".freeze],
type: "rdfs:Class".freeze
term :SPARQLTargetType,
- comment: %(The \(meta\) class for parameterizable targets that are based on SPARQL queries.).freeze,
+ comment: "The (meta) class for parameterizable targets that are based on SPARQL queries.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL target type".freeze,
subClassOf: ["sh:SPARQLAskExecutable".freeze, "sh:SPARQLSelectExecutable".freeze, "sh:TargetType".freeze],
type: "rdfs:Class".freeze
term :SPARQLUpdateExecutable,
- comment: %(The class of SPARQL executables based on a SPARQL UPDATE.).freeze,
+ comment: "The class of SPARQL executables based on a SPARQL UPDATE.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL UPDATE executable".freeze,
subClassOf: "sh:SPARQLExecutable".freeze,
type: "rdfs:Class".freeze
term :Severity,
- comment: %(The class of validation result severity levels, including violation and warning levels.).freeze,
+ comment: "The class of validation result severity levels, including violation and warning levels.".freeze,
isDefinedBy: "sh:".freeze,
label: "Severity".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :Shape,
- comment: %(A shape is a collection of constraints that may be targeted for certain nodes.).freeze,
+ comment: "A shape is a collection of constraints that may be targeted for certain nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "Shape".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :Target,
- comment: %(The base class of targets such as those based on SPARQL queries.).freeze,
+ comment: "The base class of targets such as those based on SPARQL queries.".freeze,
isDefinedBy: "sh:".freeze,
label: "Target".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :TargetType,
- comment: %(The \(meta\) class for parameterizable targets. Instances of this are instantiated as values of the sh:target property.).freeze,
+ comment: "The (meta) class for parameterizable targets.\tInstances of this are instantiated as values of the sh:target property.".freeze,
isDefinedBy: "sh:".freeze,
label: "Target type".freeze,
subClassOf: ["rdfs:Class".freeze, "sh:Parameterizable".freeze],
type: "rdfs:Class".freeze
term :TripleRule,
isDefinedBy: "sh:".freeze,
label: "A rule based on triple (subject, predicate, object) pattern.".freeze,
subClassOf: "sh:Rule".freeze,
type: "rdfs:Class".freeze
term :ValidationReport,
- comment: %(The class of SHACL validation reports.).freeze,
+ comment: "The class of SHACL validation reports.".freeze,
isDefinedBy: "sh:".freeze,
label: "Validation report".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
term :ValidationResult,
- comment: %(The class of validation results.).freeze,
+ comment: "The class of validation results.".freeze,
isDefinedBy: "sh:".freeze,
label: "Validation result".freeze,
subClassOf: "sh:AbstractResult".freeze,
type: "rdfs:Class".freeze
term :Validator,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "Validator".freeze,
subClassOf: "rdfs:Resource".freeze,
type: "rdfs:Class".freeze
# Property definitions
property :alternativePath,
- comment: %(The \(single\) value of this property must be a list of path elements, representing the elements of alternative paths.).freeze,
+ comment: "The (single) value of this property must be a list of path elements, representing the elements of alternative paths.".freeze,
isDefinedBy: "sh:".freeze,
label: "alternative path".freeze,
range: "rdf:List".freeze,
type: "rdf:Property".freeze
property :and,
- comment: %(RDF list of shapes to validate the value nodes against.).freeze,
+ comment: "RDF list of shapes to validate the value nodes against.".freeze,
isDefinedBy: "sh:".freeze,
label: "and".freeze,
range: "rdf:List".freeze,
type: "rdf:Property".freeze
property :annotationProperty,
- comment: %(The annotation property that shall be set.).freeze,
+ comment: "The annotation property that shall be set.".freeze,
domain: "sh:ResultAnnotation".freeze,
isDefinedBy: "sh:".freeze,
label: "annotation property".freeze,
range: "rdf:Property".freeze,
type: "rdf:Property".freeze
property :annotationValue,
- comment: %(The \(default\) values of the annotation property.).freeze,
+ comment: "The (default) values of the annotation property.".freeze,
domain: "sh:ResultAnnotation".freeze,
isDefinedBy: "sh:".freeze,
label: "annotation value".freeze,
type: "rdf:Property".freeze
property :annotationVarName,
- comment: %(The name of the SPARQL variable from the SELECT clause that shall be used for the values.).freeze,
+ comment: "The name of the SPARQL variable from the SELECT clause that shall be used for the values.".freeze,
domain: "sh:ResultAnnotation".freeze,
isDefinedBy: "sh:".freeze,
label: "annotation variable name".freeze,
range: "xsd:string".freeze,
type: "rdf:Property".freeze
property :ask,
- comment: %(The SPARQL ASK query to execute.).freeze,
+ comment: "The SPARQL ASK query to execute.".freeze,
domain: "sh:SPARQLAskExecutable".freeze,
isDefinedBy: "sh:".freeze,
label: "ask".freeze,
range: "xsd:string".freeze,
type: "rdf:Property".freeze
property :class,
- comment: %(The type that all value nodes must have.).freeze,
+ comment: "The type that all value nodes must have.".freeze,
isDefinedBy: "sh:".freeze,
label: "class".freeze,
range: "rdfs:Class".freeze,
type: "rdf:Property".freeze
property :closed,
- comment: %(If set to true then the shape is closed.).freeze,
+ comment: "If set to true then the shape is closed.".freeze,
isDefinedBy: "sh:".freeze,
label: "closed".freeze,
range: "xsd:boolean".freeze,
type: "rdf:Property".freeze
property :condition,
- comment: %(The shapes that the focus nodes need to conform to before a rule is executed on them.).freeze,
+ comment: "The shapes that the focus nodes need to conform to before a rule is executed on them.".freeze,
domain: "sh:Rule".freeze,
isDefinedBy: "sh:".freeze,
label: "condition".freeze,
range: "sh:Shape".freeze,
type: "rdf:Property".freeze
property :conforms,
- comment: %(True if the validation did not produce any validation results, and false otherwise.).freeze,
+ comment: "True if the validation did not produce any validation results, and false otherwise.".freeze,
domain: "sh:ValidationReport".freeze,
isDefinedBy: "sh:".freeze,
label: "conforms".freeze,
range: "xsd:boolean".freeze,
type: "rdf:Property".freeze
property :construct,
- comment: %(The SPARQL CONSTRUCT query to execute.).freeze,
+ comment: "The SPARQL CONSTRUCT query to execute.".freeze,
domain: "sh:SPARQLConstructExecutable".freeze,
isDefinedBy: "sh:".freeze,
label: "construct".freeze,
range: "xsd:string".freeze,
type: "rdf:Property".freeze
property :datatype,
- comment: %(Specifies an RDF datatype that all value nodes must have.).freeze,
+ comment: "Specifies an RDF datatype that all value nodes must have.".freeze,
isDefinedBy: "sh:".freeze,
label: "datatype".freeze,
range: "rdfs:Datatype".freeze,
type: "rdf:Property".freeze
property :deactivated,
- comment: %(If set to true then all nodes conform to this.).freeze,
+ comment: "If set to true then all nodes conform to this.".freeze,
isDefinedBy: "sh:".freeze,
label: "deactivated".freeze,
range: "xsd:boolean".freeze,
type: "rdf:Property".freeze
property :declare,
- comment: %(Links a resource with its namespace prefix declarations.).freeze,
+ comment: "Links a resource with its namespace prefix declarations.".freeze,
domain: "owl:Ontology".freeze,
isDefinedBy: "sh:".freeze,
label: "declare".freeze,
range: "sh:PrefixDeclaration".freeze,
type: "rdf:Property".freeze
property :defaultValue,
- comment: %(A default value for a property, for example for user interface tools to pre-populate input fields.).freeze,
+ comment: "A default value for a property, for example for user interface tools to pre-populate input fields.".freeze,
domain: "sh:PropertyShape".freeze,
isDefinedBy: "sh:".freeze,
label: "default value".freeze,
type: "rdf:Property".freeze
property :description,
- comment: %(Human-readable descriptions for the property in the context of the surrounding shape.).freeze,
+ comment: "Human-readable descriptions for the property in the context of the surrounding shape.".freeze,
domain: "sh:PropertyShape".freeze,
isDefinedBy: "sh:".freeze,
label: "description".freeze,
type: "rdf:Property".freeze
property :detail,
- comment: %(Links a result with other results that provide more details, for example to describe violations against nested shapes.).freeze,
+ comment: "Links a result with other results that provide more details, for example to describe violations against nested shapes.".freeze,
domain: "sh:AbstractResult".freeze,
isDefinedBy: "sh:".freeze,
label: "detail".freeze,
range: "sh:AbstractResult".freeze,
type: "rdf:Property".freeze
property :disjoint,
- comment: %(Specifies a property where the set of values must be disjoint with the value nodes.).freeze,
+ comment: "Specifies a property where the set of values must be disjoint with the value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "disjoint".freeze,
range: "rdf:Property".freeze,
type: "rdf:Property".freeze
property :entailment,
- comment: %(An entailment regime that indicates what kind of inferencing is required by a shapes graph.).freeze,
+ comment: "An entailment regime that indicates what kind of inferencing is required by a shapes graph.".freeze,
domain: "owl:Ontology".freeze,
isDefinedBy: "sh:".freeze,
label: "entailment".freeze,
range: "rdfs:Resource".freeze,
type: "rdf:Property".freeze
property :equals,
- comment: %(Specifies a property that must have the same values as the value nodes.).freeze,
+ comment: "Specifies a property that must have the same values as the value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "equals".freeze,
range: "rdf:Property".freeze,
type: "rdf:Property".freeze
property :expression,
- comment: %(The node expression that must return true for the value nodes.).freeze,
+ comment: "The node expression that must return true for the value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "expression".freeze,
type: "rdf:Property".freeze
property :filterShape,
- comment: %(The shape that all input nodes of the expression need to conform to.).freeze,
+ comment: "The shape that all input nodes of the expression need to conform to.".freeze,
isDefinedBy: "sh:".freeze,
label: "filter shape".freeze,
range: "sh:Shape".freeze,
type: "rdf:Property".freeze
property :flags,
- comment: %(An optional flag to be used with regular expression pattern matching.).freeze,
+ comment: "An optional flag to be used with regular expression pattern matching.".freeze,
isDefinedBy: "sh:".freeze,
label: "flags".freeze,
range: "xsd:string".freeze,
type: "rdf:Property".freeze
property :focusNode,
- comment: %(The focus node that was validated when the result was produced.).freeze,
+ comment: "The focus node that was validated when the result was produced.".freeze,
domain: "sh:AbstractResult".freeze,
isDefinedBy: "sh:".freeze,
label: "focus node".freeze,
type: "rdf:Property".freeze
property :group,
- comment: %(Can be used to link to a property group to indicate that a property shape belongs to a group of related property shapes.).freeze,
+ comment: "Can be used to link to a property group to indicate that a property shape belongs to a group of related property shapes.".freeze,
domain: "sh:PropertyShape".freeze,
isDefinedBy: "sh:".freeze,
label: "group".freeze,
range: "sh:PropertyGroup".freeze,
type: "rdf:Property".freeze
property :hasValue,
- comment: %(Specifies a value that must be among the value nodes.).freeze,
+ comment: "Specifies a value that must be among the value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "has value".freeze,
type: "rdf:Property".freeze
property :ignoredProperties,
- comment: %(An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path.).freeze,
+ comment: "An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path.".freeze,
isDefinedBy: "sh:".freeze,
label: "ignored properties".freeze,
range: "rdf:List".freeze,
type: "rdf:Property".freeze
property :in,
- comment: %(Specifies a list of allowed values so that each value node must be among the members of the given list.).freeze,
+ comment: "Specifies a list of allowed values so that each value node must be among the members of the given list.".freeze,
isDefinedBy: "sh:".freeze,
label: "in".freeze,
range: "rdf:List".freeze,
type: "rdf:Property".freeze
property :intersection,
- comment: %(A list of node expressions that shall be intersected.).freeze,
+ comment: "A list of node expressions that shall be intersected.".freeze,
isDefinedBy: "sh:".freeze,
label: "intersection".freeze,
type: "rdf:Property".freeze
property :inversePath,
- comment: %(The \(single\) value of this property represents an inverse path \(object to subject\).).freeze,
+ comment: "The (single) value of this property represents an inverse path (object to subject).".freeze,
isDefinedBy: "sh:".freeze,
label: "inverse path".freeze,
range: "rdfs:Resource".freeze,
type: "rdf:Property".freeze
property :js,
- comment: %(Constraints expressed in JavaScript.).freeze,
+ comment: "Constraints expressed in JavaScript.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript constraint".freeze,
range: "sh:JSConstraint".freeze,
type: "rdf:Property".freeze
property :jsFunctionName,
- comment: %(The name of the JavaScript function to execute.).freeze,
+ comment: "The name of the JavaScript function to execute.".freeze,
domain: "sh:JSExecutable".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript function name".freeze,
range: "xsd:string".freeze,
type: "rdf:Property".freeze
property :jsLibrary,
- comment: %(Declares which JavaScript libraries are needed to execute this.).freeze,
+ comment: "Declares which JavaScript libraries are needed to execute this.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript library".freeze,
range: "sh:JSLibrary".freeze,
type: "rdf:Property".freeze
property :jsLibraryURL,
- 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.).freeze,
+ 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.".freeze,
domain: "sh:JSLibrary".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript library URL".freeze,
range: "xsd:anyURI".freeze,
type: "rdf:Property".freeze
property :labelTemplate,
- 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.).freeze,
+ 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.".freeze,
domain: "sh:Parameterizable".freeze,
isDefinedBy: "sh:".freeze,
label: "label template".freeze,
type: "rdf:Property".freeze
property :languageIn,
- comment: %(Specifies a list of language tags that all value nodes must have.).freeze,
+ comment: "Specifies a list of language tags that all value nodes must have.".freeze,
isDefinedBy: "sh:".freeze,
label: "language in".freeze,
range: "rdf:List".freeze,
type: "rdf:Property".freeze
property :lessThan,
- comment: %(Specifies a property that must have smaller values than the value nodes.).freeze,
+ comment: "Specifies a property that must have smaller values than the value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "less than".freeze,
range: "rdf:Property".freeze,
type: "rdf:Property".freeze
property :lessThanOrEquals,
- comment: %(Specifies a property that must have smaller or equal values than the value nodes.).freeze,
+ comment: "Specifies a property that must have smaller or equal values than the value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "less than or equals".freeze,
range: "rdf:Property".freeze,
type: "rdf:Property".freeze
property :maxCount,
- comment: %(Specifies the maximum number of values in the set of value nodes.).freeze,
+ comment: "Specifies the maximum number of values in the set of value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "max count".freeze,
range: "xsd:integer".freeze,
type: "rdf:Property".freeze
property :maxExclusive,
- comment: %(Specifies the maximum exclusive value of each value node.).freeze,
+ comment: "Specifies the maximum exclusive value of each value node.".freeze,
isDefinedBy: "sh:".freeze,
label: "max exclusive".freeze,
type: "rdf:Property".freeze
property :maxInclusive,
- comment: %(Specifies the maximum inclusive value of each value node.).freeze,
+ comment: "Specifies the maximum inclusive value of each value node.".freeze,
isDefinedBy: "sh:".freeze,
label: "max inclusive".freeze,
type: "rdf:Property".freeze
property :maxLength,
- comment: %(Specifies the maximum string length of each value node.).freeze,
+ comment: "Specifies the maximum string length of each value node.".freeze,
isDefinedBy: "sh:".freeze,
label: "max length".freeze,
range: "xsd:integer".freeze,
type: "rdf:Property".freeze
property :message,
- comment: %(A human-readable message \(possibly with placeholders for variables\) explaining the cause of the result.).freeze,
+ comment: "A human-readable message (possibly with placeholders for variables) explaining the cause of the result.".freeze,
isDefinedBy: "sh:".freeze,
label: "message".freeze,
type: "rdf:Property".freeze
property :minCount,
- comment: %(Specifies the minimum number of values in the set of value nodes.).freeze,
+ comment: "Specifies the minimum number of values in the set of value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "min count".freeze,
range: "xsd:integer".freeze,
type: "rdf:Property".freeze
property :minExclusive,
- comment: %(Specifies the minimum exclusive value of each value node.).freeze,
+ comment: "Specifies the minimum exclusive value of each value node.".freeze,
isDefinedBy: "sh:".freeze,
label: "min exclusive".freeze,
type: "rdf:Property".freeze
property :minInclusive,
- comment: %(Specifies the minimum inclusive value of each value node.).freeze,
+ comment: "Specifies the minimum inclusive value of each value node.".freeze,
isDefinedBy: "sh:".freeze,
label: "min inclusive".freeze,
type: "rdf:Property".freeze
property :minLength,
- comment: %(Specifies the minimum string length of each value node.).freeze,
+ comment: "Specifies the minimum string length of each value node.".freeze,
isDefinedBy: "sh:".freeze,
label: "min length".freeze,
range: "xsd:integer".freeze,
type: "rdf:Property".freeze
property :name,
- comment: %(Human-readable labels for the property in the context of the surrounding shape.).freeze,
+ comment: "Human-readable labels for the property in the context of the surrounding shape.".freeze,
domain: "sh:PropertyShape".freeze,
isDefinedBy: "sh:".freeze,
label: "name".freeze,
type: "rdf:Property".freeze
property :namespace,
- comment: %(The namespace associated with a prefix in a prefix declaration.).freeze,
+ comment: "The namespace associated with a prefix in a prefix declaration.".freeze,
domain: "sh:PrefixDeclaration".freeze,
isDefinedBy: "sh:".freeze,
label: "namespace".freeze,
range: "xsd:anyURI".freeze,
type: "rdf:Property".freeze
property :node,
- comment: %(Specifies the node shape that all value nodes must conform to.).freeze,
+ comment: "Specifies the node shape that all value nodes must conform to.".freeze,
isDefinedBy: "sh:".freeze,
label: "node".freeze,
range: "sh:NodeShape".freeze,
type: "rdf:Property".freeze
property :nodeKind,
- comment: %(Specifies the node kind \(e.g. IRI or literal\) each value node.).freeze,
+ comment: "Specifies the node kind (e.g. IRI or literal) each value node.".freeze,
isDefinedBy: "sh:".freeze,
label: "node kind".freeze,
range: "sh:NodeKind".freeze,
type: "rdf:Property".freeze
property :nodeValidator,
- comment: %(The validator\(s\) used to evaluate a constraint in the context of a node shape.).freeze,
+ comment: "The validator(s) used to evaluate a constraint in the context of a node shape.".freeze,
domain: "sh:ConstraintComponent".freeze,
isDefinedBy: "sh:".freeze,
label: "shape validator".freeze,
range: "sh:Validator".freeze,
type: "rdf:Property".freeze
property :nodes,
- comment: %(The node expression producing the input nodes of a filter shape expression.).freeze,
+ comment: "The node expression producing the input nodes of a filter shape expression.".freeze,
isDefinedBy: "sh:".freeze,
label: "nodes".freeze,
type: "rdf:Property".freeze
property :not,
- comment: %(Specifies a shape that the value nodes must not conform to.).freeze,
+ comment: "Specifies a shape that the value nodes must not conform to.".freeze,
isDefinedBy: "sh:".freeze,
label: "not".freeze,
range: "sh:Shape".freeze,
type: "rdf:Property".freeze
property :object,
- comment: %(An expression producing the nodes that shall be inferred as objects.).freeze,
+ comment: "An expression producing the nodes that shall be inferred as objects.".freeze,
domain: "sh:TripleRule".freeze,
isDefinedBy: "sh:".freeze,
label: "object".freeze,
type: "rdf:Property".freeze
property :oneOrMorePath,
- comment: %(The \(single\) value of this property represents a path that is matched one or more times.).freeze,
+ comment: "The (single) value of this property represents a path that is matched one or more times.".freeze,
isDefinedBy: "sh:".freeze,
label: "one or more path".freeze,
range: "rdfs:Resource".freeze,
type: "rdf:Property".freeze
property :optional,
- comment: %(Indicates whether a parameter is optional.).freeze,
+ comment: "Indicates whether a parameter is optional.".freeze,
domain: "sh:Parameter".freeze,
isDefinedBy: "sh:".freeze,
label: "optional".freeze,
range: "xsd:boolean".freeze,
type: "rdf:Property".freeze
property :or,
- comment: %(Specifies a list of shapes so that the value nodes must conform to at least one of the shapes.).freeze,
+ comment: "Specifies a list of shapes so that the value nodes must conform to at least one of the shapes.".freeze,
isDefinedBy: "sh:".freeze,
label: "or".freeze,
range: "rdf:List".freeze,
type: "rdf:Property".freeze
property :order,
- comment: %(Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second.).freeze,
+ comment: "Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second.".freeze,
isDefinedBy: "sh:".freeze,
label: "order".freeze,
type: "rdf:Property".freeze
property :parameter,
- comment: %(The parameters of a function or constraint component.).freeze,
+ comment: "The parameters of a function or constraint component.".freeze,
domain: "sh:Parameterizable".freeze,
isDefinedBy: "sh:".freeze,
label: "parameter".freeze,
range: "sh:Parameter".freeze,
type: "rdf:Property".freeze
property :path,
- comment: %(Specifies the property path of a property shape.).freeze,
+ comment: "Specifies the property path of a property shape.".freeze,
domain: "sh:PropertyShape".freeze,
isDefinedBy: "sh:".freeze,
label: "path".freeze,
range: "rdfs:Resource".freeze,
type: "rdf:Property".freeze
property :pattern,
- comment: %(Specifies a regular expression pattern that the string representations of the value nodes must match.).freeze,
+ comment: "Specifies a regular expression pattern that the string representations of the value nodes must match.".freeze,
isDefinedBy: "sh:".freeze,
label: "pattern".freeze,
range: "xsd:string".freeze,
type: "rdf:Property".freeze
property :predicate,
- comment: %(An expression producing the properties that shall be inferred as predicates.).freeze,
+ comment: "An expression producing the properties that shall be inferred as predicates.".freeze,
domain: "sh:TripleRule".freeze,
isDefinedBy: "sh:".freeze,
label: "predicate".freeze,
type: "rdf:Property".freeze
property :prefix,
- comment: %(The prefix of a prefix declaration.).freeze,
+ comment: "The prefix of a prefix declaration.".freeze,
domain: "sh:PrefixDeclaration".freeze,
isDefinedBy: "sh:".freeze,
label: "prefix".freeze,
range: "xsd:string".freeze,
type: "rdf:Property".freeze
property :prefixes,
- comment: %(The prefixes that shall be applied before parsing the associated SPARQL query.).freeze,
+ comment: "The prefixes that shall be applied before parsing the associated SPARQL query.".freeze,
domain: "sh:SPARQLExecutable".freeze,
isDefinedBy: "sh:".freeze,
label: "prefixes".freeze,
range: "owl:Ontology".freeze,
type: "rdf:Property".freeze
property :property,
- comment: %(Links a shape to its property shapes.).freeze,
+ comment: "Links a shape to its property shapes.".freeze,
domain: "sh:Shape".freeze,
isDefinedBy: "sh:".freeze,
label: "property".freeze,
range: "sh:PropertyShape".freeze,
type: "rdf:Property".freeze
property :propertyValidator,
- comment: %(The validator\(s\) used to evaluate a constraint in the context of a property shape.).freeze,
+ comment: "The validator(s) used to evaluate a constraint in the context of a property shape.".freeze,
domain: "sh:ConstraintComponent".freeze,
isDefinedBy: "sh:".freeze,
label: "property validator".freeze,
range: "sh:Validator".freeze,
type: "rdf:Property".freeze
property :qualifiedMaxCount,
- comment: %(The maximum number of value nodes that can conform to the shape.).freeze,
+ comment: "The maximum number of value nodes that can conform to the shape.".freeze,
isDefinedBy: "sh:".freeze,
label: "qualified max count".freeze,
range: "xsd:integer".freeze,
type: "rdf:Property".freeze
property :qualifiedMinCount,
- comment: %(The minimum number of value nodes that must conform to the shape.).freeze,
+ comment: "The minimum number of value nodes that must conform to the shape.".freeze,
isDefinedBy: "sh:".freeze,
label: "qualified min count".freeze,
range: "xsd:integer".freeze,
type: "rdf:Property".freeze
property :qualifiedValueShape,
- comment: %(The shape that a specified number of values must conform to.).freeze,
+ comment: "The shape that a specified number of values must conform to.".freeze,
isDefinedBy: "sh:".freeze,
label: "qualified value shape".freeze,
range: "sh:Shape".freeze,
type: "rdf:Property".freeze
property :qualifiedValueShapesDisjoint,
- comment: %(Can be used to mark the qualified value shape to be disjoint with its sibling shapes.).freeze,
+ comment: "Can be used to mark the qualified value shape to be disjoint with its sibling shapes.".freeze,
isDefinedBy: "sh:".freeze,
label: "qualified value shapes disjoint".freeze,
range: "xsd:boolean".freeze,
type: "rdf:Property".freeze
property :result,
- comment: %(The validation results contained in a validation report.).freeze,
+ comment: "The validation results contained in a validation report.".freeze,
domain: "sh:ValidationReport".freeze,
isDefinedBy: "sh:".freeze,
label: "result".freeze,
range: "sh:ValidationResult".freeze,
type: "rdf:Property".freeze
property :resultAnnotation,
- 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.).freeze,
+ 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.".freeze,
domain: "sh:SPARQLSelectValidator".freeze,
isDefinedBy: "sh:".freeze,
label: "result annotation".freeze,
range: "sh:ResultAnnotation".freeze,
type: "rdf:Property".freeze
property :resultMessage,
- comment: %(Human-readable messages explaining the cause of the result.).freeze,
+ comment: "Human-readable messages explaining the cause of the result.".freeze,
domain: "sh:AbstractResult".freeze,
isDefinedBy: "sh:".freeze,
label: "result message".freeze,
type: "rdf:Property".freeze
property :resultPath,
- comment: %(The path of a validation result, based on the path of the validated property shape.).freeze,
+ comment: "The path of a validation result, based on the path of the validated property shape.".freeze,
domain: "sh:AbstractResult".freeze,
isDefinedBy: "sh:".freeze,
label: "result path".freeze,
range: "rdfs:Resource".freeze,
type: "rdf:Property".freeze
property :resultSeverity,
- comment: %(The severity of the result, e.g. warning.).freeze,
+ comment: "The severity of the result, e.g. warning.".freeze,
domain: "sh:AbstractResult".freeze,
isDefinedBy: "sh:".freeze,
label: "result severity".freeze,
range: "sh:Severity".freeze,
type: "rdf:Property".freeze
property :returnType,
- comment: %(The expected type of values returned by the associated function.).freeze,
+ comment: "The expected type of values returned by the associated function.".freeze,
domain: "sh:Function".freeze,
isDefinedBy: "sh:".freeze,
label: "return type".freeze,
range: "rdfs:Class".freeze,
type: "rdf:Property".freeze
property :rule,
- comment: %(The rules linked to a shape.).freeze,
+ comment: "The rules linked to a shape.".freeze,
domain: "sh:Shape".freeze,
isDefinedBy: "sh:".freeze,
label: "rule".freeze,
range: "sh:Rule".freeze,
type: "rdf:Property".freeze
property :select,
- comment: %(The SPARQL SELECT query to execute.).freeze,
+ comment: "The SPARQL SELECT query to execute.".freeze,
domain: "sh:SPARQLSelectExecutable".freeze,
isDefinedBy: "sh:".freeze,
label: "select".freeze,
range: "xsd:string".freeze,
type: "rdf:Property".freeze
property :severity,
- comment: %(Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation.).freeze,
+ comment: "Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation.".freeze,
domain: "sh:Shape".freeze,
isDefinedBy: "sh:".freeze,
label: "severity".freeze,
range: "sh:Severity".freeze,
type: "rdf:Property".freeze
property :shapesGraph,
- comment: %(Shapes graphs that should be used when validating this data graph.).freeze,
+ comment: "Shapes graphs that should be used when validating this data graph.".freeze,
domain: "owl:Ontology".freeze,
isDefinedBy: "sh:".freeze,
label: "shapes graph".freeze,
range: "owl:Ontology".freeze,
type: "rdf:Property".freeze
property :shapesGraphWellFormed,
- comment: %(If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process.).freeze,
+ comment: "If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process.".freeze,
domain: "sh:ValidationReport".freeze,
isDefinedBy: "sh:".freeze,
label: "shapes graph well-formed".freeze,
range: "xsd:boolean".freeze,
type: "rdf:Property".freeze
property :sourceConstraint,
- comment: %(The constraint that was validated when the result was produced.).freeze,
+ comment: "The constraint that was validated when the result was produced.".freeze,
domain: "sh:AbstractResult".freeze,
isDefinedBy: "sh:".freeze,
label: "source constraint".freeze,
type: "rdf:Property".freeze
property :sourceConstraintComponent,
- comment: %(The constraint component that is the source of the result.).freeze,
+ comment: "The constraint component that is the source of the result.".freeze,
domain: "sh:AbstractResult".freeze,
isDefinedBy: "sh:".freeze,
label: "source constraint component".freeze,
range: "sh:ConstraintComponent".freeze,
type: "rdf:Property".freeze
property :sourceShape,
- comment: %(The shape that is was validated when the result was produced.).freeze,
+ comment: "The shape that is was validated when the result was produced.".freeze,
domain: "sh:AbstractResult".freeze,
isDefinedBy: "sh:".freeze,
label: "source shape".freeze,
range: "sh:Shape".freeze,
type: "rdf:Property".freeze
property :sparql,
- comment: %(Links a shape with SPARQL constraints.).freeze,
+ comment: "Links a shape with SPARQL constraints.".freeze,
domain: "sh:Shape".freeze,
isDefinedBy: "sh:".freeze,
label: "constraint (in SPARQL)".freeze,
range: "sh:SPARQLConstraint".freeze,
type: "rdf:Property".freeze
property :subject,
- comment: %(An expression producing the resources that shall be inferred as subjects.).freeze,
+ comment: "An expression producing the resources that shall be inferred as subjects.".freeze,
domain: "sh:TripleRule".freeze,
isDefinedBy: "sh:".freeze,
label: "subject".freeze,
type: "rdf:Property".freeze
property :suggestedShapesGraph,
- comment: %(Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements.).freeze,
+ comment: "Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements.".freeze,
domain: "owl:Ontology".freeze,
isDefinedBy: "sh:".freeze,
label: "suggested shapes graph".freeze,
range: "owl:Ontology".freeze,
type: "rdf:Property".freeze
property :target,
- comment: %(Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget.).freeze,
+ comment: "Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget.".freeze,
domain: "sh:Shape".freeze,
isDefinedBy: "sh:".freeze,
label: "target".freeze,
range: "sh:Target".freeze,
type: "rdf:Property".freeze
property :targetClass,
- comment: %(Links a shape to a class, indicating that all instances of the class must conform to the shape.).freeze,
+ comment: "Links a shape to a class, indicating that all instances of the class must conform to the shape.".freeze,
domain: "sh:Shape".freeze,
isDefinedBy: "sh:".freeze,
label: "target class".freeze,
range: "rdfs:Class".freeze,
type: "rdf:Property".freeze
property :targetNode,
- comment: %(Links a shape to individual nodes, indicating that these nodes must conform to the shape.).freeze,
+ comment: "Links a shape to individual nodes, indicating that these nodes must conform to the shape.".freeze,
domain: "sh:Shape".freeze,
isDefinedBy: "sh:".freeze,
label: "target node".freeze,
type: "rdf:Property".freeze
property :targetObjectsOf,
- 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.).freeze,
+ 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.".freeze,
domain: "sh:Shape".freeze,
isDefinedBy: "sh:".freeze,
label: "target objects of".freeze,
range: "rdf:Property".freeze,
type: "rdf:Property".freeze
property :targetSubjectsOf,
- 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.).freeze,
+ 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.".freeze,
domain: "sh:Shape".freeze,
isDefinedBy: "sh:".freeze,
label: "target subjects of".freeze,
range: "rdf:Property".freeze,
type: "rdf:Property".freeze
property :union,
- comment: %(A list of node expressions that shall be used together.).freeze,
+ comment: "A list of node expressions that shall be used together.".freeze,
isDefinedBy: "sh:".freeze,
label: "union".freeze,
type: "rdf:Property".freeze
property :uniqueLang,
- comment: %(Specifies whether all node values must have a unique \(or no\) language tag.).freeze,
+ comment: "Specifies whether all node values must have a unique (or no) language tag.".freeze,
isDefinedBy: "sh:".freeze,
label: "unique languages".freeze,
range: "xsd:boolean".freeze,
type: "rdf:Property".freeze
property :update,
- comment: %(The SPARQL UPDATE to execute.).freeze,
+ comment: "The SPARQL UPDATE to execute.".freeze,
domain: "sh:SPARQLUpdateExecutable".freeze,
isDefinedBy: "sh:".freeze,
label: "update".freeze,
range: "xsd:string".freeze,
type: "rdf:Property".freeze
property :validator,
- comment: %(The validator\(s\) used to evaluate constraints of either node or property shapes.).freeze,
+ comment: "The validator(s) used to evaluate constraints of either node or property shapes.".freeze,
domain: "sh:ConstraintComponent".freeze,
isDefinedBy: "sh:".freeze,
label: "validator".freeze,
range: "sh:Validator".freeze,
type: "rdf:Property".freeze
property :value,
- comment: %(An RDF node that has caused the result.).freeze,
+ comment: "An RDF node that has caused the result.".freeze,
domain: "sh:AbstractResult".freeze,
isDefinedBy: "sh:".freeze,
label: "value".freeze,
type: "rdf:Property".freeze
property :xone,
- comment: %(Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes.).freeze,
+ comment: "Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes.".freeze,
isDefinedBy: "sh:".freeze,
label: "exactly one".freeze,
range: "rdf:List".freeze,
type: "rdf:Property".freeze
property :zeroOrMorePath,
- comment: %(The \(single\) value of this property represents a path that is matched zero or more times.).freeze,
+ comment: "The (single) value of this property represents a path that is matched zero or more times.".freeze,
isDefinedBy: "sh:".freeze,
label: "zero or more path".freeze,
range: "rdfs:Resource".freeze,
type: "rdf:Property".freeze
property :zeroOrOnePath,
- comment: %(The \(single\) value of this property represents a path that is matched zero or one times.).freeze,
+ comment: "The (single) value of this property represents a path that is matched zero or one times.".freeze,
isDefinedBy: "sh:".freeze,
label: "zero or one path".freeze,
range: "rdfs:Resource".freeze,
type: "rdf:Property".freeze
# Extra definitions
term :AndConstraintComponent,
- comment: %(A constraint component that can be used to test whether a value node conforms to all members of a provided list of shapes.).freeze,
+ comment: "A constraint component that can be used to test whether a value node conforms to all members of a provided list of shapes.".freeze,
isDefinedBy: "sh:".freeze,
label: "And constraint component".freeze,
"sh:parameter": "sh:AndConstraintComponent-and".freeze,
type: "sh:ConstraintComponent".freeze
term :"AndConstraintComponent-and",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:and".freeze,
type: "sh:Parameter".freeze
term :BlankNode,
- comment: %(The node kind of all blank nodes.).freeze,
+ comment: "The node kind of all blank nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "Blank node".freeze,
type: "sh:NodeKind".freeze
term :BlankNodeOrIRI,
- comment: %(The node kind of all blank nodes or IRIs.).freeze,
+ comment: "The node kind of all blank nodes or IRIs.".freeze,
isDefinedBy: "sh:".freeze,
label: "Blank node or IRI".freeze,
type: "sh:NodeKind".freeze
term :BlankNodeOrLiteral,
- comment: %(The node kind of all blank nodes or literals.).freeze,
+ comment: "The node kind of all blank nodes or literals.".freeze,
isDefinedBy: "sh:".freeze,
label: "Blank node or literal".freeze,
type: "sh:NodeKind".freeze
term :ClassConstraintComponent,
- comment: %(A constraint component that can be used to verify that each value node is an instance of a given type.).freeze,
+ comment: "A constraint component that can be used to verify that each value node is an instance of a given type.".freeze,
isDefinedBy: "sh:".freeze,
label: "Class constraint component".freeze,
"sh:parameter": "sh:ClassConstraintComponent-class".freeze,
type: "sh:ConstraintComponent".freeze
term :"ClassConstraintComponent-class",
isDefinedBy: "sh:".freeze,
"sh:nodeKind": "sh:IRI".freeze,
"sh:path": "sh:class".freeze,
type: "sh:Parameter".freeze
term :ClosedConstraintComponent,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "Closed constraint component".freeze,
"sh:parameter": ["sh:ClosedConstraintComponent-closed".freeze, "sh:ClosedConstraintComponent-ignoredProperties".freeze],
type: "sh:ConstraintComponent".freeze
term :"ClosedConstraintComponent-closed",
@@ -1686,11 +1686,11 @@
isDefinedBy: "sh:".freeze,
"sh:optional": "true".freeze,
"sh:path": "sh:ignoredProperties".freeze,
type: "sh:Parameter".freeze
term :DatatypeConstraintComponent,
- comment: %(A constraint component that can be used to restrict the datatype of all value nodes.).freeze,
+ comment: "A constraint component that can be used to restrict the datatype of all value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "Datatype constraint component".freeze,
"sh:parameter": "sh:DatatypeConstraintComponent-datatype".freeze,
type: "sh:ConstraintComponent".freeze
term :"DatatypeConstraintComponent-datatype",
@@ -1698,127 +1698,127 @@
"sh:maxCount": "1".freeze,
"sh:nodeKind": "sh:IRI".freeze,
"sh:path": "sh:datatype".freeze,
type: "sh:Parameter".freeze
term :DisjointConstraintComponent,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "Disjoint constraint component".freeze,
"sh:parameter": "sh:DisjointConstraintComponent-disjoint".freeze,
type: "sh:ConstraintComponent".freeze
term :"DisjointConstraintComponent-disjoint",
isDefinedBy: "sh:".freeze,
"sh:nodeKind": "sh:IRI".freeze,
"sh:path": "sh:disjoint".freeze,
type: "sh:Parameter".freeze
term :EqualsConstraintComponent,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "Equals constraint component".freeze,
"sh:parameter": "sh:EqualsConstraintComponent-equals".freeze,
type: "sh:ConstraintComponent".freeze
term :"EqualsConstraintComponent-equals",
isDefinedBy: "sh:".freeze,
"sh:nodeKind": "sh:IRI".freeze,
"sh:path": "sh:equals".freeze,
type: "sh:Parameter".freeze
term :ExpressionConstraintComponent,
- comment: %(A constraint component that can be used to verify that a given node expression produces true for all value nodes.).freeze,
+ comment: "A constraint component that can be used to verify that a given node expression produces true for all value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "Expression constraint component".freeze,
"sh:parameter": "sh:ExpressionConstraintComponent-expression".freeze,
type: "sh:ConstraintComponent".freeze
term :"ExpressionConstraintComponent-expression",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:expression".freeze,
type: "sh:Parameter".freeze
term :HasValueConstraintComponent,
- comment: %(A constraint component that can be used to verify that one of the value nodes is a given RDF node.).freeze,
+ comment: "A constraint component that can be used to verify that one of the value nodes is a given RDF node.".freeze,
isDefinedBy: "sh:".freeze,
label: "Has-value constraint component".freeze,
"sh:parameter": "sh:HasValueConstraintComponent-hasValue".freeze,
type: "sh:ConstraintComponent".freeze
term :"HasValueConstraintComponent-hasValue",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:hasValue".freeze,
type: "sh:Parameter".freeze
term :IRI,
- comment: %(The node kind of all IRIs.).freeze,
+ comment: "The node kind of all IRIs.".freeze,
isDefinedBy: "sh:".freeze,
label: "IRI".freeze,
type: "sh:NodeKind".freeze
term :IRIOrLiteral,
- comment: %(The node kind of all IRIs or literals.).freeze,
+ comment: "The node kind of all IRIs or literals.".freeze,
isDefinedBy: "sh:".freeze,
label: "IRI or literal".freeze,
type: "sh:NodeKind".freeze
term :InConstraintComponent,
- comment: %(A constraint component that can be used to exclusively enumerate the permitted value nodes.).freeze,
+ comment: "A constraint component that can be used to exclusively enumerate the permitted value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "In constraint component".freeze,
"sh:parameter": "sh:InConstraintComponent-in".freeze,
type: "sh:ConstraintComponent".freeze
term :"InConstraintComponent-in",
isDefinedBy: "sh:".freeze,
"sh:maxCount": "1".freeze,
"sh:path": "sh:in".freeze,
type: "sh:Parameter".freeze
term :Info,
- comment: %(The severity for an informational validation result.).freeze,
+ comment: "The severity for an informational validation result.".freeze,
isDefinedBy: "sh:".freeze,
label: "Info".freeze,
type: "sh:Severity".freeze
term :"JSConstraint-js",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:js".freeze,
type: "sh:Parameter".freeze
term :JSConstraintComponent,
- comment: %(A constraint component with the parameter sh:js linking to a sh:JSConstraint containing a sh:script.).freeze,
+ comment: "A constraint component with the parameter sh:js linking to a sh:JSConstraint containing a sh:script.".freeze,
isDefinedBy: "sh:".freeze,
label: "JavaScript constraint component".freeze,
"sh:parameter": "sh:JSConstraint-js".freeze,
type: "sh:ConstraintComponent".freeze
term :LanguageInConstraintComponent,
- comment: %(A constraint component that can be used to enumerate language tags that all value nodes must have.).freeze,
+ comment: "A constraint component that can be used to enumerate language tags that all value nodes must have.".freeze,
isDefinedBy: "sh:".freeze,
label: "Language-in constraint component".freeze,
"sh:parameter": "sh:LanguageInConstraintComponent-languageIn".freeze,
type: "sh:ConstraintComponent".freeze
term :"LanguageInConstraintComponent-languageIn",
isDefinedBy: "sh:".freeze,
"sh:maxCount": "1".freeze,
"sh:path": "sh:languageIn".freeze,
type: "sh:Parameter".freeze
term :LessThanConstraintComponent,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "Less-than constraint component".freeze,
"sh:parameter": "sh:LessThanConstraintComponent-lessThan".freeze,
type: "sh:ConstraintComponent".freeze
term :"LessThanConstraintComponent-lessThan",
isDefinedBy: "sh:".freeze,
"sh:nodeKind": "sh:IRI".freeze,
"sh:path": "sh:lessThan".freeze,
type: "sh:Parameter".freeze
term :LessThanOrEqualsConstraintComponent,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "less-than-or-equals constraint component".freeze,
"sh:parameter": "sh:LessThanOrEqualsConstraintComponent-lessThanOrEquals".freeze,
type: "sh:ConstraintComponent".freeze
term :"LessThanOrEqualsConstraintComponent-lessThanOrEquals",
isDefinedBy: "sh:".freeze,
"sh:nodeKind": "sh:IRI".freeze,
"sh:path": "sh:lessThanOrEquals".freeze,
type: "sh:Parameter".freeze
term :Literal,
- comment: %(The node kind of all literals.).freeze,
+ comment: "The node kind of all literals.".freeze,
isDefinedBy: "sh:".freeze,
label: "Literal".freeze,
type: "sh:NodeKind".freeze
term :MaxCountConstraintComponent,
- comment: %(A constraint component that can be used to restrict the maximum number of value nodes.).freeze,
+ comment: "A constraint component that can be used to restrict the maximum number of value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "Max-count constraint component".freeze,
"sh:parameter": "sh:MaxCountConstraintComponent-maxCount".freeze,
type: "sh:ConstraintComponent".freeze
term :"MaxCountConstraintComponent-maxCount",
@@ -1826,11 +1826,11 @@
"sh:datatype": "xsd:integer".freeze,
"sh:maxCount": "1".freeze,
"sh:path": "sh:maxCount".freeze,
type: "sh:Parameter".freeze
term :MaxExclusiveConstraintComponent,
- comment: %(A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value.).freeze,
+ comment: "A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value.".freeze,
isDefinedBy: "sh:".freeze,
label: "Max-exclusive constraint component".freeze,
"sh:parameter": "sh:MaxExclusiveConstraintComponent-maxExclusive".freeze,
type: "sh:ConstraintComponent".freeze
term :"MaxExclusiveConstraintComponent-maxExclusive",
@@ -1838,11 +1838,11 @@
"sh:maxCount": "1".freeze,
"sh:nodeKind": "sh:Literal".freeze,
"sh:path": "sh:maxExclusive".freeze,
type: "sh:Parameter".freeze
term :MaxInclusiveConstraintComponent,
- comment: %(A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value.).freeze,
+ comment: "A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value.".freeze,
isDefinedBy: "sh:".freeze,
label: "Max-inclusive constraint component".freeze,
"sh:parameter": "sh:MaxInclusiveConstraintComponent-maxInclusive".freeze,
type: "sh:ConstraintComponent".freeze
term :"MaxInclusiveConstraintComponent-maxInclusive",
@@ -1850,11 +1850,11 @@
"sh:maxCount": "1".freeze,
"sh:nodeKind": "sh:Literal".freeze,
"sh:path": "sh:maxInclusive".freeze,
type: "sh:Parameter".freeze
term :MaxLengthConstraintComponent,
- comment: %(A constraint component that can be used to restrict the maximum string length of value nodes.).freeze,
+ comment: "A constraint component that can be used to restrict the maximum string length of value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "Max-length constraint component".freeze,
"sh:parameter": "sh:MaxLengthConstraintComponent-maxLength".freeze,
type: "sh:ConstraintComponent".freeze
term :"MaxLengthConstraintComponent-maxLength",
@@ -1862,11 +1862,11 @@
"sh:datatype": "xsd:integer".freeze,
"sh:maxCount": "1".freeze,
"sh:path": "sh:maxLength".freeze,
type: "sh:Parameter".freeze
term :MinCountConstraintComponent,
- comment: %(A constraint component that can be used to restrict the minimum number of value nodes.).freeze,
+ comment: "A constraint component that can be used to restrict the minimum number of value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "Min-count constraint component".freeze,
"sh:parameter": "sh:MinCountConstraintComponent-minCount".freeze,
type: "sh:ConstraintComponent".freeze
term :"MinCountConstraintComponent-minCount",
@@ -1874,11 +1874,11 @@
"sh:datatype": "xsd:integer".freeze,
"sh:maxCount": "1".freeze,
"sh:path": "sh:minCount".freeze,
type: "sh:Parameter".freeze
term :MinExclusiveConstraintComponent,
- comment: %(A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value.).freeze,
+ comment: "A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value.".freeze,
isDefinedBy: "sh:".freeze,
label: "Min-exclusive constraint component".freeze,
"sh:parameter": "sh:MinExclusiveConstraintComponent-minExclusive".freeze,
type: "sh:ConstraintComponent".freeze
term :"MinExclusiveConstraintComponent-minExclusive",
@@ -1886,11 +1886,11 @@
"sh:maxCount": "1".freeze,
"sh:nodeKind": "sh:Literal".freeze,
"sh:path": "sh:minExclusive".freeze,
type: "sh:Parameter".freeze
term :MinInclusiveConstraintComponent,
- comment: %(A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value.).freeze,
+ comment: "A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value.".freeze,
isDefinedBy: "sh:".freeze,
label: "Min-inclusive constraint component".freeze,
"sh:parameter": "sh:MinInclusiveConstraintComponent-minInclusive".freeze,
type: "sh:ConstraintComponent".freeze
term :"MinInclusiveConstraintComponent-minInclusive",
@@ -1898,11 +1898,11 @@
"sh:maxCount": "1".freeze,
"sh:nodeKind": "sh:Literal".freeze,
"sh:path": "sh:minInclusive".freeze,
type: "sh:Parameter".freeze
term :MinLengthConstraintComponent,
- comment: %(A constraint component that can be used to restrict the minimum string length of value nodes.).freeze,
+ comment: "A constraint component that can be used to restrict the minimum string length of value nodes.".freeze,
isDefinedBy: "sh:".freeze,
label: "Min-length constraint component".freeze,
"sh:parameter": "sh:MinLengthConstraintComponent-minLength".freeze,
type: "sh:ConstraintComponent".freeze
term :"MinLengthConstraintComponent-minLength",
@@ -1910,21 +1910,21 @@
"sh:datatype": "xsd:integer".freeze,
"sh:maxCount": "1".freeze,
"sh:path": "sh:minLength".freeze,
type: "sh:Parameter".freeze
term :NodeConstraintComponent,
- comment: %(A constraint component that can be used to verify that all value nodes conform to the given node shape.).freeze,
+ comment: "A constraint component that can be used to verify that all value nodes conform to the given node shape.".freeze,
isDefinedBy: "sh:".freeze,
label: "Node constraint component".freeze,
"sh:parameter": "sh:NodeConstraintComponent-node".freeze,
type: "sh:ConstraintComponent".freeze
term :"NodeConstraintComponent-node",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:node".freeze,
type: "sh:Parameter".freeze
term :NodeKindConstraintComponent,
- comment: %(A constraint component that can be used to restrict the RDF node kind of each value node.).freeze,
+ comment: "A constraint component that can be used to restrict the RDF node kind of each value node.".freeze,
isDefinedBy: "sh:".freeze,
label: "Node-kind constraint component".freeze,
"sh:parameter": "sh:NodeKindConstraintComponent-nodeKind".freeze,
type: "sh:ConstraintComponent".freeze
term :"NodeKindConstraintComponent-nodeKind",
@@ -1932,31 +1932,31 @@
"sh:in": list("sh:BlankNode".freeze, "sh:IRI".freeze, "sh:Literal".freeze, "sh:BlankNodeOrIRI".freeze, "sh:BlankNodeOrLiteral".freeze, "sh:IRIOrLiteral".freeze),
"sh:maxCount": "1".freeze,
"sh:path": "sh:nodeKind".freeze,
type: "sh:Parameter".freeze
term :NotConstraintComponent,
- comment: %(A constraint component that can be used to verify that value nodes do not conform to a given shape.).freeze,
+ comment: "A constraint component that can be used to verify that value nodes do not conform to a given shape.".freeze,
isDefinedBy: "sh:".freeze,
label: "Not constraint component".freeze,
"sh:parameter": "sh:NotConstraintComponent-not".freeze,
type: "sh:ConstraintComponent".freeze
term :"NotConstraintComponent-not",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:not".freeze,
type: "sh:Parameter".freeze
term :OrConstraintComponent,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "Or constraint component".freeze,
"sh:parameter": "sh:OrConstraintComponent-or".freeze,
type: "sh:ConstraintComponent".freeze
term :"OrConstraintComponent-or",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:or".freeze,
type: "sh:Parameter".freeze
term :PatternConstraintComponent,
- comment: %(A constraint component that can be used to verify that every value node matches a given regular expression.).freeze,
+ comment: "A constraint component that can be used to verify that every value node matches a given regular expression.".freeze,
isDefinedBy: "sh:".freeze,
label: "Pattern constraint component".freeze,
"sh:parameter": ["sh:PatternConstraintComponent-flags".freeze, "sh:PatternConstraintComponent-pattern".freeze],
type: "sh:ConstraintComponent".freeze
term :"PatternConstraintComponent-flags",
@@ -1969,21 +1969,21 @@
isDefinedBy: "sh:".freeze,
"sh:datatype": "xsd:string".freeze,
"sh:path": "sh:pattern".freeze,
type: "sh:Parameter".freeze
term :PropertyConstraintComponent,
- comment: %(A constraint component that can be used to verify that all value nodes conform to the given property shape.).freeze,
+ comment: "A constraint component that can be used to verify that all value nodes conform to the given property shape.".freeze,
isDefinedBy: "sh:".freeze,
label: "Property constraint component".freeze,
"sh:parameter": "sh:PropertyConstraintComponent-property".freeze,
type: "sh:ConstraintComponent".freeze
term :"PropertyConstraintComponent-property",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:property".freeze,
type: "sh:Parameter".freeze
term :QualifiedMaxCountConstraintComponent,
- comment: %(A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape.).freeze,
+ comment: "A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape.".freeze,
isDefinedBy: "sh:".freeze,
label: "Qualified-max-count constraint component".freeze,
"sh:parameter": ["sh:QualifiedMaxCountConstraintComponent-qualifiedMaxCount".freeze, "sh:QualifiedMaxCountConstraintComponent-qualifiedValueShape".freeze, "sh:QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint".freeze],
type: "sh:ConstraintComponent".freeze
term :"QualifiedMaxCountConstraintComponent-qualifiedMaxCount",
@@ -2000,11 +2000,11 @@
"sh:datatype": "xsd:boolean".freeze,
"sh:optional": "true".freeze,
"sh:path": "sh:qualifiedValueShapesDisjoint".freeze,
type: "sh:Parameter".freeze
term :QualifiedMinCountConstraintComponent,
- comment: %(A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape.).freeze,
+ comment: "A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape.".freeze,
isDefinedBy: "sh:".freeze,
label: "Qualified-min-count constraint component".freeze,
"sh:parameter": ["sh:QualifiedMinCountConstraintComponent-qualifiedMinCount".freeze, "sh:QualifiedMinCountConstraintComponent-qualifiedValueShape".freeze, "sh:QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint".freeze],
type: "sh:ConstraintComponent".freeze
term :"QualifiedMinCountConstraintComponent-qualifiedMinCount",
@@ -2021,21 +2021,21 @@
"sh:datatype": "xsd:boolean".freeze,
"sh:optional": "true".freeze,
"sh:path": "sh:qualifiedValueShapesDisjoint".freeze,
type: "sh:Parameter".freeze
term :SPARQLConstraintComponent,
- comment: %(A constraint component that can be used to define constraints based on SPARQL queries.).freeze,
+ comment: "A constraint component that can be used to define constraints based on SPARQL queries.".freeze,
isDefinedBy: "sh:".freeze,
label: "SPARQL constraint component".freeze,
"sh:parameter": "sh:SPARQLConstraintComponent-sparql".freeze,
type: "sh:ConstraintComponent".freeze
term :"SPARQLConstraintComponent-sparql",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:sparql".freeze,
type: "sh:Parameter".freeze
term :UniqueLangConstraintComponent,
- comment: %(A constraint component that can be used to specify that no pair of value nodes may use the same language tag.).freeze,
+ comment: "A constraint component that can be used to specify that no pair of value nodes may use the same language tag.".freeze,
isDefinedBy: "sh:".freeze,
label: "Unique-languages constraint component".freeze,
"sh:parameter": "sh:UniqueLangConstraintComponent-uniqueLang".freeze,
type: "sh:ConstraintComponent".freeze
term :"UniqueLangConstraintComponent-uniqueLang",
@@ -2043,30 +2043,30 @@
"sh:datatype": "xsd:boolean".freeze,
"sh:maxCount": "1".freeze,
"sh:path": "sh:uniqueLang".freeze,
type: "sh:Parameter".freeze
term :Violation,
- comment: %(The severity for a violation validation result.).freeze,
+ comment: "The severity for a violation validation result.".freeze,
isDefinedBy: "sh:".freeze,
label: "Violation".freeze,
type: "sh:Severity".freeze
term :Warning,
- comment: %(The severity for a warning validation result.).freeze,
+ comment: "The severity for a warning validation result.".freeze,
isDefinedBy: "sh:".freeze,
label: "Warning".freeze,
type: "sh:Severity".freeze
term :XoneConstraintComponent,
- 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.).freeze,
+ 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.".freeze,
isDefinedBy: "sh:".freeze,
label: "Exactly one constraint component".freeze,
"sh:parameter": "sh:XoneConstraintComponent-xone".freeze,
type: "sh:ConstraintComponent".freeze
term :"XoneConstraintComponent-xone",
isDefinedBy: "sh:".freeze,
"sh:path": "sh:xone".freeze,
type: "sh:Parameter".freeze
term :this,
- comment: %(A node expression that represents the current focus node.).freeze,
+ comment: "A node expression that represents the current focus node.".freeze,
isDefinedBy: "sh:".freeze,
label: "this".freeze,
type: "rdfs:Resource".freeze
end
end