rdf4h-5.1.0: A library for RDF processing in Haskell
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.RDF.Vocabulary.SHACL

Synopsis

Documentation

_AbstractResult :: Node Source #

The base class of validation results, typically not instantiated directly.

_AndConstraintComponent :: Node Source #

A constraint component that can be used to test whether a value node conforms to all members of a provided list of shapes.

_BlankNode :: Node Source #

The node kind of all blank nodes.

_BlankNodeOrIRI :: Node Source #

The node kind of all blank nodes or IRIs.

_BlankNodeOrLiteral :: Node Source #

The node kind of all blank nodes or literals.

_ClassConstraintComponent :: Node Source #

A constraint component that can be used to verify that each value node is an instance of a given type.

_ClosedConstraintComponent :: Node Source #

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.

_ConstraintComponent :: Node Source #

The class of constraint components.

_DatatypeConstraintComponent :: Node Source #

A constraint component that can be used to restrict the datatype of all value nodes.

_DerivedValuesConstraintComponent :: Node Source #

A constraint component that can be used to state that the set of value nodes must be equivalent to a set of values derived using a given mechanism, such as a SPARQL query.

_DisjointConstraintComponent :: Node Source #

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.

_EqualsConstraintComponent :: Node Source #

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.

_Function :: Node Source #

The class of SHACL functions.

_HasValueConstraintComponent :: Node Source #

A constraint component that can be used to verify that one of the value nodes is a given RDF node.

_IRI :: Node Source #

The node kind of all IRIs.

_IRIOrLiteral :: Node Source #

The node kind of all IRIs or literals.

_InConstraintComponent :: Node Source #

A constraint component that can be used to exclusively enumerate the permitted value nodes.

_Info :: Node Source #

The severity for an informational validation result.

_LanguageInConstraintComponent :: Node Source #

A constraint component that can be used to enumerate language tags that all value nodes must have.

_LessThanConstraintComponent :: Node Source #

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.

_LessThanOrEqualsConstraintComponent :: Node Source #

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.

_Literal :: Node Source #

The node kind of all literals.

_MaxCountConstraintComponent :: Node Source #

A constraint component that can be used to restrict the maximum number of value nodes.

_MaxExclusiveConstraintComponent :: Node Source #

A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value.

_MaxInclusiveConstraintComponent :: Node Source #

A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value.

_MaxLengthConstraintComponent :: Node Source #

A constraint component that can be used to restrict the maximum string length of value nodes.

_MinCountConstraintComponent :: Node Source #

A constraint component that can be used to restrict the minimum number of value nodes.

_MinExclusiveConstraintComponent :: Node Source #

A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value.

_MinInclusiveConstraintComponent :: Node Source #

A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value.

_MinLengthConstraintComponent :: Node Source #

A constraint component that can be used to restrict the minimum string length of value nodes.

_NodeConstraintComponent :: Node Source #

A constraint component that can be used to verify that all value nodes conform to the given node shape.

_NodeKind :: Node Source #

The class of all node kinds, including sh:BlankNode, sh:IRI, sh:Literal or the combinations of these: sh:BlankNodeOrIRI, sh:BlankNodeOrLiteral, sh:IRIOrLiteral.

_NodeKindConstraintComponent :: Node Source #

A constraint component that can be used to restrict the RDF node kind of each value node.

_NodeShape :: Node Source #

A node shape is a shape that specifies constraint that need to be met with respect to focus nodes.

_NotConstraintComponent :: Node Source #

A constraint component that can be used to verify that value nodes do not conform to a given shape.

_OrConstraintComponent :: Node Source #

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.

_Parameter :: Node Source #

The class of parameter declarations, consisting of a path predicate and (possibly) information about allowed value type, cardinality and other characteristics.

_Parameterizable :: Node Source #

Superclass of components that can take parameters, especially functions and constraint components.

_PatternConstraintComponent :: Node Source #

A constraint component that can be used to verify that every value node matches a given regular expression.

_PrefixDeclaration :: Node Source #

The class of prefix declarations, consisting of pairs of a prefix with a namespace.

_PropertyConstraintComponent :: Node Source #

A constraint component that can be used to verify that all value nodes conform to the given property shape.

_PropertyGroup :: Node Source #

Instances of this class represent groups of property shapes that belong together.

_PropertyShape :: Node Source #

A property shape is a shape that specifies constraints on the values of a focus node for a given property or path.

_QualifiedMaxCountConstraintComponent :: Node Source #

A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape.

_QualifiedMinCountConstraintComponent :: Node Source #

A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape.

_ResultAnnotation :: Node Source #

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.

_SPARQLAskExecutable :: Node Source #

The class of SPARQL executables that are based on an ASK query.

_SPARQLAskValidator :: Node Source #

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.

_SPARQLConstraint :: Node Source #

The class of constraints based on SPARQL SELECT queries.

_SPARQLConstraintComponent :: Node Source #

A constraint component that can be used to define constraints based on SPARQL queries.

_SPARQLConstructExecutable :: Node Source #

The class of SPARQL executables that are based on a CONSTRUCT query.

_SPARQLExecutable :: Node Source #

The class of resources that encapsulate a SPARQL query.

_SPARQLFunction :: Node Source #

A function backed by a SPARQL query - either ASK or SELECT.

_SPARQLSelectExecutable :: Node Source #

The class of SPARQL executables based on a SELECT query.

_SPARQLSelectValidator :: Node Source #

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.

_SPARQLTarget :: Node Source #

The class of targets that are based on SPARQL SELECT queries.

_SPARQLTargetType :: Node Source #

The (meta) class for parameterizable targets that are based on SPARQL SELECT queries.

_SPARQLUpdateExecutable :: Node Source #

The class of SPARQL executables based on a SPARQL UPDATE.

_SPARQLValuesDeriver :: Node Source #

The class of objects that can be used to derive values based on a SPARQL SELECT query.

_Severity :: Node Source #

The class of validation result severity levels, including violation and warning levels.

_Shape :: Node Source #

A shape is a collection of constraints that may be targeted for certain nodes.

_Target :: Node Source #

The base class of targets such as those based on SPARQL queries.

_TargetType :: Node Source #

The (meta) class for parameterizable targets. Instances of this are instantiated as values of the sh:target property.

_UniqueLangConstraintComponent :: Node Source #

A constraint component that can be used to specify that no pair of value nodes may use the same language tag.

_ValidationReport :: Node Source #

The class of SHACL validation reports.

_ValidationResult :: Node Source #

The class of validation results.

_Validator :: Node Source #

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.

_ValuesDeriver :: Node Source #

The class of objects that can be used to derive values. SHACL itself only defines a single subclass, sh:SPARQLValuesDeriver.

_Violation :: Node Source #

The severity for a violation validation result.

_Warning :: Node Source #

The severity for a warning validation result.

_XoneConstraintComponent :: Node Source #

A constraint component that can be used to restrict the value nodes so that they conform to exactly one out of several provided shapes.

_class :: Node Source #

The type that all value nodes must have.

_in :: Node Source #

Specifies a list of allowed values so that each value node must be among the members of the given list.

alternativePath :: Node Source #

The (single) value of this property must be a list of path elements, representing the elements of alternative paths.

and :: Node Source #

RDF list of shapes to validate the value nodes against.

annotationProperty :: Node Source #

The annotation property that shall be set.

annotationValue :: Node Source #

The (default) values of the annotation property.

annotationVarName :: Node Source #

The name of the SPARQL variable from the SELECT clause that shall be used for the values.

ask :: Node Source #

The SPARQL ASK query to execute.

closed :: Node Source #

If set to true then the shape is closed.

conforms :: Node Source #

True if the validation did not produce any validation results, and false otherwise.

construct :: Node Source #

The SPARQL CONSTRUCT query to execute.

datatype :: Node Source #

Specifies an RDF datatype that all value nodes must have.

deactivated :: Node Source #

If set to true for a shape then the shape is deactivated and all nodes conform to it.

declare :: Node Source #

Links a resource with its namespace prefix declarations.

defaultValue :: Node Source #

A default value for a property, for example for user interface tools to pre-populate input fields.

derivedValues :: Node Source #

Links a constraint with a sh:ValuesDeriver used to compute the property values.

description :: Node Source #

Human-readable descriptions for the property in the context of the surrounding shape.

detail :: Node Source #

Links a result with other results that provide more details, for example to describe violations against nested shapes.

disjoint :: Node Source #

Specifies a property where the set of values must be disjoint with the value nodes.

equals :: Node Source #

Specifies a property that must have the same values as the value nodes.

flags :: Node Source #

An optional flag to be used with regular expression pattern matching.

focusNode :: Node Source #

The focus node that was validated when the result was produced.

group :: Node Source #

Can be used to link to a property group to indicate that a property shape belongs to a group of related property shapes.

hasValue :: Node Source #

Specifies a value that must be among the value nodes.

ignoredProperties :: Node Source #

An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path.

inversePath :: Node Source #

The (single) value of this property represents an inverse path (object to subject).

labelTemplate :: Node Source #

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.

languageIn :: Node Source #

Specifies a list of language tags that all value nodes must have.

lessThan :: Node Source #

Specifies a property that must have smaller values than the value nodes.

lessThanOrEquals :: Node Source #

Specifies a property that must have smaller or equal values than the value nodes.

maxCount :: Node Source #

Specifies the maximum number of values in the set of value nodes.

maxExclusive :: Node Source #

Specifies the maximum exclusive value of each value node.

maxInclusive :: Node Source #

Specifies the maximum inclusive value of each value node.

maxLength :: Node Source #

Specifies the maximum string length of each value node.

message :: Node Source #

A human-readable message (possibly with placeholders for variables) explaining the cause of the result.

minCount :: Node Source #

Specifies the minimum number of values in the set of value nodes.

minExclusive :: Node Source #

Specifies the minimum exclusive value of each value node.

minInclusive :: Node Source #

Specifies the minimum inclusive value of each value node.

minLength :: Node Source #

Specifies the minimum string length of each value node.

name :: Node Source #

Human-readable labels for the property in the context of the surrounding shape.

namespace :: Node Source #

The namespace associated with a prefix in a prefix declaration.

node :: Node Source #

Specifies the node shape that all value nodes must conform to.

nodeKind :: Node Source #

Specifies the node kind (e.g. IRI or literal) each value node.

nodeValidator :: Node Source #

The validator(s) used to evaluate a constraint in the context of a node shape.

not :: Node Source #

Specifies a shape that the value nodes must not conform to.

oneOrMorePath :: Node Source #

The (single) value of this property represents a path that is matched one or more times.

optional :: Node Source #

Indicates whether a parameter is optional.

or :: Node Source #

Specifies a list of shapes so that the value nodes must conform to at least one of the shapes.

order :: Node Source #

Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second.

parameter :: Node Source #

The parameters of a function or constraint component.

path :: Node Source #

Specifies the property path of a property shape.

pattern :: Node Source #

Specifies a regular expression pattern that the string representations of the value nodes must match.

prefix :: Node Source #

The prefix of a prefix declaration.

prefixes :: Node Source #

The prefixes that shall be applied before parsing the associated SPARQL query.

property :: Node Source #

Links a shape to its property shapes.

propertyValidator :: Node Source #

The validator(s) used to evaluate a constraint in the context of a property shape.

qualifiedMaxCount :: Node Source #

The maximum number of value nodes that can conform to the shape.

qualifiedMinCount :: Node Source #

The minimum number of value nodes that must conform to the shape.

qualifiedValueShape :: Node Source #

The shape that a specified number of values must conform to.

qualifiedValueShapesDisjoint :: Node Source #

Can be used to mark the qualified value shape to be disjoint with its sibling shapes.

result :: Node Source #

The validation results contained in a validation report.

resultAnnotation :: Node Source #

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.

resultMessage :: Node Source #

Human-readable messages explaining the cause of the result.

resultPath :: Node Source #

The path of a validation result, based on the path of the validated property shape.

resultSeverity :: Node Source #

The severity of the result, e.g. warning.

returnType :: Node Source #

The expected type of values returned by the associated function.

select :: Node Source #

The SPARQL SELECT query to execute.

severity :: Node Source #

Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation.

shacl :: Node Source #

This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language.

shapesGraph :: Node Source #

Shapes graphs that should be used when validating this data graph.

shapesGraphWellFormed :: Node Source #

If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process.

sourceConstraint :: Node Source #

The constraint that was validated when the result was produced.

sourceConstraintComponent :: Node Source #

The constraint component that is the source of the result.

sourceShape :: Node Source #

The shape that is was validated when the result was produced.

sparql :: Node Source #

Links a shape with SPARQL constraints.

suggestedShapesGraph :: Node Source #

Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements.

target :: Node Source #

Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget.

targetClass :: Node Source #

Links a shape to a class, indicating that all instances of the class must conform to the shape.

targetNode :: Node Source #

Links a shape to individual nodes, indicating that these nodes must conform to the shape.

targetObjectsOf :: Node Source #

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.

targetSubjectsOf :: Node Source #

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.

uniqueLang :: Node Source #

Specifies whether all node values must have a unique (or no) language tag.

update :: Node Source #

The SPARQL UPDATE to execute.

validator :: Node Source #

The validator(s) used to evaluate constraints of either node or property shapes.

value :: Node Source #

An RDF node that has caused the result.

xone :: Node Source #

Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes.

zeroOrMorePath :: Node Source #

The (single) value of this property represents a path that is matched zero or more times.

zeroOrOnePath :: Node Source #

The (single) value of this property represents a path that is matched zero or one times.

iris :: [Node] Source #

All IRIs in this vocabulary.