shacl 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -150,7 +150,7 @@ module RDF::Vocab
150
150
  # # @return [RDF::Vocabulary::Term]
151
151
  # attr_reader :Target
152
152
  #
153
- # # The (meta) class for parameterizable targets. Instances of this are instantiated as values of the sh:target property.
153
+ # # The (meta) class for parameterizable targets. Instances of this are instantiated as values of the sh:target property.
154
154
  # # @return [RDF::Vocabulary::Term]
155
155
  # attr_reader :TargetType
156
156
  #
@@ -746,1328 +746,1328 @@ module RDF::Vocab
746
746
 
747
747
  # Ontology definition
748
748
  ontology :"http://www.w3.org/ns/shacl#",
749
- comment: "This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language.".freeze,
750
- label: "W3C Shapes Constraint Language (SHACL) Vocabulary".freeze,
751
- "shacl:declare": term(
752
- "shacl:namespace": "http://www.w3.org/ns/shacl#".freeze,
753
- "shacl:prefix": "sh".freeze
749
+ comment: {en: "This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language."},
750
+ "http://www.w3.org/ns/shacl#declare": term(
751
+ "http://www.w3.org/ns/shacl#namespace": "http://www.w3.org/ns/shacl#",
752
+ "http://www.w3.org/ns/shacl#prefix": "sh"
754
753
  ),
755
- "shacl:suggestedShapesGraph": "http://www.w3.org/ns/shacl-shacl#".freeze,
756
- type: "owl:Ontology".freeze
754
+ "http://www.w3.org/ns/shacl#suggestedShapesGraph": "http://www.w3.org/ns/shacl-shacl#",
755
+ label: {en: "W3C Shapes Constraint Language (SHACL) Vocabulary"},
756
+ type: "http://www.w3.org/2002/07/owl#Ontology"
757
757
 
758
758
  # Class definitions
759
759
  term :AbstractResult,
760
- comment: "The base class of validation results, typically not instantiated directly.".freeze,
761
- isDefinedBy: "shacl:".freeze,
762
- label: "Abstract result".freeze,
763
- subClassOf: "rdfs:Resource".freeze,
764
- type: "rdfs:Class".freeze
760
+ comment: {en: "The base class of validation results, typically not instantiated directly."},
761
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
762
+ label: {en: "Abstract result"},
763
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
764
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
765
765
  term :ConstraintComponent,
766
- comment: "The class of constraint components.".freeze,
767
- isDefinedBy: "shacl:".freeze,
768
- label: "Constraint component".freeze,
769
- subClassOf: "shacl:Parameterizable".freeze,
770
- type: "rdfs:Class".freeze
766
+ comment: {en: "The class of constraint components."},
767
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
768
+ label: {en: "Constraint component"},
769
+ subClassOf: "http://www.w3.org/ns/shacl#Parameterizable",
770
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
771
771
  term :Function,
772
- comment: "The class of SHACL functions.".freeze,
773
- isDefinedBy: "shacl:".freeze,
774
- label: "Function".freeze,
775
- subClassOf: "shacl:Parameterizable".freeze,
776
- type: "rdfs:Class".freeze
772
+ comment: {en: "The class of SHACL functions."},
773
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
774
+ label: {en: "Function"},
775
+ subClassOf: "http://www.w3.org/ns/shacl#Parameterizable",
776
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
777
777
  term :JSConstraint,
778
- comment: "The class of constraints backed by a JavaScript function.".freeze,
779
- isDefinedBy: "shacl:".freeze,
780
- label: "JavaScript-based constraint".freeze,
781
- subClassOf: "shacl:JSExecutable".freeze,
782
- type: "rdfs:Class".freeze
778
+ comment: {en: "The class of constraints backed by a JavaScript function."},
779
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
780
+ label: {en: "JavaScript-based constraint"},
781
+ subClassOf: "http://www.w3.org/ns/shacl#JSExecutable",
782
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
783
783
  term :JSExecutable,
784
- comment: "Abstract base class of resources that declare an executable JavaScript.".freeze,
785
- isDefinedBy: "shacl:".freeze,
786
- label: "JavaScript executable".freeze,
787
- subClassOf: "rdfs:Resource".freeze,
788
- type: "rdfs:Class".freeze
784
+ comment: {en: "Abstract base class of resources that declare an executable JavaScript."},
785
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
786
+ label: {en: "JavaScript executable"},
787
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
788
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
789
789
  term :JSFunction,
790
- comment: "The class of SHACL functions that execute a JavaScript function when called.".freeze,
791
- isDefinedBy: "shacl:".freeze,
792
- label: "JavaScript function".freeze,
793
- subClassOf: ["shacl:Function".freeze, "shacl:JSExecutable".freeze],
794
- type: "rdfs:Class".freeze
790
+ comment: {en: "The class of SHACL functions that execute a JavaScript function when called."},
791
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
792
+ label: {en: "JavaScript function"},
793
+ subClassOf: ["http://www.w3.org/ns/shacl#Function", "http://www.w3.org/ns/shacl#JSExecutable"],
794
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
795
795
  term :JSLibrary,
796
- comment: "Represents a JavaScript library, typically identified by one or more URLs of files to include.".freeze,
797
- isDefinedBy: "shacl:".freeze,
798
- label: "JavaScript library".freeze,
799
- subClassOf: "rdfs:Resource".freeze,
800
- type: "rdfs:Class".freeze
796
+ comment: {en: "Represents a JavaScript library, typically identified by one or more URLs of files to include."},
797
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
798
+ label: {en: "JavaScript library"},
799
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
800
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
801
801
  term :JSRule,
802
- comment: "The class of SHACL rules expressed using JavaScript.".freeze,
803
- isDefinedBy: "shacl:".freeze,
804
- label: "JavaScript rule".freeze,
805
- subClassOf: ["shacl:JSExecutable".freeze, "shacl:Rule".freeze],
806
- type: "rdfs:Class".freeze
802
+ comment: {en: "The class of SHACL rules expressed using JavaScript."},
803
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
804
+ label: {en: "JavaScript rule"},
805
+ subClassOf: ["http://www.w3.org/ns/shacl#JSExecutable", "http://www.w3.org/ns/shacl#Rule"],
806
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
807
807
  term :JSTarget,
808
- comment: "The class of targets that are based on JavaScript functions.".freeze,
809
- isDefinedBy: "shacl:".freeze,
810
- label: "JavaScript target".freeze,
811
- subClassOf: ["shacl:JSExecutable".freeze, "shacl:Target".freeze],
812
- type: "rdfs:Class".freeze
808
+ comment: {en: "The class of targets that are based on JavaScript functions."},
809
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
810
+ label: {en: "JavaScript target"},
811
+ subClassOf: ["http://www.w3.org/ns/shacl#JSExecutable", "http://www.w3.org/ns/shacl#Target"],
812
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
813
813
  term :JSTargetType,
814
- comment: "The (meta) class for parameterizable targets that are based on JavaScript functions.".freeze,
815
- isDefinedBy: "shacl:".freeze,
816
- label: "JavaScript target type".freeze,
817
- subClassOf: ["shacl:JSExecutable".freeze, "shacl:TargetType".freeze],
818
- type: "rdfs:Class".freeze
814
+ comment: {en: "The (meta) class for parameterizable targets that are based on JavaScript functions."},
815
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
816
+ label: {en: "JavaScript target type"},
817
+ subClassOf: ["http://www.w3.org/ns/shacl#JSExecutable", "http://www.w3.org/ns/shacl#TargetType"],
818
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
819
819
  term :JSValidator,
820
- comment: "A SHACL validator based on JavaScript. This can be used to declare SHACL constraint components that perform JavaScript-based validation when used.".freeze,
821
- isDefinedBy: "shacl:".freeze,
822
- label: "JavaScript validator".freeze,
823
- subClassOf: ["shacl:JSExecutable".freeze, "shacl:Validator".freeze],
824
- type: "rdfs:Class".freeze
820
+ comment: {en: "A SHACL validator based on JavaScript. This can be used to declare SHACL constraint components that perform JavaScript-based validation when used."},
821
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
822
+ label: {en: "JavaScript validator"},
823
+ subClassOf: ["http://www.w3.org/ns/shacl#JSExecutable", "http://www.w3.org/ns/shacl#Validator"],
824
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
825
825
  term :NodeKind,
826
- 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,
827
- isDefinedBy: "shacl:".freeze,
828
- label: "Node kind".freeze,
829
- subClassOf: "rdfs:Resource".freeze,
830
- type: "rdfs:Class".freeze
826
+ comment: {en: "The class of all node kinds, including sh:BlankNode, sh:IRI, sh:Literal or the combinations of these: sh:BlankNodeOrIRI, sh:BlankNodeOrLiteral, sh:IRIOrLiteral."},
827
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
828
+ label: {en: "Node kind"},
829
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
830
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
831
831
  term :NodeShape,
832
- comment: "A node shape is a shape that specifies constraint that need to be met with respect to focus nodes.".freeze,
833
- isDefinedBy: "shacl:".freeze,
834
- label: "Node shape".freeze,
835
- subClassOf: "shacl:Shape".freeze,
836
- type: "rdfs:Class".freeze
832
+ comment: {en: "A node shape is a shape that specifies constraint that need to be met with respect to focus nodes."},
833
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
834
+ label: {en: "Node shape"},
835
+ subClassOf: "http://www.w3.org/ns/shacl#Shape",
836
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
837
837
  term :Parameter,
838
- comment: "The class of parameter declarations, consisting of a path predicate and (possibly) information about allowed value type, cardinality and other characteristics.".freeze,
839
- isDefinedBy: "shacl:".freeze,
840
- label: "Parameter".freeze,
841
- subClassOf: "shacl:PropertyShape".freeze,
842
- type: "rdfs:Class".freeze
838
+ comment: {en: "The class of parameter declarations, consisting of a path predicate and (possibly) information about allowed value type, cardinality and other characteristics."},
839
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
840
+ label: {en: "Parameter"},
841
+ subClassOf: "http://www.w3.org/ns/shacl#PropertyShape",
842
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
843
843
  term :Parameterizable,
844
- comment: "Superclass of components that can take parameters, especially functions and constraint components.".freeze,
845
- isDefinedBy: "shacl:".freeze,
846
- label: "Parameterizable".freeze,
847
- subClassOf: "rdfs:Resource".freeze,
848
- type: "rdfs:Class".freeze
844
+ comment: {en: "Superclass of components that can take parameters, especially functions and constraint components."},
845
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
846
+ label: {en: "Parameterizable"},
847
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
848
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
849
849
  term :PrefixDeclaration,
850
- comment: "The class of prefix declarations, consisting of pairs of a prefix with a namespace.".freeze,
851
- isDefinedBy: "shacl:".freeze,
852
- label: "Prefix declaration".freeze,
853
- subClassOf: "rdfs:Resource".freeze,
854
- type: "rdfs:Class".freeze
850
+ comment: {en: "The class of prefix declarations, consisting of pairs of a prefix with a namespace."},
851
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
852
+ label: {en: "Prefix declaration"},
853
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
854
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
855
855
  term :PropertyGroup,
856
- comment: "Instances of this class represent groups of property shapes that belong together.".freeze,
857
- isDefinedBy: "shacl:".freeze,
858
- label: "Property group".freeze,
859
- subClassOf: "rdfs:Resource".freeze,
860
- type: "rdfs:Class".freeze
856
+ comment: {en: "Instances of this class represent groups of property shapes that belong together."},
857
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
858
+ label: {en: "Property group"},
859
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
860
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
861
861
  term :PropertyShape,
862
- comment: "A property shape is a shape that specifies constraints on the values of a focus node for a given property or path.".freeze,
863
- isDefinedBy: "shacl:".freeze,
864
- label: "Property shape".freeze,
865
- subClassOf: "shacl:Shape".freeze,
866
- type: "rdfs:Class".freeze
862
+ comment: {en: "A property shape is a shape that specifies constraints on the values of a focus node for a given property or path."},
863
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
864
+ label: {en: "Property shape"},
865
+ subClassOf: "http://www.w3.org/ns/shacl#Shape",
866
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
867
867
  term :ResultAnnotation,
868
- 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,
869
- isDefinedBy: "shacl:".freeze,
870
- label: "Result annotation".freeze,
871
- subClassOf: "rdfs:Resource".freeze,
872
- type: "rdfs:Class".freeze
868
+ comment: {en: "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."},
869
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
870
+ label: {en: "Result annotation"},
871
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
872
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
873
873
  term :Rule,
874
- comment: "The class of SHACL rules. Never instantiated directly.".freeze,
875
- isDefinedBy: "shacl:".freeze,
876
- label: "Rule".freeze,
877
- subClassOf: "rdfs:Resource".freeze,
878
- type: "rdfs:Class".freeze
874
+ comment: {en: "The class of SHACL rules. Never instantiated directly."},
875
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
876
+ label: {en: "Rule"},
877
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
878
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
879
879
  term :SPARQLAskExecutable,
880
- comment: "The class of SPARQL executables that are based on an ASK query.".freeze,
881
- isDefinedBy: "shacl:".freeze,
882
- label: "SPARQL ASK executable".freeze,
883
- subClassOf: "shacl:SPARQLExecutable".freeze,
884
- type: "rdfs:Class".freeze
880
+ comment: {en: "The class of SPARQL executables that are based on an ASK query."},
881
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
882
+ label: {en: "SPARQL ASK executable"},
883
+ subClassOf: "http://www.w3.org/ns/shacl#SPARQLExecutable",
884
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
885
885
  term :SPARQLAskValidator,
886
- 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,
887
- isDefinedBy: "shacl:".freeze,
888
- label: "SPARQL ASK validator".freeze,
889
- subClassOf: ["shacl:SPARQLAskExecutable".freeze, "shacl:Validator".freeze],
890
- type: "rdfs:Class".freeze
886
+ comment: {en: "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."},
887
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
888
+ label: {en: "SPARQL ASK validator"},
889
+ subClassOf: ["http://www.w3.org/ns/shacl#SPARQLAskExecutable", "http://www.w3.org/ns/shacl#Validator"],
890
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
891
891
  term :SPARQLConstraint,
892
- comment: "The class of constraints based on SPARQL SELECT queries.".freeze,
893
- isDefinedBy: "shacl:".freeze,
894
- label: "SPARQL constraint".freeze,
895
- subClassOf: "shacl:SPARQLSelectExecutable".freeze,
896
- type: "rdfs:Class".freeze
892
+ comment: {en: "The class of constraints based on SPARQL SELECT queries."},
893
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
894
+ label: {en: "SPARQL constraint"},
895
+ subClassOf: "http://www.w3.org/ns/shacl#SPARQLSelectExecutable",
896
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
897
897
  term :SPARQLConstructExecutable,
898
- comment: "The class of SPARQL executables that are based on a CONSTRUCT query.".freeze,
899
- isDefinedBy: "shacl:".freeze,
900
- label: "SPARQL CONSTRUCT executable".freeze,
901
- subClassOf: "shacl:SPARQLExecutable".freeze,
902
- type: "rdfs:Class".freeze
898
+ comment: {en: "The class of SPARQL executables that are based on a CONSTRUCT query."},
899
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
900
+ label: {en: "SPARQL CONSTRUCT executable"},
901
+ subClassOf: "http://www.w3.org/ns/shacl#SPARQLExecutable",
902
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
903
903
  term :SPARQLExecutable,
904
- comment: "The class of resources that encapsulate a SPARQL query.".freeze,
905
- isDefinedBy: "shacl:".freeze,
906
- label: "SPARQL executable".freeze,
907
- subClassOf: "rdfs:Resource".freeze,
908
- type: "rdfs:Class".freeze
904
+ comment: {en: "The class of resources that encapsulate a SPARQL query."},
905
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
906
+ label: {en: "SPARQL executable"},
907
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
908
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
909
909
  term :SPARQLFunction,
910
- comment: "A function backed by a SPARQL query - either ASK or SELECT.".freeze,
911
- isDefinedBy: "shacl:".freeze,
912
- label: "SPARQL function".freeze,
913
- subClassOf: ["shacl:Function".freeze, "shacl:SPARQLAskExecutable".freeze, "shacl:SPARQLSelectExecutable".freeze],
914
- type: "rdfs:Class".freeze
910
+ comment: {en: "A function backed by a SPARQL query - either ASK or SELECT."},
911
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
912
+ label: {en: "SPARQL function"},
913
+ subClassOf: ["http://www.w3.org/ns/shacl#Function", "http://www.w3.org/ns/shacl#SPARQLAskExecutable", "http://www.w3.org/ns/shacl#SPARQLSelectExecutable"],
914
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
915
915
  term :SPARQLRule,
916
- comment: "The class of SHACL rules based on SPARQL CONSTRUCT queries.".freeze,
917
- isDefinedBy: "shacl:".freeze,
918
- label: "SPARQL CONSTRUCT rule".freeze,
919
- subClassOf: ["shacl:Rule".freeze, "shacl:SPARQLConstructExecutable".freeze],
920
- type: "rdfs:Class".freeze
916
+ comment: {en: "The class of SHACL rules based on SPARQL CONSTRUCT queries."},
917
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
918
+ label: {en: "SPARQL CONSTRUCT rule"},
919
+ subClassOf: ["http://www.w3.org/ns/shacl#Rule", "http://www.w3.org/ns/shacl#SPARQLConstructExecutable"],
920
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
921
921
  term :SPARQLSelectExecutable,
922
- comment: "The class of SPARQL executables based on a SELECT query.".freeze,
923
- isDefinedBy: "shacl:".freeze,
924
- label: "SPARQL SELECT executable".freeze,
925
- subClassOf: "shacl:SPARQLExecutable".freeze,
926
- type: "rdfs:Class".freeze
922
+ comment: {en: "The class of SPARQL executables based on a SELECT query."},
923
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
924
+ label: {en: "SPARQL SELECT executable"},
925
+ subClassOf: "http://www.w3.org/ns/shacl#SPARQLExecutable",
926
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
927
927
  term :SPARQLSelectValidator,
928
- 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,
929
- isDefinedBy: "shacl:".freeze,
930
- label: "SPARQL SELECT validator".freeze,
931
- subClassOf: ["shacl:SPARQLSelectExecutable".freeze, "shacl:Validator".freeze],
932
- type: "rdfs:Class".freeze
928
+ comment: {en: "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."},
929
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
930
+ label: {en: "SPARQL SELECT validator"},
931
+ subClassOf: ["http://www.w3.org/ns/shacl#SPARQLSelectExecutable", "http://www.w3.org/ns/shacl#Validator"],
932
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
933
933
  term :SPARQLTarget,
934
- comment: "The class of targets that are based on SPARQL queries.".freeze,
935
- isDefinedBy: "shacl:".freeze,
936
- label: "SPARQL target".freeze,
937
- subClassOf: ["shacl:SPARQLAskExecutable".freeze, "shacl:SPARQLSelectExecutable".freeze, "shacl:Target".freeze],
938
- type: "rdfs:Class".freeze
934
+ comment: {en: "The class of targets that are based on SPARQL queries."},
935
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
936
+ label: {en: "SPARQL target"},
937
+ subClassOf: ["http://www.w3.org/ns/shacl#SPARQLAskExecutable", "http://www.w3.org/ns/shacl#SPARQLSelectExecutable", "http://www.w3.org/ns/shacl#Target"],
938
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
939
939
  term :SPARQLTargetType,
940
- comment: "The (meta) class for parameterizable targets that are based on SPARQL queries.".freeze,
941
- isDefinedBy: "shacl:".freeze,
942
- label: "SPARQL target type".freeze,
943
- subClassOf: ["shacl:SPARQLAskExecutable".freeze, "shacl:SPARQLSelectExecutable".freeze, "shacl:TargetType".freeze],
944
- type: "rdfs:Class".freeze
940
+ comment: {en: "The (meta) class for parameterizable targets that are based on SPARQL queries."},
941
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
942
+ label: {en: "SPARQL target type"},
943
+ subClassOf: ["http://www.w3.org/ns/shacl#SPARQLAskExecutable", "http://www.w3.org/ns/shacl#SPARQLSelectExecutable", "http://www.w3.org/ns/shacl#TargetType"],
944
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
945
945
  term :SPARQLUpdateExecutable,
946
- comment: "The class of SPARQL executables based on a SPARQL UPDATE.".freeze,
947
- isDefinedBy: "shacl:".freeze,
948
- label: "SPARQL UPDATE executable".freeze,
949
- subClassOf: "shacl:SPARQLExecutable".freeze,
950
- type: "rdfs:Class".freeze
946
+ comment: {en: "The class of SPARQL executables based on a SPARQL UPDATE."},
947
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
948
+ label: {en: "SPARQL UPDATE executable"},
949
+ subClassOf: "http://www.w3.org/ns/shacl#SPARQLExecutable",
950
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
951
951
  term :Severity,
952
- comment: "The class of validation result severity levels, including violation and warning levels.".freeze,
953
- isDefinedBy: "shacl:".freeze,
954
- label: "Severity".freeze,
955
- subClassOf: "rdfs:Resource".freeze,
956
- type: "rdfs:Class".freeze
952
+ comment: {en: "The class of validation result severity levels, including violation and warning levels."},
953
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
954
+ label: {en: "Severity"},
955
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
956
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
957
957
  term :Shape,
958
- comment: "A shape is a collection of constraints that may be targeted for certain nodes.".freeze,
959
- isDefinedBy: "shacl:".freeze,
960
- label: "Shape".freeze,
961
- subClassOf: "rdfs:Resource".freeze,
962
- type: "rdfs:Class".freeze
958
+ comment: {en: "A shape is a collection of constraints that may be targeted for certain nodes."},
959
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
960
+ label: {en: "Shape"},
961
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
962
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
963
963
  term :Target,
964
- comment: "The base class of targets such as those based on SPARQL queries.".freeze,
965
- isDefinedBy: "shacl:".freeze,
966
- label: "Target".freeze,
967
- subClassOf: "rdfs:Resource".freeze,
968
- type: "rdfs:Class".freeze
964
+ comment: {en: "The base class of targets such as those based on SPARQL queries."},
965
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
966
+ label: {en: "Target"},
967
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
968
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
969
969
  term :TargetType,
970
- comment: "The (meta) class for parameterizable targets.\tInstances of this are instantiated as values of the sh:target property.".freeze,
971
- isDefinedBy: "shacl:".freeze,
972
- label: "Target type".freeze,
973
- subClassOf: ["rdfs:Class".freeze, "shacl:Parameterizable".freeze],
974
- type: "rdfs:Class".freeze
970
+ comment: {en: "The (meta) class for parameterizable targets.\tInstances of this are instantiated as values of the sh:target property."},
971
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
972
+ label: {en: "Target type"},
973
+ subClassOf: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/ns/shacl#Parameterizable"],
974
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
975
975
  term :TripleRule,
976
- isDefinedBy: "shacl:".freeze,
977
- label: "A rule based on triple (subject, predicate, object) pattern.".freeze,
978
- subClassOf: "shacl:Rule".freeze,
979
- type: "rdfs:Class".freeze
976
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
977
+ label: {en: "A rule based on triple (subject, predicate, object) pattern."},
978
+ subClassOf: "http://www.w3.org/ns/shacl#Rule",
979
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
980
980
  term :ValidationReport,
981
- comment: "The class of SHACL validation reports.".freeze,
982
- isDefinedBy: "shacl:".freeze,
983
- label: "Validation report".freeze,
984
- subClassOf: "rdfs:Resource".freeze,
985
- type: "rdfs:Class".freeze
981
+ comment: {en: "The class of SHACL validation reports."},
982
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
983
+ label: {en: "Validation report"},
984
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
985
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
986
986
  term :ValidationResult,
987
- comment: "The class of validation results.".freeze,
988
- isDefinedBy: "shacl:".freeze,
989
- label: "Validation result".freeze,
990
- subClassOf: "shacl:AbstractResult".freeze,
991
- type: "rdfs:Class".freeze
987
+ comment: {en: "The class of validation results."},
988
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
989
+ label: {en: "Validation result"},
990
+ subClassOf: "http://www.w3.org/ns/shacl#AbstractResult",
991
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
992
992
  term :Validator,
993
- 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,
994
- isDefinedBy: "shacl:".freeze,
995
- label: "Validator".freeze,
996
- subClassOf: "rdfs:Resource".freeze,
997
- type: "rdfs:Class".freeze
993
+ comment: {en: "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."},
994
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
995
+ label: {en: "Validator"},
996
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
997
+ type: "http://www.w3.org/2000/01/rdf-schema#Class"
998
998
 
999
999
  # Property definitions
1000
1000
  property :alternativePath,
1001
- comment: "The (single) value of this property must be a list of path elements, representing the elements of alternative paths.".freeze,
1002
- isDefinedBy: "shacl:".freeze,
1003
- label: "alternative path".freeze,
1004
- range: "rdf:List".freeze,
1005
- type: "rdf:Property".freeze
1001
+ comment: {en: "The (single) value of this property must be a list of path elements, representing the elements of alternative paths."},
1002
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1003
+ label: {en: "alternative path"},
1004
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
1005
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1006
1006
  property :and,
1007
- comment: "RDF list of shapes to validate the value nodes against.".freeze,
1008
- isDefinedBy: "shacl:".freeze,
1009
- label: "and".freeze,
1010
- range: "rdf:List".freeze,
1011
- type: "rdf:Property".freeze
1007
+ comment: {en: "RDF list of shapes to validate the value nodes against."},
1008
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1009
+ label: {en: "and"},
1010
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
1011
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1012
1012
  property :annotationProperty,
1013
- comment: "The annotation property that shall be set.".freeze,
1014
- domain: "shacl:ResultAnnotation".freeze,
1015
- isDefinedBy: "shacl:".freeze,
1016
- label: "annotation property".freeze,
1017
- range: "rdf:Property".freeze,
1018
- type: "rdf:Property".freeze
1013
+ comment: {en: "The annotation property that shall be set."},
1014
+ domain: "http://www.w3.org/ns/shacl#ResultAnnotation",
1015
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1016
+ label: {en: "annotation property"},
1017
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
1018
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1019
1019
  property :annotationValue,
1020
- comment: "The (default) values of the annotation property.".freeze,
1021
- domain: "shacl:ResultAnnotation".freeze,
1022
- isDefinedBy: "shacl:".freeze,
1023
- label: "annotation value".freeze,
1024
- type: "rdf:Property".freeze
1020
+ comment: {en: "The (default) values of the annotation property."},
1021
+ domain: "http://www.w3.org/ns/shacl#ResultAnnotation",
1022
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1023
+ label: {en: "annotation value"},
1024
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1025
1025
  property :annotationVarName,
1026
- comment: "The name of the SPARQL variable from the SELECT clause that shall be used for the values.".freeze,
1027
- domain: "shacl:ResultAnnotation".freeze,
1028
- isDefinedBy: "shacl:".freeze,
1029
- label: "annotation variable name".freeze,
1030
- range: "xsd:string".freeze,
1031
- type: "rdf:Property".freeze
1026
+ comment: {en: "The name of the SPARQL variable from the SELECT clause that shall be used for the values."},
1027
+ domain: "http://www.w3.org/ns/shacl#ResultAnnotation",
1028
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1029
+ label: {en: "annotation variable name"},
1030
+ range: "http://www.w3.org/2001/XMLSchema#string",
1031
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1032
1032
  property :ask,
1033
- comment: "The SPARQL ASK query to execute.".freeze,
1034
- domain: "shacl:SPARQLAskExecutable".freeze,
1035
- isDefinedBy: "shacl:".freeze,
1036
- label: "ask".freeze,
1037
- range: "xsd:string".freeze,
1038
- type: "rdf:Property".freeze
1033
+ comment: {en: "The SPARQL ASK query to execute."},
1034
+ domain: "http://www.w3.org/ns/shacl#SPARQLAskExecutable",
1035
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1036
+ label: {en: "ask"},
1037
+ range: "http://www.w3.org/2001/XMLSchema#string",
1038
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1039
1039
  property :class,
1040
- comment: "The type that all value nodes must have.".freeze,
1041
- isDefinedBy: "shacl:".freeze,
1042
- label: "class".freeze,
1043
- range: "rdfs:Class".freeze,
1044
- type: "rdf:Property".freeze
1040
+ comment: {en: "The type that all value nodes must have."},
1041
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1042
+ label: {en: "class"},
1043
+ range: "http://www.w3.org/2000/01/rdf-schema#Class",
1044
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1045
1045
  property :closed,
1046
- comment: "If set to true then the shape is closed.".freeze,
1047
- isDefinedBy: "shacl:".freeze,
1048
- label: "closed".freeze,
1049
- range: "xsd:boolean".freeze,
1050
- type: "rdf:Property".freeze
1046
+ comment: {en: "If set to true then the shape is closed."},
1047
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1048
+ label: {en: "closed"},
1049
+ range: "http://www.w3.org/2001/XMLSchema#boolean",
1050
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1051
1051
  property :condition,
1052
- comment: "The shapes that the focus nodes need to conform to before a rule is executed on them.".freeze,
1053
- domain: "shacl:Rule".freeze,
1054
- isDefinedBy: "shacl:".freeze,
1055
- label: "condition".freeze,
1056
- range: "shacl:Shape".freeze,
1057
- type: "rdf:Property".freeze
1052
+ comment: {en: "The shapes that the focus nodes need to conform to before a rule is executed on them."},
1053
+ domain: "http://www.w3.org/ns/shacl#Rule",
1054
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1055
+ label: {en: "condition"},
1056
+ range: "http://www.w3.org/ns/shacl#Shape",
1057
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1058
1058
  property :conforms,
1059
- comment: "True if the validation did not produce any validation results, and false otherwise.".freeze,
1060
- domain: "shacl:ValidationReport".freeze,
1061
- isDefinedBy: "shacl:".freeze,
1062
- label: "conforms".freeze,
1063
- range: "xsd:boolean".freeze,
1064
- type: "rdf:Property".freeze
1059
+ comment: {en: "True if the validation did not produce any validation results, and false otherwise."},
1060
+ domain: "http://www.w3.org/ns/shacl#ValidationReport",
1061
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1062
+ label: {en: "conforms"},
1063
+ range: "http://www.w3.org/2001/XMLSchema#boolean",
1064
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1065
1065
  property :construct,
1066
- comment: "The SPARQL CONSTRUCT query to execute.".freeze,
1067
- domain: "shacl:SPARQLConstructExecutable".freeze,
1068
- isDefinedBy: "shacl:".freeze,
1069
- label: "construct".freeze,
1070
- range: "xsd:string".freeze,
1071
- type: "rdf:Property".freeze
1066
+ comment: {en: "The SPARQL CONSTRUCT query to execute."},
1067
+ domain: "http://www.w3.org/ns/shacl#SPARQLConstructExecutable",
1068
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1069
+ label: {en: "construct"},
1070
+ range: "http://www.w3.org/2001/XMLSchema#string",
1071
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1072
1072
  property :datatype,
1073
- comment: "Specifies an RDF datatype that all value nodes must have.".freeze,
1074
- isDefinedBy: "shacl:".freeze,
1075
- label: "datatype".freeze,
1076
- range: "rdfs:Datatype".freeze,
1077
- type: "rdf:Property".freeze
1073
+ comment: {en: "Specifies an RDF datatype that all value nodes must have."},
1074
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1075
+ label: {en: "datatype"},
1076
+ range: "http://www.w3.org/2000/01/rdf-schema#Datatype",
1077
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1078
1078
  property :deactivated,
1079
- comment: "If set to true then all nodes conform to this.".freeze,
1080
- isDefinedBy: "shacl:".freeze,
1081
- label: "deactivated".freeze,
1082
- range: "xsd:boolean".freeze,
1083
- type: "rdf:Property".freeze
1079
+ comment: {en: "If set to true then all nodes conform to this."},
1080
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1081
+ label: {en: "deactivated"},
1082
+ range: "http://www.w3.org/2001/XMLSchema#boolean",
1083
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1084
1084
  property :declare,
1085
- comment: "Links a resource with its namespace prefix declarations.".freeze,
1086
- domain: "owl:Ontology".freeze,
1087
- isDefinedBy: "shacl:".freeze,
1088
- label: "declare".freeze,
1089
- range: "shacl:PrefixDeclaration".freeze,
1090
- type: "rdf:Property".freeze
1085
+ comment: {en: "Links a resource with its namespace prefix declarations."},
1086
+ domain: "http://www.w3.org/2002/07/owl#Ontology",
1087
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1088
+ label: {en: "declare"},
1089
+ range: "http://www.w3.org/ns/shacl#PrefixDeclaration",
1090
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1091
1091
  property :defaultValue,
1092
- comment: "A default value for a property, for example for user interface tools to pre-populate input fields.".freeze,
1093
- domain: "shacl:PropertyShape".freeze,
1094
- isDefinedBy: "shacl:".freeze,
1095
- label: "default value".freeze,
1096
- type: "rdf:Property".freeze
1092
+ comment: {en: "A default value for a property, for example for user interface tools to pre-populate input fields."},
1093
+ domain: "http://www.w3.org/ns/shacl#PropertyShape",
1094
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1095
+ label: {en: "default value"},
1096
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1097
1097
  property :description,
1098
- comment: "Human-readable descriptions for the property in the context of the surrounding shape.".freeze,
1099
- domain: "shacl:PropertyShape".freeze,
1100
- isDefinedBy: "shacl:".freeze,
1101
- label: "description".freeze,
1102
- type: "rdf:Property".freeze
1098
+ comment: {en: "Human-readable descriptions for the property in the context of the surrounding shape."},
1099
+ domain: "http://www.w3.org/ns/shacl#PropertyShape",
1100
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1101
+ label: {en: "description"},
1102
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1103
1103
  property :detail,
1104
- comment: "Links a result with other results that provide more details, for example to describe violations against nested shapes.".freeze,
1105
- domain: "shacl:AbstractResult".freeze,
1106
- isDefinedBy: "shacl:".freeze,
1107
- label: "detail".freeze,
1108
- range: "shacl:AbstractResult".freeze,
1109
- type: "rdf:Property".freeze
1104
+ comment: {en: "Links a result with other results that provide more details, for example to describe violations against nested shapes."},
1105
+ domain: "http://www.w3.org/ns/shacl#AbstractResult",
1106
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1107
+ label: {en: "detail"},
1108
+ range: "http://www.w3.org/ns/shacl#AbstractResult",
1109
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1110
1110
  property :disjoint,
1111
- comment: "Specifies a property where the set of values must be disjoint with the value nodes.".freeze,
1112
- isDefinedBy: "shacl:".freeze,
1113
- label: "disjoint".freeze,
1114
- range: "rdf:Property".freeze,
1115
- type: "rdf:Property".freeze
1111
+ comment: {en: "Specifies a property where the set of values must be disjoint with the value nodes."},
1112
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1113
+ label: {en: "disjoint"},
1114
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
1115
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1116
1116
  property :entailment,
1117
- comment: "An entailment regime that indicates what kind of inferencing is required by a shapes graph.".freeze,
1118
- domain: "owl:Ontology".freeze,
1119
- isDefinedBy: "shacl:".freeze,
1120
- label: "entailment".freeze,
1121
- range: "rdfs:Resource".freeze,
1122
- type: "rdf:Property".freeze
1117
+ comment: {en: "An entailment regime that indicates what kind of inferencing is required by a shapes graph."},
1118
+ domain: "http://www.w3.org/2002/07/owl#Ontology",
1119
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1120
+ label: {en: "entailment"},
1121
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
1122
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1123
1123
  property :equals,
1124
- comment: "Specifies a property that must have the same values as the value nodes.".freeze,
1125
- isDefinedBy: "shacl:".freeze,
1126
- label: "equals".freeze,
1127
- range: "rdf:Property".freeze,
1128
- type: "rdf:Property".freeze
1124
+ comment: {en: "Specifies a property that must have the same values as the value nodes."},
1125
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1126
+ label: {en: "equals"},
1127
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
1128
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1129
1129
  property :expression,
1130
- comment: "The node expression that must return true for the value nodes.".freeze,
1131
- isDefinedBy: "shacl:".freeze,
1132
- label: "expression".freeze,
1133
- type: "rdf:Property".freeze
1130
+ comment: {en: "The node expression that must return true for the value nodes."},
1131
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1132
+ label: {en: "expression"},
1133
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1134
1134
  property :filterShape,
1135
- comment: "The shape that all input nodes of the expression need to conform to.".freeze,
1136
- isDefinedBy: "shacl:".freeze,
1137
- label: "filter shape".freeze,
1138
- range: "shacl:Shape".freeze,
1139
- type: "rdf:Property".freeze
1135
+ comment: {en: "The shape that all input nodes of the expression need to conform to."},
1136
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1137
+ label: {en: "filter shape"},
1138
+ range: "http://www.w3.org/ns/shacl#Shape",
1139
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1140
1140
  property :flags,
1141
- comment: "An optional flag to be used with regular expression pattern matching.".freeze,
1142
- isDefinedBy: "shacl:".freeze,
1143
- label: "flags".freeze,
1144
- range: "xsd:string".freeze,
1145
- type: "rdf:Property".freeze
1141
+ comment: {en: "An optional flag to be used with regular expression pattern matching."},
1142
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1143
+ label: {en: "flags"},
1144
+ range: "http://www.w3.org/2001/XMLSchema#string",
1145
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1146
1146
  property :focusNode,
1147
- comment: "The focus node that was validated when the result was produced.".freeze,
1148
- domain: "shacl:AbstractResult".freeze,
1149
- isDefinedBy: "shacl:".freeze,
1150
- label: "focus node".freeze,
1151
- type: "rdf:Property".freeze
1147
+ comment: {en: "The focus node that was validated when the result was produced."},
1148
+ domain: "http://www.w3.org/ns/shacl#AbstractResult",
1149
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1150
+ label: {en: "focus node"},
1151
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1152
1152
  property :group,
1153
- 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,
1154
- domain: "shacl:PropertyShape".freeze,
1155
- isDefinedBy: "shacl:".freeze,
1156
- label: "group".freeze,
1157
- range: "shacl:PropertyGroup".freeze,
1158
- type: "rdf:Property".freeze
1153
+ comment: {en: "Can be used to link to a property group to indicate that a property shape belongs to a group of related property shapes."},
1154
+ domain: "http://www.w3.org/ns/shacl#PropertyShape",
1155
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1156
+ label: {en: "group"},
1157
+ range: "http://www.w3.org/ns/shacl#PropertyGroup",
1158
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1159
1159
  property :hasValue,
1160
- comment: "Specifies a value that must be among the value nodes.".freeze,
1161
- isDefinedBy: "shacl:".freeze,
1162
- label: "has value".freeze,
1163
- type: "rdf:Property".freeze
1160
+ comment: {en: "Specifies a value that must be among the value nodes."},
1161
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1162
+ label: {en: "has value"},
1163
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1164
1164
  property :ignoredProperties,
1165
- comment: "An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path.".freeze,
1166
- isDefinedBy: "shacl:".freeze,
1167
- label: "ignored properties".freeze,
1168
- range: "rdf:List".freeze,
1169
- type: "rdf:Property".freeze
1165
+ comment: {en: "An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path."},
1166
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1167
+ label: {en: "ignored properties"},
1168
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
1169
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1170
1170
  property :in,
1171
- comment: "Specifies a list of allowed values so that each value node must be among the members of the given list.".freeze,
1172
- isDefinedBy: "shacl:".freeze,
1173
- label: "in".freeze,
1174
- range: "rdf:List".freeze,
1175
- type: "rdf:Property".freeze
1171
+ comment: {en: "Specifies a list of allowed values so that each value node must be among the members of the given list."},
1172
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1173
+ label: {en: "in"},
1174
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
1175
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1176
1176
  property :intersection,
1177
- comment: "A list of node expressions that shall be intersected.".freeze,
1178
- isDefinedBy: "shacl:".freeze,
1179
- label: "intersection".freeze,
1180
- type: "rdf:Property".freeze
1177
+ comment: {en: "A list of node expressions that shall be intersected."},
1178
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1179
+ label: {en: "intersection"},
1180
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1181
1181
  property :inversePath,
1182
- comment: "The (single) value of this property represents an inverse path (object to subject).".freeze,
1183
- isDefinedBy: "shacl:".freeze,
1184
- label: "inverse path".freeze,
1185
- range: "rdfs:Resource".freeze,
1186
- type: "rdf:Property".freeze
1182
+ comment: {en: "The (single) value of this property represents an inverse path (object to subject)."},
1183
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1184
+ label: {en: "inverse path"},
1185
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
1186
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1187
1187
  property :js,
1188
- comment: "Constraints expressed in JavaScript.".freeze,
1189
- isDefinedBy: "shacl:".freeze,
1190
- label: "JavaScript constraint".freeze,
1191
- range: "shacl:JSConstraint".freeze,
1192
- type: "rdf:Property".freeze
1188
+ comment: "Constraints expressed in JavaScript.",
1189
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1190
+ label: {en: "JavaScript constraint"},
1191
+ range: "http://www.w3.org/ns/shacl#JSConstraint",
1192
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1193
1193
  property :jsFunctionName,
1194
- comment: "The name of the JavaScript function to execute.".freeze,
1195
- domain: "shacl:JSExecutable".freeze,
1196
- isDefinedBy: "shacl:".freeze,
1197
- label: "JavaScript function name".freeze,
1198
- range: "xsd:string".freeze,
1199
- type: "rdf:Property".freeze
1194
+ comment: {en: "The name of the JavaScript function to execute."},
1195
+ domain: "http://www.w3.org/ns/shacl#JSExecutable",
1196
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1197
+ label: {en: "JavaScript function name"},
1198
+ range: "http://www.w3.org/2001/XMLSchema#string",
1199
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1200
1200
  property :jsLibrary,
1201
- comment: "Declares which JavaScript libraries are needed to execute this.".freeze,
1202
- isDefinedBy: "shacl:".freeze,
1203
- label: "JavaScript library".freeze,
1204
- range: "shacl:JSLibrary".freeze,
1205
- type: "rdf:Property".freeze
1201
+ comment: {en: "Declares which JavaScript libraries are needed to execute this."},
1202
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1203
+ label: {en: "JavaScript library"},
1204
+ range: "http://www.w3.org/ns/shacl#JSLibrary",
1205
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1206
1206
  property :jsLibraryURL,
1207
- 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,
1208
- domain: "shacl:JSLibrary".freeze,
1209
- isDefinedBy: "shacl:".freeze,
1210
- label: "JavaScript library URL".freeze,
1211
- range: "xsd:anyURI".freeze,
1212
- type: "rdf:Property".freeze
1207
+ comment: {en: "Declares the URLs of a JavaScript library. This should be the absolute URL of a JavaScript file. Implementations may redirect those to local files."},
1208
+ domain: "http://www.w3.org/ns/shacl#JSLibrary",
1209
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1210
+ label: {en: "JavaScript library URL"},
1211
+ range: "http://www.w3.org/2001/XMLSchema#anyURI",
1212
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1213
1213
  property :labelTemplate,
1214
- 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,
1215
- domain: "shacl:Parameterizable".freeze,
1216
- isDefinedBy: "shacl:".freeze,
1217
- label: "label template".freeze,
1218
- type: "rdf:Property".freeze
1214
+ comment: {en: "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."},
1215
+ domain: "http://www.w3.org/ns/shacl#Parameterizable",
1216
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1217
+ label: {en: "label template"},
1218
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1219
1219
  property :languageIn,
1220
- comment: "Specifies a list of language tags that all value nodes must have.".freeze,
1221
- isDefinedBy: "shacl:".freeze,
1222
- label: "language in".freeze,
1223
- range: "rdf:List".freeze,
1224
- type: "rdf:Property".freeze
1220
+ comment: {en: "Specifies a list of language tags that all value nodes must have."},
1221
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1222
+ label: {en: "language in"},
1223
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
1224
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1225
1225
  property :lessThan,
1226
- comment: "Specifies a property that must have smaller values than the value nodes.".freeze,
1227
- isDefinedBy: "shacl:".freeze,
1228
- label: "less than".freeze,
1229
- range: "rdf:Property".freeze,
1230
- type: "rdf:Property".freeze
1226
+ comment: {en: "Specifies a property that must have smaller values than the value nodes."},
1227
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1228
+ label: {en: "less than"},
1229
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
1230
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1231
1231
  property :lessThanOrEquals,
1232
- comment: "Specifies a property that must have smaller or equal values than the value nodes.".freeze,
1233
- isDefinedBy: "shacl:".freeze,
1234
- label: "less than or equals".freeze,
1235
- range: "rdf:Property".freeze,
1236
- type: "rdf:Property".freeze
1232
+ comment: {en: "Specifies a property that must have smaller or equal values than the value nodes."},
1233
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1234
+ label: {en: "less than or equals"},
1235
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
1236
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1237
1237
  property :maxCount,
1238
- comment: "Specifies the maximum number of values in the set of value nodes.".freeze,
1239
- isDefinedBy: "shacl:".freeze,
1240
- label: "max count".freeze,
1241
- range: "xsd:integer".freeze,
1242
- type: "rdf:Property".freeze
1238
+ comment: {en: "Specifies the maximum number of values in the set of value nodes."},
1239
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1240
+ label: {en: "max count"},
1241
+ range: "http://www.w3.org/2001/XMLSchema#integer",
1242
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1243
1243
  property :maxExclusive,
1244
- comment: "Specifies the maximum exclusive value of each value node.".freeze,
1245
- isDefinedBy: "shacl:".freeze,
1246
- label: "max exclusive".freeze,
1247
- type: "rdf:Property".freeze
1244
+ comment: {en: "Specifies the maximum exclusive value of each value node."},
1245
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1246
+ label: {en: "max exclusive"},
1247
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1248
1248
  property :maxInclusive,
1249
- comment: "Specifies the maximum inclusive value of each value node.".freeze,
1250
- isDefinedBy: "shacl:".freeze,
1251
- label: "max inclusive".freeze,
1252
- type: "rdf:Property".freeze
1249
+ comment: {en: "Specifies the maximum inclusive value of each value node."},
1250
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1251
+ label: {en: "max inclusive"},
1252
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1253
1253
  property :maxLength,
1254
- comment: "Specifies the maximum string length of each value node.".freeze,
1255
- isDefinedBy: "shacl:".freeze,
1256
- label: "max length".freeze,
1257
- range: "xsd:integer".freeze,
1258
- type: "rdf:Property".freeze
1254
+ comment: {en: "Specifies the maximum string length of each value node."},
1255
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1256
+ label: {en: "max length"},
1257
+ range: "http://www.w3.org/2001/XMLSchema#integer",
1258
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1259
1259
  property :message,
1260
- comment: "A human-readable message (possibly with placeholders for variables) explaining the cause of the result.".freeze,
1261
- isDefinedBy: "shacl:".freeze,
1262
- label: "message".freeze,
1263
- type: "rdf:Property".freeze
1260
+ comment: {en: "A human-readable message (possibly with placeholders for variables) explaining the cause of the result."},
1261
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1262
+ label: {en: "message"},
1263
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1264
1264
  property :minCount,
1265
- comment: "Specifies the minimum number of values in the set of value nodes.".freeze,
1266
- isDefinedBy: "shacl:".freeze,
1267
- label: "min count".freeze,
1268
- range: "xsd:integer".freeze,
1269
- type: "rdf:Property".freeze
1265
+ comment: {en: "Specifies the minimum number of values in the set of value nodes."},
1266
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1267
+ label: {en: "min count"},
1268
+ range: "http://www.w3.org/2001/XMLSchema#integer",
1269
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1270
1270
  property :minExclusive,
1271
- comment: "Specifies the minimum exclusive value of each value node.".freeze,
1272
- isDefinedBy: "shacl:".freeze,
1273
- label: "min exclusive".freeze,
1274
- type: "rdf:Property".freeze
1271
+ comment: {en: "Specifies the minimum exclusive value of each value node."},
1272
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1273
+ label: {en: "min exclusive"},
1274
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1275
1275
  property :minInclusive,
1276
- comment: "Specifies the minimum inclusive value of each value node.".freeze,
1277
- isDefinedBy: "shacl:".freeze,
1278
- label: "min inclusive".freeze,
1279
- type: "rdf:Property".freeze
1276
+ comment: {en: "Specifies the minimum inclusive value of each value node."},
1277
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1278
+ label: {en: "min inclusive"},
1279
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1280
1280
  property :minLength,
1281
- comment: "Specifies the minimum string length of each value node.".freeze,
1282
- isDefinedBy: "shacl:".freeze,
1283
- label: "min length".freeze,
1284
- range: "xsd:integer".freeze,
1285
- type: "rdf:Property".freeze
1281
+ comment: {en: "Specifies the minimum string length of each value node."},
1282
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1283
+ label: {en: "min length"},
1284
+ range: "http://www.w3.org/2001/XMLSchema#integer",
1285
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1286
1286
  property :name,
1287
- comment: "Human-readable labels for the property in the context of the surrounding shape.".freeze,
1288
- domain: "shacl:PropertyShape".freeze,
1289
- isDefinedBy: "shacl:".freeze,
1290
- label: "name".freeze,
1291
- type: "rdf:Property".freeze
1287
+ comment: {en: "Human-readable labels for the property in the context of the surrounding shape."},
1288
+ domain: "http://www.w3.org/ns/shacl#PropertyShape",
1289
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1290
+ label: {en: "name"},
1291
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1292
1292
  property :namespace,
1293
- comment: "The namespace associated with a prefix in a prefix declaration.".freeze,
1294
- domain: "shacl:PrefixDeclaration".freeze,
1295
- isDefinedBy: "shacl:".freeze,
1296
- label: "namespace".freeze,
1297
- range: "xsd:anyURI".freeze,
1298
- type: "rdf:Property".freeze
1293
+ comment: {en: "The namespace associated with a prefix in a prefix declaration."},
1294
+ domain: "http://www.w3.org/ns/shacl#PrefixDeclaration",
1295
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1296
+ label: {en: "namespace"},
1297
+ range: "http://www.w3.org/2001/XMLSchema#anyURI",
1298
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1299
1299
  property :node,
1300
- comment: "Specifies the node shape that all value nodes must conform to.".freeze,
1301
- isDefinedBy: "shacl:".freeze,
1302
- label: "node".freeze,
1303
- range: "shacl:NodeShape".freeze,
1304
- type: "rdf:Property".freeze
1300
+ comment: {en: "Specifies the node shape that all value nodes must conform to."},
1301
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1302
+ label: {en: "node"},
1303
+ range: "http://www.w3.org/ns/shacl#NodeShape",
1304
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1305
1305
  property :nodeKind,
1306
- comment: "Specifies the node kind (e.g. IRI or literal) each value node.".freeze,
1307
- isDefinedBy: "shacl:".freeze,
1308
- label: "node kind".freeze,
1309
- range: "shacl:NodeKind".freeze,
1310
- type: "rdf:Property".freeze
1306
+ comment: {en: "Specifies the node kind (e.g. IRI or literal) each value node."},
1307
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1308
+ label: {en: "node kind"},
1309
+ range: "http://www.w3.org/ns/shacl#NodeKind",
1310
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1311
1311
  property :nodeValidator,
1312
- comment: "The validator(s) used to evaluate a constraint in the context of a node shape.".freeze,
1313
- domain: "shacl:ConstraintComponent".freeze,
1314
- isDefinedBy: "shacl:".freeze,
1315
- label: "shape validator".freeze,
1316
- range: "shacl:Validator".freeze,
1317
- type: "rdf:Property".freeze
1312
+ comment: {en: "The validator(s) used to evaluate a constraint in the context of a node shape."},
1313
+ domain: "http://www.w3.org/ns/shacl#ConstraintComponent",
1314
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1315
+ label: {en: "shape validator"},
1316
+ range: "http://www.w3.org/ns/shacl#Validator",
1317
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1318
1318
  property :nodes,
1319
- comment: "The node expression producing the input nodes of a filter shape expression.".freeze,
1320
- isDefinedBy: "shacl:".freeze,
1321
- label: "nodes".freeze,
1322
- type: "rdf:Property".freeze
1319
+ comment: {en: "The node expression producing the input nodes of a filter shape expression."},
1320
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1321
+ label: {en: "nodes"},
1322
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1323
1323
  property :not,
1324
- comment: "Specifies a shape that the value nodes must not conform to.".freeze,
1325
- isDefinedBy: "shacl:".freeze,
1326
- label: "not".freeze,
1327
- range: "shacl:Shape".freeze,
1328
- type: "rdf:Property".freeze
1324
+ comment: {en: "Specifies a shape that the value nodes must not conform to."},
1325
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1326
+ label: {en: "not"},
1327
+ range: "http://www.w3.org/ns/shacl#Shape",
1328
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1329
1329
  property :object,
1330
- comment: "An expression producing the nodes that shall be inferred as objects.".freeze,
1331
- domain: "shacl:TripleRule".freeze,
1332
- isDefinedBy: "shacl:".freeze,
1333
- label: "object".freeze,
1334
- type: "rdf:Property".freeze
1330
+ comment: {en: "An expression producing the nodes that shall be inferred as objects."},
1331
+ domain: "http://www.w3.org/ns/shacl#TripleRule",
1332
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1333
+ label: {en: "object"},
1334
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1335
1335
  property :oneOrMorePath,
1336
- comment: "The (single) value of this property represents a path that is matched one or more times.".freeze,
1337
- isDefinedBy: "shacl:".freeze,
1338
- label: "one or more path".freeze,
1339
- range: "rdfs:Resource".freeze,
1340
- type: "rdf:Property".freeze
1336
+ comment: {en: "The (single) value of this property represents a path that is matched one or more times."},
1337
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1338
+ label: {en: "one or more path"},
1339
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
1340
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1341
1341
  property :optional,
1342
- comment: "Indicates whether a parameter is optional.".freeze,
1343
- domain: "shacl:Parameter".freeze,
1344
- isDefinedBy: "shacl:".freeze,
1345
- label: "optional".freeze,
1346
- range: "xsd:boolean".freeze,
1347
- type: "rdf:Property".freeze
1342
+ comment: {en: "Indicates whether a parameter is optional."},
1343
+ domain: "http://www.w3.org/ns/shacl#Parameter",
1344
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1345
+ label: {en: "optional"},
1346
+ range: "http://www.w3.org/2001/XMLSchema#boolean",
1347
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1348
1348
  property :or,
1349
- comment: "Specifies a list of shapes so that the value nodes must conform to at least one of the shapes.".freeze,
1350
- isDefinedBy: "shacl:".freeze,
1351
- label: "or".freeze,
1352
- range: "rdf:List".freeze,
1353
- type: "rdf:Property".freeze
1349
+ comment: {en: "Specifies a list of shapes so that the value nodes must conform to at least one of the shapes."},
1350
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1351
+ label: {en: "or"},
1352
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
1353
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1354
1354
  property :order,
1355
- comment: "Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second.".freeze,
1356
- isDefinedBy: "shacl:".freeze,
1357
- label: "order".freeze,
1358
- type: "rdf:Property".freeze
1355
+ comment: {en: "Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second."},
1356
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1357
+ label: {en: "order"},
1358
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1359
1359
  property :parameter,
1360
- comment: "The parameters of a function or constraint component.".freeze,
1361
- domain: "shacl:Parameterizable".freeze,
1362
- isDefinedBy: "shacl:".freeze,
1363
- label: "parameter".freeze,
1364
- range: "shacl:Parameter".freeze,
1365
- type: "rdf:Property".freeze
1360
+ comment: {en: "The parameters of a function or constraint component."},
1361
+ domain: "http://www.w3.org/ns/shacl#Parameterizable",
1362
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1363
+ label: {en: "parameter"},
1364
+ range: "http://www.w3.org/ns/shacl#Parameter",
1365
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1366
1366
  property :path,
1367
- comment: "Specifies the property path of a property shape.".freeze,
1368
- domain: "shacl:PropertyShape".freeze,
1369
- isDefinedBy: "shacl:".freeze,
1370
- label: "path".freeze,
1371
- range: "rdfs:Resource".freeze,
1372
- type: "rdf:Property".freeze
1367
+ comment: {en: "Specifies the property path of a property shape."},
1368
+ domain: "http://www.w3.org/ns/shacl#PropertyShape",
1369
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1370
+ label: {en: "path"},
1371
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
1372
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1373
1373
  property :pattern,
1374
- comment: "Specifies a regular expression pattern that the string representations of the value nodes must match.".freeze,
1375
- isDefinedBy: "shacl:".freeze,
1376
- label: "pattern".freeze,
1377
- range: "xsd:string".freeze,
1378
- type: "rdf:Property".freeze
1374
+ comment: {en: "Specifies a regular expression pattern that the string representations of the value nodes must match."},
1375
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1376
+ label: {en: "pattern"},
1377
+ range: "http://www.w3.org/2001/XMLSchema#string",
1378
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1379
1379
  property :predicate,
1380
- comment: "An expression producing the properties that shall be inferred as predicates.".freeze,
1381
- domain: "shacl:TripleRule".freeze,
1382
- isDefinedBy: "shacl:".freeze,
1383
- label: "predicate".freeze,
1384
- type: "rdf:Property".freeze
1380
+ comment: {en: "An expression producing the properties that shall be inferred as predicates."},
1381
+ domain: "http://www.w3.org/ns/shacl#TripleRule",
1382
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1383
+ label: {en: "predicate"},
1384
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1385
1385
  property :prefix,
1386
- comment: "The prefix of a prefix declaration.".freeze,
1387
- domain: "shacl:PrefixDeclaration".freeze,
1388
- isDefinedBy: "shacl:".freeze,
1389
- label: "prefix".freeze,
1390
- range: "xsd:string".freeze,
1391
- type: "rdf:Property".freeze
1386
+ comment: {en: "The prefix of a prefix declaration."},
1387
+ domain: "http://www.w3.org/ns/shacl#PrefixDeclaration",
1388
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1389
+ label: {en: "prefix"},
1390
+ range: "http://www.w3.org/2001/XMLSchema#string",
1391
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1392
1392
  property :prefixes,
1393
- comment: "The prefixes that shall be applied before parsing the associated SPARQL query.".freeze,
1394
- domain: "shacl:SPARQLExecutable".freeze,
1395
- isDefinedBy: "shacl:".freeze,
1396
- label: "prefixes".freeze,
1397
- range: "owl:Ontology".freeze,
1398
- type: "rdf:Property".freeze
1393
+ comment: {en: "The prefixes that shall be applied before parsing the associated SPARQL query."},
1394
+ domain: "http://www.w3.org/ns/shacl#SPARQLExecutable",
1395
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1396
+ label: {en: "prefixes"},
1397
+ range: "http://www.w3.org/2002/07/owl#Ontology",
1398
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1399
1399
  property :property,
1400
- comment: "Links a shape to its property shapes.".freeze,
1401
- domain: "shacl:Shape".freeze,
1402
- isDefinedBy: "shacl:".freeze,
1403
- label: "property".freeze,
1404
- range: "shacl:PropertyShape".freeze,
1405
- type: "rdf:Property".freeze
1400
+ comment: {en: "Links a shape to its property shapes."},
1401
+ domain: "http://www.w3.org/ns/shacl#Shape",
1402
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1403
+ label: {en: "property"},
1404
+ range: "http://www.w3.org/ns/shacl#PropertyShape",
1405
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1406
1406
  property :propertyValidator,
1407
- comment: "The validator(s) used to evaluate a constraint in the context of a property shape.".freeze,
1408
- domain: "shacl:ConstraintComponent".freeze,
1409
- isDefinedBy: "shacl:".freeze,
1410
- label: "property validator".freeze,
1411
- range: "shacl:Validator".freeze,
1412
- type: "rdf:Property".freeze
1407
+ comment: {en: "The validator(s) used to evaluate a constraint in the context of a property shape."},
1408
+ domain: "http://www.w3.org/ns/shacl#ConstraintComponent",
1409
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1410
+ label: {en: "property validator"},
1411
+ range: "http://www.w3.org/ns/shacl#Validator",
1412
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1413
1413
  property :qualifiedMaxCount,
1414
- comment: "The maximum number of value nodes that can conform to the shape.".freeze,
1415
- isDefinedBy: "shacl:".freeze,
1416
- label: "qualified max count".freeze,
1417
- range: "xsd:integer".freeze,
1418
- type: "rdf:Property".freeze
1414
+ comment: {en: "The maximum number of value nodes that can conform to the shape."},
1415
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1416
+ label: {en: "qualified max count"},
1417
+ range: "http://www.w3.org/2001/XMLSchema#integer",
1418
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1419
1419
  property :qualifiedMinCount,
1420
- comment: "The minimum number of value nodes that must conform to the shape.".freeze,
1421
- isDefinedBy: "shacl:".freeze,
1422
- label: "qualified min count".freeze,
1423
- range: "xsd:integer".freeze,
1424
- type: "rdf:Property".freeze
1420
+ comment: {en: "The minimum number of value nodes that must conform to the shape."},
1421
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1422
+ label: {en: "qualified min count"},
1423
+ range: "http://www.w3.org/2001/XMLSchema#integer",
1424
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1425
1425
  property :qualifiedValueShape,
1426
- comment: "The shape that a specified number of values must conform to.".freeze,
1427
- isDefinedBy: "shacl:".freeze,
1428
- label: "qualified value shape".freeze,
1429
- range: "shacl:Shape".freeze,
1430
- type: "rdf:Property".freeze
1426
+ comment: {en: "The shape that a specified number of values must conform to."},
1427
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1428
+ label: {en: "qualified value shape"},
1429
+ range: "http://www.w3.org/ns/shacl#Shape",
1430
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1431
1431
  property :qualifiedValueShapesDisjoint,
1432
- comment: "Can be used to mark the qualified value shape to be disjoint with its sibling shapes.".freeze,
1433
- isDefinedBy: "shacl:".freeze,
1434
- label: "qualified value shapes disjoint".freeze,
1435
- range: "xsd:boolean".freeze,
1436
- type: "rdf:Property".freeze
1432
+ comment: {en: "Can be used to mark the qualified value shape to be disjoint with its sibling shapes."},
1433
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1434
+ label: {en: "qualified value shapes disjoint"},
1435
+ range: "http://www.w3.org/2001/XMLSchema#boolean",
1436
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1437
1437
  property :result,
1438
- comment: "The validation results contained in a validation report.".freeze,
1439
- domain: "shacl:ValidationReport".freeze,
1440
- isDefinedBy: "shacl:".freeze,
1441
- label: "result".freeze,
1442
- range: "shacl:ValidationResult".freeze,
1443
- type: "rdf:Property".freeze
1438
+ comment: {en: "The validation results contained in a validation report."},
1439
+ domain: "http://www.w3.org/ns/shacl#ValidationReport",
1440
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1441
+ label: {en: "result"},
1442
+ range: "http://www.w3.org/ns/shacl#ValidationResult",
1443
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1444
1444
  property :resultAnnotation,
1445
- 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,
1446
- domain: "shacl:SPARQLSelectValidator".freeze,
1447
- isDefinedBy: "shacl:".freeze,
1448
- label: "result annotation".freeze,
1449
- range: "shacl:ResultAnnotation".freeze,
1450
- type: "rdf:Property".freeze
1445
+ comment: {en: "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."},
1446
+ domain: "http://www.w3.org/ns/shacl#SPARQLSelectValidator",
1447
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1448
+ label: {en: "result annotation"},
1449
+ range: "http://www.w3.org/ns/shacl#ResultAnnotation",
1450
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1451
1451
  property :resultMessage,
1452
- comment: "Human-readable messages explaining the cause of the result.".freeze,
1453
- domain: "shacl:AbstractResult".freeze,
1454
- isDefinedBy: "shacl:".freeze,
1455
- label: "result message".freeze,
1456
- type: "rdf:Property".freeze
1452
+ comment: {en: "Human-readable messages explaining the cause of the result."},
1453
+ domain: "http://www.w3.org/ns/shacl#AbstractResult",
1454
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1455
+ label: {en: "result message"},
1456
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1457
1457
  property :resultPath,
1458
- comment: "The path of a validation result, based on the path of the validated property shape.".freeze,
1459
- domain: "shacl:AbstractResult".freeze,
1460
- isDefinedBy: "shacl:".freeze,
1461
- label: "result path".freeze,
1462
- range: "rdfs:Resource".freeze,
1463
- type: "rdf:Property".freeze
1458
+ comment: {en: "The path of a validation result, based on the path of the validated property shape."},
1459
+ domain: "http://www.w3.org/ns/shacl#AbstractResult",
1460
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1461
+ label: {en: "result path"},
1462
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
1463
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1464
1464
  property :resultSeverity,
1465
- comment: "The severity of the result, e.g. warning.".freeze,
1466
- domain: "shacl:AbstractResult".freeze,
1467
- isDefinedBy: "shacl:".freeze,
1468
- label: "result severity".freeze,
1469
- range: "shacl:Severity".freeze,
1470
- type: "rdf:Property".freeze
1465
+ comment: {en: "The severity of the result, e.g. warning."},
1466
+ domain: "http://www.w3.org/ns/shacl#AbstractResult",
1467
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1468
+ label: {en: "result severity"},
1469
+ range: "http://www.w3.org/ns/shacl#Severity",
1470
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1471
1471
  property :returnType,
1472
- comment: "The expected type of values returned by the associated function.".freeze,
1473
- domain: "shacl:Function".freeze,
1474
- isDefinedBy: "shacl:".freeze,
1475
- label: "return type".freeze,
1476
- range: "rdfs:Class".freeze,
1477
- type: "rdf:Property".freeze
1472
+ comment: {en: "The expected type of values returned by the associated function."},
1473
+ domain: "http://www.w3.org/ns/shacl#Function",
1474
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1475
+ label: {en: "return type"},
1476
+ range: "http://www.w3.org/2000/01/rdf-schema#Class",
1477
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1478
1478
  property :rule,
1479
- comment: "The rules linked to a shape.".freeze,
1480
- domain: "shacl:Shape".freeze,
1481
- isDefinedBy: "shacl:".freeze,
1482
- label: "rule".freeze,
1483
- range: "shacl:Rule".freeze,
1484
- type: "rdf:Property".freeze
1479
+ comment: {en: "The rules linked to a shape."},
1480
+ domain: "http://www.w3.org/ns/shacl#Shape",
1481
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1482
+ label: {en: "rule"},
1483
+ range: "http://www.w3.org/ns/shacl#Rule",
1484
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1485
1485
  property :select,
1486
- comment: "The SPARQL SELECT query to execute.".freeze,
1487
- domain: "shacl:SPARQLSelectExecutable".freeze,
1488
- isDefinedBy: "shacl:".freeze,
1489
- label: "select".freeze,
1490
- range: "xsd:string".freeze,
1491
- type: "rdf:Property".freeze
1486
+ comment: {en: "The SPARQL SELECT query to execute."},
1487
+ domain: "http://www.w3.org/ns/shacl#SPARQLSelectExecutable",
1488
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1489
+ label: {en: "select"},
1490
+ range: "http://www.w3.org/2001/XMLSchema#string",
1491
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1492
1492
  property :severity,
1493
- comment: "Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation.".freeze,
1494
- domain: "shacl:Shape".freeze,
1495
- isDefinedBy: "shacl:".freeze,
1496
- label: "severity".freeze,
1497
- range: "shacl:Severity".freeze,
1498
- type: "rdf:Property".freeze
1493
+ comment: {en: "Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation."},
1494
+ domain: "http://www.w3.org/ns/shacl#Shape",
1495
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1496
+ label: {en: "severity"},
1497
+ range: "http://www.w3.org/ns/shacl#Severity",
1498
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1499
1499
  property :shapesGraph,
1500
- comment: "Shapes graphs that should be used when validating this data graph.".freeze,
1501
- domain: "owl:Ontology".freeze,
1502
- isDefinedBy: "shacl:".freeze,
1503
- label: "shapes graph".freeze,
1504
- range: "owl:Ontology".freeze,
1505
- type: "rdf:Property".freeze
1500
+ comment: {en: "Shapes graphs that should be used when validating this data graph."},
1501
+ domain: "http://www.w3.org/2002/07/owl#Ontology",
1502
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1503
+ label: {en: "shapes graph"},
1504
+ range: "http://www.w3.org/2002/07/owl#Ontology",
1505
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1506
1506
  property :shapesGraphWellFormed,
1507
- comment: "If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process.".freeze,
1508
- domain: "shacl:ValidationReport".freeze,
1509
- isDefinedBy: "shacl:".freeze,
1510
- label: "shapes graph well-formed".freeze,
1511
- range: "xsd:boolean".freeze,
1512
- type: "rdf:Property".freeze
1507
+ comment: {en: "If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process."},
1508
+ domain: "http://www.w3.org/ns/shacl#ValidationReport",
1509
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1510
+ label: {en: "shapes graph well-formed"},
1511
+ range: "http://www.w3.org/2001/XMLSchema#boolean",
1512
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1513
1513
  property :sourceConstraint,
1514
- comment: "The constraint that was validated when the result was produced.".freeze,
1515
- domain: "shacl:AbstractResult".freeze,
1516
- isDefinedBy: "shacl:".freeze,
1517
- label: "source constraint".freeze,
1518
- type: "rdf:Property".freeze
1514
+ comment: {en: "The constraint that was validated when the result was produced."},
1515
+ domain: "http://www.w3.org/ns/shacl#AbstractResult",
1516
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1517
+ label: {en: "source constraint"},
1518
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1519
1519
  property :sourceConstraintComponent,
1520
- comment: "The constraint component that is the source of the result.".freeze,
1521
- domain: "shacl:AbstractResult".freeze,
1522
- isDefinedBy: "shacl:".freeze,
1523
- label: "source constraint component".freeze,
1524
- range: "shacl:ConstraintComponent".freeze,
1525
- type: "rdf:Property".freeze
1520
+ comment: {en: "The constraint component that is the source of the result."},
1521
+ domain: "http://www.w3.org/ns/shacl#AbstractResult",
1522
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1523
+ label: {en: "source constraint component"},
1524
+ range: "http://www.w3.org/ns/shacl#ConstraintComponent",
1525
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1526
1526
  property :sourceShape,
1527
- comment: "The shape that is was validated when the result was produced.".freeze,
1528
- domain: "shacl:AbstractResult".freeze,
1529
- isDefinedBy: "shacl:".freeze,
1530
- label: "source shape".freeze,
1531
- range: "shacl:Shape".freeze,
1532
- type: "rdf:Property".freeze
1527
+ comment: {en: "The shape that is was validated when the result was produced."},
1528
+ domain: "http://www.w3.org/ns/shacl#AbstractResult",
1529
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1530
+ label: {en: "source shape"},
1531
+ range: "http://www.w3.org/ns/shacl#Shape",
1532
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1533
1533
  property :sparql,
1534
- comment: "Links a shape with SPARQL constraints.".freeze,
1535
- domain: "shacl:Shape".freeze,
1536
- isDefinedBy: "shacl:".freeze,
1537
- label: "constraint (in SPARQL)".freeze,
1538
- range: "shacl:SPARQLConstraint".freeze,
1539
- type: "rdf:Property".freeze
1534
+ comment: {en: "Links a shape with SPARQL constraints."},
1535
+ domain: "http://www.w3.org/ns/shacl#Shape",
1536
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1537
+ label: {en: "constraint (in SPARQL)"},
1538
+ range: "http://www.w3.org/ns/shacl#SPARQLConstraint",
1539
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1540
1540
  property :subject,
1541
- comment: "An expression producing the resources that shall be inferred as subjects.".freeze,
1542
- domain: "shacl:TripleRule".freeze,
1543
- isDefinedBy: "shacl:".freeze,
1544
- label: "subject".freeze,
1545
- type: "rdf:Property".freeze
1541
+ comment: {en: "An expression producing the resources that shall be inferred as subjects."},
1542
+ domain: "http://www.w3.org/ns/shacl#TripleRule",
1543
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1544
+ label: {en: "subject"},
1545
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1546
1546
  property :suggestedShapesGraph,
1547
- comment: "Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements.".freeze,
1548
- domain: "owl:Ontology".freeze,
1549
- isDefinedBy: "shacl:".freeze,
1550
- label: "suggested shapes graph".freeze,
1551
- range: "owl:Ontology".freeze,
1552
- type: "rdf:Property".freeze
1547
+ comment: {en: "Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements."},
1548
+ domain: "http://www.w3.org/2002/07/owl#Ontology",
1549
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1550
+ label: {en: "suggested shapes graph"},
1551
+ range: "http://www.w3.org/2002/07/owl#Ontology",
1552
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1553
1553
  property :target,
1554
- comment: "Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget.".freeze,
1555
- domain: "shacl:Shape".freeze,
1556
- isDefinedBy: "shacl:".freeze,
1557
- label: "target".freeze,
1558
- range: "shacl:Target".freeze,
1559
- type: "rdf:Property".freeze
1554
+ comment: {en: "Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget."},
1555
+ domain: "http://www.w3.org/ns/shacl#Shape",
1556
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1557
+ label: {en: "target"},
1558
+ range: "http://www.w3.org/ns/shacl#Target",
1559
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1560
1560
  property :targetClass,
1561
- comment: "Links a shape to a class, indicating that all instances of the class must conform to the shape.".freeze,
1562
- domain: "shacl:Shape".freeze,
1563
- isDefinedBy: "shacl:".freeze,
1564
- label: "target class".freeze,
1565
- range: "rdfs:Class".freeze,
1566
- type: "rdf:Property".freeze
1561
+ comment: {en: "Links a shape to a class, indicating that all instances of the class must conform to the shape."},
1562
+ domain: "http://www.w3.org/ns/shacl#Shape",
1563
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1564
+ label: {en: "target class"},
1565
+ range: "http://www.w3.org/2000/01/rdf-schema#Class",
1566
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1567
1567
  property :targetNode,
1568
- comment: "Links a shape to individual nodes, indicating that these nodes must conform to the shape.".freeze,
1569
- domain: "shacl:Shape".freeze,
1570
- isDefinedBy: "shacl:".freeze,
1571
- label: "target node".freeze,
1572
- type: "rdf:Property".freeze
1568
+ comment: {en: "Links a shape to individual nodes, indicating that these nodes must conform to the shape."},
1569
+ domain: "http://www.w3.org/ns/shacl#Shape",
1570
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1571
+ label: {en: "target node"},
1572
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1573
1573
  property :targetObjectsOf,
1574
- 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,
1575
- domain: "shacl:Shape".freeze,
1576
- isDefinedBy: "shacl:".freeze,
1577
- label: "target objects of".freeze,
1578
- range: "rdf:Property".freeze,
1579
- type: "rdf:Property".freeze
1574
+ comment: {en: "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."},
1575
+ domain: "http://www.w3.org/ns/shacl#Shape",
1576
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1577
+ label: {en: "target objects of"},
1578
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
1579
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1580
1580
  property :targetSubjectsOf,
1581
- 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,
1582
- domain: "shacl:Shape".freeze,
1583
- isDefinedBy: "shacl:".freeze,
1584
- label: "target subjects of".freeze,
1585
- range: "rdf:Property".freeze,
1586
- type: "rdf:Property".freeze
1581
+ comment: {en: "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."},
1582
+ domain: "http://www.w3.org/ns/shacl#Shape",
1583
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1584
+ label: {en: "target subjects of"},
1585
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
1586
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1587
1587
  property :union,
1588
- comment: "A list of node expressions that shall be used together.".freeze,
1589
- isDefinedBy: "shacl:".freeze,
1590
- label: "union".freeze,
1591
- type: "rdf:Property".freeze
1588
+ comment: {en: "A list of node expressions that shall be used together."},
1589
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1590
+ label: {en: "union"},
1591
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1592
1592
  property :uniqueLang,
1593
- comment: "Specifies whether all node values must have a unique (or no) language tag.".freeze,
1594
- isDefinedBy: "shacl:".freeze,
1595
- label: "unique languages".freeze,
1596
- range: "xsd:boolean".freeze,
1597
- type: "rdf:Property".freeze
1593
+ comment: {en: "Specifies whether all node values must have a unique (or no) language tag."},
1594
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1595
+ label: {en: "unique languages"},
1596
+ range: "http://www.w3.org/2001/XMLSchema#boolean",
1597
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1598
1598
  property :update,
1599
- comment: "The SPARQL UPDATE to execute.".freeze,
1600
- domain: "shacl:SPARQLUpdateExecutable".freeze,
1601
- isDefinedBy: "shacl:".freeze,
1602
- label: "update".freeze,
1603
- range: "xsd:string".freeze,
1604
- type: "rdf:Property".freeze
1599
+ comment: {en: "The SPARQL UPDATE to execute."},
1600
+ domain: "http://www.w3.org/ns/shacl#SPARQLUpdateExecutable",
1601
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1602
+ label: {en: "update"},
1603
+ range: "http://www.w3.org/2001/XMLSchema#string",
1604
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1605
1605
  property :validator,
1606
- comment: "The validator(s) used to evaluate constraints of either node or property shapes.".freeze,
1607
- domain: "shacl:ConstraintComponent".freeze,
1608
- isDefinedBy: "shacl:".freeze,
1609
- label: "validator".freeze,
1610
- range: "shacl:Validator".freeze,
1611
- type: "rdf:Property".freeze
1606
+ comment: {en: "The validator(s) used to evaluate constraints of either node or property shapes."},
1607
+ domain: "http://www.w3.org/ns/shacl#ConstraintComponent",
1608
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1609
+ label: {en: "validator"},
1610
+ range: "http://www.w3.org/ns/shacl#Validator",
1611
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1612
1612
  property :value,
1613
- comment: "An RDF node that has caused the result.".freeze,
1614
- domain: "shacl:AbstractResult".freeze,
1615
- isDefinedBy: "shacl:".freeze,
1616
- label: "value".freeze,
1617
- type: "rdf:Property".freeze
1613
+ comment: {en: "An RDF node that has caused the result."},
1614
+ domain: "http://www.w3.org/ns/shacl#AbstractResult",
1615
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1616
+ label: {en: "value"},
1617
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1618
1618
  property :xone,
1619
- comment: "Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes.".freeze,
1620
- isDefinedBy: "shacl:".freeze,
1621
- label: "exactly one".freeze,
1622
- range: "rdf:List".freeze,
1623
- type: "rdf:Property".freeze
1619
+ comment: {en: "Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes."},
1620
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1621
+ label: {en: "exactly one"},
1622
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
1623
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1624
1624
  property :zeroOrMorePath,
1625
- comment: "The (single) value of this property represents a path that is matched zero or more times.".freeze,
1626
- isDefinedBy: "shacl:".freeze,
1627
- label: "zero or more path".freeze,
1628
- range: "rdfs:Resource".freeze,
1629
- type: "rdf:Property".freeze
1625
+ comment: {en: "The (single) value of this property represents a path that is matched zero or more times."},
1626
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1627
+ label: {en: "zero or more path"},
1628
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
1629
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1630
1630
  property :zeroOrOnePath,
1631
- comment: "The (single) value of this property represents a path that is matched zero or one times.".freeze,
1632
- isDefinedBy: "shacl:".freeze,
1633
- label: "zero or one path".freeze,
1634
- range: "rdfs:Resource".freeze,
1635
- type: "rdf:Property".freeze
1631
+ comment: {en: "The (single) value of this property represents a path that is matched zero or one times."},
1632
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1633
+ label: {en: "zero or one path"},
1634
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
1635
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
1636
1636
 
1637
1637
  # Extra definitions
1638
1638
  term :AndConstraintComponent,
1639
- 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,
1640
- isDefinedBy: "shacl:".freeze,
1641
- label: "And constraint component".freeze,
1642
- "shacl:parameter": "shacl:AndConstraintComponent-and".freeze,
1643
- type: "shacl:ConstraintComponent".freeze
1639
+ comment: {en: "A constraint component that can be used to test whether a value node conforms to all members of a provided list of shapes."},
1640
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#AndConstraintComponent-and",
1641
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1642
+ label: {en: "And constraint component"},
1643
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1644
1644
  term :"AndConstraintComponent-and",
1645
- isDefinedBy: "shacl:".freeze,
1646
- "shacl:path": "shacl:and".freeze,
1647
- type: "shacl:Parameter".freeze
1645
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#and",
1646
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1647
+ type: "http://www.w3.org/ns/shacl#Parameter"
1648
1648
  term :BlankNode,
1649
- comment: "The node kind of all blank nodes.".freeze,
1650
- isDefinedBy: "shacl:".freeze,
1651
- label: "Blank node".freeze,
1652
- type: "shacl:NodeKind".freeze
1649
+ comment: {en: "The node kind of all blank nodes."},
1650
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1651
+ label: {en: "Blank node"},
1652
+ type: "http://www.w3.org/ns/shacl#NodeKind"
1653
1653
  term :BlankNodeOrIRI,
1654
- comment: "The node kind of all blank nodes or IRIs.".freeze,
1655
- isDefinedBy: "shacl:".freeze,
1656
- label: "Blank node or IRI".freeze,
1657
- type: "shacl:NodeKind".freeze
1654
+ comment: {en: "The node kind of all blank nodes or IRIs."},
1655
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1656
+ label: {en: "Blank node or IRI"},
1657
+ type: "http://www.w3.org/ns/shacl#NodeKind"
1658
1658
  term :BlankNodeOrLiteral,
1659
- comment: "The node kind of all blank nodes or literals.".freeze,
1660
- isDefinedBy: "shacl:".freeze,
1661
- label: "Blank node or literal".freeze,
1662
- type: "shacl:NodeKind".freeze
1659
+ comment: {en: "The node kind of all blank nodes or literals."},
1660
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1661
+ label: {en: "Blank node or literal"},
1662
+ type: "http://www.w3.org/ns/shacl#NodeKind"
1663
1663
  term :ClassConstraintComponent,
1664
- comment: "A constraint component that can be used to verify that each value node is an instance of a given type.".freeze,
1665
- isDefinedBy: "shacl:".freeze,
1666
- label: "Class constraint component".freeze,
1667
- "shacl:parameter": "shacl:ClassConstraintComponent-class".freeze,
1668
- type: "shacl:ConstraintComponent".freeze
1664
+ comment: {en: "A constraint component that can be used to verify that each value node is an instance of a given type."},
1665
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#ClassConstraintComponent-class",
1666
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1667
+ label: {en: "Class constraint component"},
1668
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1669
1669
  term :"ClassConstraintComponent-class",
1670
- isDefinedBy: "shacl:".freeze,
1671
- "shacl:nodeKind": "shacl:IRI".freeze,
1672
- "shacl:path": "shacl:class".freeze,
1673
- type: "shacl:Parameter".freeze
1670
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI",
1671
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#class",
1672
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1673
+ type: "http://www.w3.org/ns/shacl#Parameter"
1674
1674
  term :ClosedConstraintComponent,
1675
- 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,
1676
- isDefinedBy: "shacl:".freeze,
1677
- label: "Closed constraint component".freeze,
1678
- "shacl:parameter": ["shacl:ClosedConstraintComponent-closed".freeze, "shacl:ClosedConstraintComponent-ignoredProperties".freeze],
1679
- type: "shacl:ConstraintComponent".freeze
1675
+ comment: {en: "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."},
1676
+ "http://www.w3.org/ns/shacl#parameter": ["http://www.w3.org/ns/shacl#ClosedConstraintComponent-closed", "http://www.w3.org/ns/shacl#ClosedConstraintComponent-ignoredProperties"],
1677
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1678
+ label: {en: "Closed constraint component"},
1679
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1680
1680
  term :"ClosedConstraintComponent-closed",
1681
- isDefinedBy: "shacl:".freeze,
1682
- "shacl:datatype": "xsd:boolean".freeze,
1683
- "shacl:path": "shacl:closed".freeze,
1684
- type: "shacl:Parameter".freeze
1681
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#boolean",
1682
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#closed",
1683
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1684
+ type: "http://www.w3.org/ns/shacl#Parameter"
1685
1685
  term :"ClosedConstraintComponent-ignoredProperties",
1686
- isDefinedBy: "shacl:".freeze,
1687
- "shacl:optional": "true".freeze,
1688
- "shacl:path": "shacl:ignoredProperties".freeze,
1689
- type: "shacl:Parameter".freeze
1686
+ "http://www.w3.org/ns/shacl#optional": "true",
1687
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#ignoredProperties",
1688
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1689
+ type: "http://www.w3.org/ns/shacl#Parameter"
1690
1690
  term :DatatypeConstraintComponent,
1691
- comment: "A constraint component that can be used to restrict the datatype of all value nodes.".freeze,
1692
- isDefinedBy: "shacl:".freeze,
1693
- label: "Datatype constraint component".freeze,
1694
- "shacl:parameter": "shacl:DatatypeConstraintComponent-datatype".freeze,
1695
- type: "shacl:ConstraintComponent".freeze
1691
+ comment: {en: "A constraint component that can be used to restrict the datatype of all value nodes."},
1692
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#DatatypeConstraintComponent-datatype",
1693
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1694
+ label: {en: "Datatype constraint component"},
1695
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1696
1696
  term :"DatatypeConstraintComponent-datatype",
1697
- isDefinedBy: "shacl:".freeze,
1698
- "shacl:maxCount": "1".freeze,
1699
- "shacl:nodeKind": "shacl:IRI".freeze,
1700
- "shacl:path": "shacl:datatype".freeze,
1701
- type: "shacl:Parameter".freeze
1697
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1698
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI",
1699
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#datatype",
1700
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1701
+ type: "http://www.w3.org/ns/shacl#Parameter"
1702
1702
  term :DisjointConstraintComponent,
1703
- 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,
1704
- isDefinedBy: "shacl:".freeze,
1705
- label: "Disjoint constraint component".freeze,
1706
- "shacl:parameter": "shacl:DisjointConstraintComponent-disjoint".freeze,
1707
- type: "shacl:ConstraintComponent".freeze
1703
+ comment: {en: "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."},
1704
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#DisjointConstraintComponent-disjoint",
1705
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1706
+ label: {en: "Disjoint constraint component"},
1707
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1708
1708
  term :"DisjointConstraintComponent-disjoint",
1709
- isDefinedBy: "shacl:".freeze,
1710
- "shacl:nodeKind": "shacl:IRI".freeze,
1711
- "shacl:path": "shacl:disjoint".freeze,
1712
- type: "shacl:Parameter".freeze
1709
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI",
1710
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#disjoint",
1711
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1712
+ type: "http://www.w3.org/ns/shacl#Parameter"
1713
1713
  term :EqualsConstraintComponent,
1714
- 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,
1715
- isDefinedBy: "shacl:".freeze,
1716
- label: "Equals constraint component".freeze,
1717
- "shacl:parameter": "shacl:EqualsConstraintComponent-equals".freeze,
1718
- type: "shacl:ConstraintComponent".freeze
1714
+ comment: {en: "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."},
1715
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#EqualsConstraintComponent-equals",
1716
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1717
+ label: {en: "Equals constraint component"},
1718
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1719
1719
  term :"EqualsConstraintComponent-equals",
1720
- isDefinedBy: "shacl:".freeze,
1721
- "shacl:nodeKind": "shacl:IRI".freeze,
1722
- "shacl:path": "shacl:equals".freeze,
1723
- type: "shacl:Parameter".freeze
1720
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI",
1721
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#equals",
1722
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1723
+ type: "http://www.w3.org/ns/shacl#Parameter"
1724
1724
  term :ExpressionConstraintComponent,
1725
- comment: "A constraint component that can be used to verify that a given node expression produces true for all value nodes.".freeze,
1726
- isDefinedBy: "shacl:".freeze,
1727
- label: "Expression constraint component".freeze,
1728
- "shacl:parameter": "shacl:ExpressionConstraintComponent-expression".freeze,
1729
- type: "shacl:ConstraintComponent".freeze
1725
+ comment: {en: "A constraint component that can be used to verify that a given node expression produces true for all value nodes."},
1726
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#ExpressionConstraintComponent-expression",
1727
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1728
+ label: {en: "Expression constraint component"},
1729
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1730
1730
  term :"ExpressionConstraintComponent-expression",
1731
- isDefinedBy: "shacl:".freeze,
1732
- "shacl:path": "shacl:expression".freeze,
1733
- type: "shacl:Parameter".freeze
1731
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#expression",
1732
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1733
+ type: "http://www.w3.org/ns/shacl#Parameter"
1734
1734
  term :HasValueConstraintComponent,
1735
- comment: "A constraint component that can be used to verify that one of the value nodes is a given RDF node.".freeze,
1736
- isDefinedBy: "shacl:".freeze,
1737
- label: "Has-value constraint component".freeze,
1738
- "shacl:parameter": "shacl:HasValueConstraintComponent-hasValue".freeze,
1739
- type: "shacl:ConstraintComponent".freeze
1735
+ comment: {en: "A constraint component that can be used to verify that one of the value nodes is a given RDF node."},
1736
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#HasValueConstraintComponent-hasValue",
1737
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1738
+ label: {en: "Has-value constraint component"},
1739
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1740
1740
  term :"HasValueConstraintComponent-hasValue",
1741
- isDefinedBy: "shacl:".freeze,
1742
- "shacl:path": "shacl:hasValue".freeze,
1743
- type: "shacl:Parameter".freeze
1741
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#hasValue",
1742
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1743
+ type: "http://www.w3.org/ns/shacl#Parameter"
1744
1744
  term :IRI,
1745
- comment: "The node kind of all IRIs.".freeze,
1746
- isDefinedBy: "shacl:".freeze,
1747
- label: "IRI".freeze,
1748
- type: "shacl:NodeKind".freeze
1745
+ comment: {en: "The node kind of all IRIs."},
1746
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1747
+ label: {en: "IRI"},
1748
+ type: "http://www.w3.org/ns/shacl#NodeKind"
1749
1749
  term :IRIOrLiteral,
1750
- comment: "The node kind of all IRIs or literals.".freeze,
1751
- isDefinedBy: "shacl:".freeze,
1752
- label: "IRI or literal".freeze,
1753
- type: "shacl:NodeKind".freeze
1750
+ comment: {en: "The node kind of all IRIs or literals."},
1751
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1752
+ label: {en: "IRI or literal"},
1753
+ type: "http://www.w3.org/ns/shacl#NodeKind"
1754
1754
  term :InConstraintComponent,
1755
- comment: "A constraint component that can be used to exclusively enumerate the permitted value nodes.".freeze,
1756
- isDefinedBy: "shacl:".freeze,
1757
- label: "In constraint component".freeze,
1758
- "shacl:parameter": "shacl:InConstraintComponent-in".freeze,
1759
- type: "shacl:ConstraintComponent".freeze
1755
+ comment: {en: "A constraint component that can be used to exclusively enumerate the permitted value nodes."},
1756
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#InConstraintComponent-in",
1757
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1758
+ label: {en: "In constraint component"},
1759
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1760
1760
  term :"InConstraintComponent-in",
1761
- isDefinedBy: "shacl:".freeze,
1762
- "shacl:maxCount": "1".freeze,
1763
- "shacl:path": "shacl:in".freeze,
1764
- type: "shacl:Parameter".freeze
1761
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1762
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#in",
1763
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1764
+ type: "http://www.w3.org/ns/shacl#Parameter"
1765
1765
  term :Info,
1766
- comment: "The severity for an informational validation result.".freeze,
1767
- isDefinedBy: "shacl:".freeze,
1768
- label: "Info".freeze,
1769
- type: "shacl:Severity".freeze
1766
+ comment: {en: "The severity for an informational validation result."},
1767
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1768
+ label: {en: "Info"},
1769
+ type: "http://www.w3.org/ns/shacl#Severity"
1770
1770
  term :"JSConstraint-js",
1771
- isDefinedBy: "shacl:".freeze,
1772
- "shacl:path": "shacl:js".freeze,
1773
- type: "shacl:Parameter".freeze
1771
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#js",
1772
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1773
+ type: "http://www.w3.org/ns/shacl#Parameter"
1774
1774
  term :JSConstraintComponent,
1775
- comment: "A constraint component with the parameter sh:js linking to a sh:JSConstraint containing a sh:script.".freeze,
1776
- isDefinedBy: "shacl:".freeze,
1777
- label: "JavaScript constraint component".freeze,
1778
- "shacl:parameter": "shacl:JSConstraint-js".freeze,
1779
- type: "shacl:ConstraintComponent".freeze
1775
+ comment: {en: "A constraint component with the parameter sh:js linking to a sh:JSConstraint containing a sh:script."},
1776
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#JSConstraint-js",
1777
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1778
+ label: {en: "JavaScript constraint component"},
1779
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1780
1780
  term :LanguageInConstraintComponent,
1781
- comment: "A constraint component that can be used to enumerate language tags that all value nodes must have.".freeze,
1782
- isDefinedBy: "shacl:".freeze,
1783
- label: "Language-in constraint component".freeze,
1784
- "shacl:parameter": "shacl:LanguageInConstraintComponent-languageIn".freeze,
1785
- type: "shacl:ConstraintComponent".freeze
1781
+ comment: {en: "A constraint component that can be used to enumerate language tags that all value nodes must have."},
1782
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#LanguageInConstraintComponent-languageIn",
1783
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1784
+ label: {en: "Language-in constraint component"},
1785
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1786
1786
  term :"LanguageInConstraintComponent-languageIn",
1787
- isDefinedBy: "shacl:".freeze,
1788
- "shacl:maxCount": "1".freeze,
1789
- "shacl:path": "shacl:languageIn".freeze,
1790
- type: "shacl:Parameter".freeze
1787
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1788
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#languageIn",
1789
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1790
+ type: "http://www.w3.org/ns/shacl#Parameter"
1791
1791
  term :LessThanConstraintComponent,
1792
- 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,
1793
- isDefinedBy: "shacl:".freeze,
1794
- label: "Less-than constraint component".freeze,
1795
- "shacl:parameter": "shacl:LessThanConstraintComponent-lessThan".freeze,
1796
- type: "shacl:ConstraintComponent".freeze
1792
+ comment: {en: "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."},
1793
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#LessThanConstraintComponent-lessThan",
1794
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1795
+ label: {en: "Less-than constraint component"},
1796
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1797
1797
  term :"LessThanConstraintComponent-lessThan",
1798
- isDefinedBy: "shacl:".freeze,
1799
- "shacl:nodeKind": "shacl:IRI".freeze,
1800
- "shacl:path": "shacl:lessThan".freeze,
1801
- type: "shacl:Parameter".freeze
1798
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI",
1799
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#lessThan",
1800
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1801
+ type: "http://www.w3.org/ns/shacl#Parameter"
1802
1802
  term :LessThanOrEqualsConstraintComponent,
1803
- 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,
1804
- isDefinedBy: "shacl:".freeze,
1805
- label: "less-than-or-equals constraint component".freeze,
1806
- "shacl:parameter": "shacl:LessThanOrEqualsConstraintComponent-lessThanOrEquals".freeze,
1807
- type: "shacl:ConstraintComponent".freeze
1803
+ comment: {en: "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."},
1804
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#LessThanOrEqualsConstraintComponent-lessThanOrEquals",
1805
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1806
+ label: {en: "less-than-or-equals constraint component"},
1807
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1808
1808
  term :"LessThanOrEqualsConstraintComponent-lessThanOrEquals",
1809
- isDefinedBy: "shacl:".freeze,
1810
- "shacl:nodeKind": "shacl:IRI".freeze,
1811
- "shacl:path": "shacl:lessThanOrEquals".freeze,
1812
- type: "shacl:Parameter".freeze
1809
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI",
1810
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#lessThanOrEquals",
1811
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1812
+ type: "http://www.w3.org/ns/shacl#Parameter"
1813
1813
  term :Literal,
1814
- comment: "The node kind of all literals.".freeze,
1815
- isDefinedBy: "shacl:".freeze,
1816
- label: "Literal".freeze,
1817
- type: "shacl:NodeKind".freeze
1814
+ comment: {en: "The node kind of all literals."},
1815
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1816
+ label: {en: "Literal"},
1817
+ type: "http://www.w3.org/ns/shacl#NodeKind"
1818
1818
  term :MaxCountConstraintComponent,
1819
- comment: "A constraint component that can be used to restrict the maximum number of value nodes.".freeze,
1820
- isDefinedBy: "shacl:".freeze,
1821
- label: "Max-count constraint component".freeze,
1822
- "shacl:parameter": "shacl:MaxCountConstraintComponent-maxCount".freeze,
1823
- type: "shacl:ConstraintComponent".freeze
1819
+ comment: {en: "A constraint component that can be used to restrict the maximum number of value nodes."},
1820
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MaxCountConstraintComponent-maxCount",
1821
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1822
+ label: {en: "Max-count constraint component"},
1823
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1824
1824
  term :"MaxCountConstraintComponent-maxCount",
1825
- isDefinedBy: "shacl:".freeze,
1826
- "shacl:datatype": "xsd:integer".freeze,
1827
- "shacl:maxCount": "1".freeze,
1828
- "shacl:path": "shacl:maxCount".freeze,
1829
- type: "shacl:Parameter".freeze
1825
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer",
1826
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1827
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#maxCount",
1828
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1829
+ type: "http://www.w3.org/ns/shacl#Parameter"
1830
1830
  term :MaxExclusiveConstraintComponent,
1831
- comment: "A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value.".freeze,
1832
- isDefinedBy: "shacl:".freeze,
1833
- label: "Max-exclusive constraint component".freeze,
1834
- "shacl:parameter": "shacl:MaxExclusiveConstraintComponent-maxExclusive".freeze,
1835
- type: "shacl:ConstraintComponent".freeze
1831
+ comment: {en: "A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value."},
1832
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MaxExclusiveConstraintComponent-maxExclusive",
1833
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1834
+ label: {en: "Max-exclusive constraint component"},
1835
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1836
1836
  term :"MaxExclusiveConstraintComponent-maxExclusive",
1837
- isDefinedBy: "shacl:".freeze,
1838
- "shacl:maxCount": "1".freeze,
1839
- "shacl:nodeKind": "shacl:Literal".freeze,
1840
- "shacl:path": "shacl:maxExclusive".freeze,
1841
- type: "shacl:Parameter".freeze
1837
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1838
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#Literal",
1839
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#maxExclusive",
1840
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1841
+ type: "http://www.w3.org/ns/shacl#Parameter"
1842
1842
  term :MaxInclusiveConstraintComponent,
1843
- comment: "A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value.".freeze,
1844
- isDefinedBy: "shacl:".freeze,
1845
- label: "Max-inclusive constraint component".freeze,
1846
- "shacl:parameter": "shacl:MaxInclusiveConstraintComponent-maxInclusive".freeze,
1847
- type: "shacl:ConstraintComponent".freeze
1843
+ comment: {en: "A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value."},
1844
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MaxInclusiveConstraintComponent-maxInclusive",
1845
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1846
+ label: {en: "Max-inclusive constraint component"},
1847
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1848
1848
  term :"MaxInclusiveConstraintComponent-maxInclusive",
1849
- isDefinedBy: "shacl:".freeze,
1850
- "shacl:maxCount": "1".freeze,
1851
- "shacl:nodeKind": "shacl:Literal".freeze,
1852
- "shacl:path": "shacl:maxInclusive".freeze,
1853
- type: "shacl:Parameter".freeze
1849
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1850
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#Literal",
1851
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#maxInclusive",
1852
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1853
+ type: "http://www.w3.org/ns/shacl#Parameter"
1854
1854
  term :MaxLengthConstraintComponent,
1855
- comment: "A constraint component that can be used to restrict the maximum string length of value nodes.".freeze,
1856
- isDefinedBy: "shacl:".freeze,
1857
- label: "Max-length constraint component".freeze,
1858
- "shacl:parameter": "shacl:MaxLengthConstraintComponent-maxLength".freeze,
1859
- type: "shacl:ConstraintComponent".freeze
1855
+ comment: {en: "A constraint component that can be used to restrict the maximum string length of value nodes."},
1856
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MaxLengthConstraintComponent-maxLength",
1857
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1858
+ label: {en: "Max-length constraint component"},
1859
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1860
1860
  term :"MaxLengthConstraintComponent-maxLength",
1861
- isDefinedBy: "shacl:".freeze,
1862
- "shacl:datatype": "xsd:integer".freeze,
1863
- "shacl:maxCount": "1".freeze,
1864
- "shacl:path": "shacl:maxLength".freeze,
1865
- type: "shacl:Parameter".freeze
1861
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer",
1862
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1863
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#maxLength",
1864
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1865
+ type: "http://www.w3.org/ns/shacl#Parameter"
1866
1866
  term :MinCountConstraintComponent,
1867
- comment: "A constraint component that can be used to restrict the minimum number of value nodes.".freeze,
1868
- isDefinedBy: "shacl:".freeze,
1869
- label: "Min-count constraint component".freeze,
1870
- "shacl:parameter": "shacl:MinCountConstraintComponent-minCount".freeze,
1871
- type: "shacl:ConstraintComponent".freeze
1867
+ comment: {en: "A constraint component that can be used to restrict the minimum number of value nodes."},
1868
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MinCountConstraintComponent-minCount",
1869
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1870
+ label: {en: "Min-count constraint component"},
1871
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1872
1872
  term :"MinCountConstraintComponent-minCount",
1873
- isDefinedBy: "shacl:".freeze,
1874
- "shacl:datatype": "xsd:integer".freeze,
1875
- "shacl:maxCount": "1".freeze,
1876
- "shacl:path": "shacl:minCount".freeze,
1877
- type: "shacl:Parameter".freeze
1873
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer",
1874
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1875
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#minCount",
1876
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1877
+ type: "http://www.w3.org/ns/shacl#Parameter"
1878
1878
  term :MinExclusiveConstraintComponent,
1879
- comment: "A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value.".freeze,
1880
- isDefinedBy: "shacl:".freeze,
1881
- label: "Min-exclusive constraint component".freeze,
1882
- "shacl:parameter": "shacl:MinExclusiveConstraintComponent-minExclusive".freeze,
1883
- type: "shacl:ConstraintComponent".freeze
1879
+ comment: {en: "A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value."},
1880
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MinExclusiveConstraintComponent-minExclusive",
1881
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1882
+ label: {en: "Min-exclusive constraint component"},
1883
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1884
1884
  term :"MinExclusiveConstraintComponent-minExclusive",
1885
- isDefinedBy: "shacl:".freeze,
1886
- "shacl:maxCount": "1".freeze,
1887
- "shacl:nodeKind": "shacl:Literal".freeze,
1888
- "shacl:path": "shacl:minExclusive".freeze,
1889
- type: "shacl:Parameter".freeze
1885
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1886
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#Literal",
1887
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#minExclusive",
1888
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1889
+ type: "http://www.w3.org/ns/shacl#Parameter"
1890
1890
  term :MinInclusiveConstraintComponent,
1891
- comment: "A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value.".freeze,
1892
- isDefinedBy: "shacl:".freeze,
1893
- label: "Min-inclusive constraint component".freeze,
1894
- "shacl:parameter": "shacl:MinInclusiveConstraintComponent-minInclusive".freeze,
1895
- type: "shacl:ConstraintComponent".freeze
1891
+ comment: {en: "A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value."},
1892
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MinInclusiveConstraintComponent-minInclusive",
1893
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1894
+ label: {en: "Min-inclusive constraint component"},
1895
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1896
1896
  term :"MinInclusiveConstraintComponent-minInclusive",
1897
- isDefinedBy: "shacl:".freeze,
1898
- "shacl:maxCount": "1".freeze,
1899
- "shacl:nodeKind": "shacl:Literal".freeze,
1900
- "shacl:path": "shacl:minInclusive".freeze,
1901
- type: "shacl:Parameter".freeze
1897
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1898
+ "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#Literal",
1899
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#minInclusive",
1900
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1901
+ type: "http://www.w3.org/ns/shacl#Parameter"
1902
1902
  term :MinLengthConstraintComponent,
1903
- comment: "A constraint component that can be used to restrict the minimum string length of value nodes.".freeze,
1904
- isDefinedBy: "shacl:".freeze,
1905
- label: "Min-length constraint component".freeze,
1906
- "shacl:parameter": "shacl:MinLengthConstraintComponent-minLength".freeze,
1907
- type: "shacl:ConstraintComponent".freeze
1903
+ comment: {en: "A constraint component that can be used to restrict the minimum string length of value nodes."},
1904
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MinLengthConstraintComponent-minLength",
1905
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1906
+ label: {en: "Min-length constraint component"},
1907
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1908
1908
  term :"MinLengthConstraintComponent-minLength",
1909
- isDefinedBy: "shacl:".freeze,
1910
- "shacl:datatype": "xsd:integer".freeze,
1911
- "shacl:maxCount": "1".freeze,
1912
- "shacl:path": "shacl:minLength".freeze,
1913
- type: "shacl:Parameter".freeze
1909
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer",
1910
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1911
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#minLength",
1912
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1913
+ type: "http://www.w3.org/ns/shacl#Parameter"
1914
1914
  term :NodeConstraintComponent,
1915
- comment: "A constraint component that can be used to verify that all value nodes conform to the given node shape.".freeze,
1916
- isDefinedBy: "shacl:".freeze,
1917
- label: "Node constraint component".freeze,
1918
- "shacl:parameter": "shacl:NodeConstraintComponent-node".freeze,
1919
- type: "shacl:ConstraintComponent".freeze
1915
+ comment: {en: "A constraint component that can be used to verify that all value nodes conform to the given node shape."},
1916
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#NodeConstraintComponent-node",
1917
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1918
+ label: {en: "Node constraint component"},
1919
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1920
1920
  term :"NodeConstraintComponent-node",
1921
- isDefinedBy: "shacl:".freeze,
1922
- "shacl:path": "shacl:node".freeze,
1923
- type: "shacl:Parameter".freeze
1921
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#node",
1922
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1923
+ type: "http://www.w3.org/ns/shacl#Parameter"
1924
1924
  term :NodeKindConstraintComponent,
1925
- comment: "A constraint component that can be used to restrict the RDF node kind of each value node.".freeze,
1926
- isDefinedBy: "shacl:".freeze,
1927
- label: "Node-kind constraint component".freeze,
1928
- "shacl:parameter": "shacl:NodeKindConstraintComponent-nodeKind".freeze,
1929
- type: "shacl:ConstraintComponent".freeze
1925
+ comment: {en: "A constraint component that can be used to restrict the RDF node kind of each value node."},
1926
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#NodeKindConstraintComponent-nodeKind",
1927
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1928
+ label: {en: "Node-kind constraint component"},
1929
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1930
1930
  term :"NodeKindConstraintComponent-nodeKind",
1931
- isDefinedBy: "shacl:".freeze,
1932
- "shacl:in": list("shacl:BlankNode".freeze, "shacl:IRI".freeze, "shacl:Literal".freeze, "shacl:BlankNodeOrIRI".freeze, "shacl:BlankNodeOrLiteral".freeze, "shacl:IRIOrLiteral".freeze),
1933
- "shacl:maxCount": "1".freeze,
1934
- "shacl:path": "shacl:nodeKind".freeze,
1935
- type: "shacl:Parameter".freeze
1931
+ "http://www.w3.org/ns/shacl#in": list("http://www.w3.org/ns/shacl#BlankNode", "http://www.w3.org/ns/shacl#IRI", "http://www.w3.org/ns/shacl#Literal", "http://www.w3.org/ns/shacl#BlankNodeOrIRI", "http://www.w3.org/ns/shacl#BlankNodeOrLiteral", "http://www.w3.org/ns/shacl#IRIOrLiteral"),
1932
+ "http://www.w3.org/ns/shacl#maxCount": "1",
1933
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#nodeKind",
1934
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1935
+ type: "http://www.w3.org/ns/shacl#Parameter"
1936
1936
  term :NotConstraintComponent,
1937
- comment: "A constraint component that can be used to verify that value nodes do not conform to a given shape.".freeze,
1938
- isDefinedBy: "shacl:".freeze,
1939
- label: "Not constraint component".freeze,
1940
- "shacl:parameter": "shacl:NotConstraintComponent-not".freeze,
1941
- type: "shacl:ConstraintComponent".freeze
1937
+ comment: {en: "A constraint component that can be used to verify that value nodes do not conform to a given shape."},
1938
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#NotConstraintComponent-not",
1939
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1940
+ label: {en: "Not constraint component"},
1941
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1942
1942
  term :"NotConstraintComponent-not",
1943
- isDefinedBy: "shacl:".freeze,
1944
- "shacl:path": "shacl:not".freeze,
1945
- type: "shacl:Parameter".freeze
1943
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#not",
1944
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1945
+ type: "http://www.w3.org/ns/shacl#Parameter"
1946
1946
  term :OrConstraintComponent,
1947
- 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,
1948
- isDefinedBy: "shacl:".freeze,
1949
- label: "Or constraint component".freeze,
1950
- "shacl:parameter": "shacl:OrConstraintComponent-or".freeze,
1951
- type: "shacl:ConstraintComponent".freeze
1947
+ comment: {en: "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."},
1948
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#OrConstraintComponent-or",
1949
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1950
+ label: {en: "Or constraint component"},
1951
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1952
1952
  term :"OrConstraintComponent-or",
1953
- isDefinedBy: "shacl:".freeze,
1954
- "shacl:path": "shacl:or".freeze,
1955
- type: "shacl:Parameter".freeze
1953
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#or",
1954
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1955
+ type: "http://www.w3.org/ns/shacl#Parameter"
1956
1956
  term :PatternConstraintComponent,
1957
- comment: "A constraint component that can be used to verify that every value node matches a given regular expression.".freeze,
1958
- isDefinedBy: "shacl:".freeze,
1959
- label: "Pattern constraint component".freeze,
1960
- "shacl:parameter": ["shacl:PatternConstraintComponent-flags".freeze, "shacl:PatternConstraintComponent-pattern".freeze],
1961
- type: "shacl:ConstraintComponent".freeze
1957
+ comment: {en: "A constraint component that can be used to verify that every value node matches a given regular expression."},
1958
+ "http://www.w3.org/ns/shacl#parameter": ["http://www.w3.org/ns/shacl#PatternConstraintComponent-flags", "http://www.w3.org/ns/shacl#PatternConstraintComponent-pattern"],
1959
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1960
+ label: {en: "Pattern constraint component"},
1961
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1962
1962
  term :"PatternConstraintComponent-flags",
1963
- isDefinedBy: "shacl:".freeze,
1964
- "shacl:datatype": "xsd:string".freeze,
1965
- "shacl:optional": "true".freeze,
1966
- "shacl:path": "shacl:flags".freeze,
1967
- type: "shacl:Parameter".freeze
1963
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#string",
1964
+ "http://www.w3.org/ns/shacl#optional": "true",
1965
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#flags",
1966
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1967
+ type: "http://www.w3.org/ns/shacl#Parameter"
1968
1968
  term :"PatternConstraintComponent-pattern",
1969
- isDefinedBy: "shacl:".freeze,
1970
- "shacl:datatype": "xsd:string".freeze,
1971
- "shacl:path": "shacl:pattern".freeze,
1972
- type: "shacl:Parameter".freeze
1969
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#string",
1970
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#pattern",
1971
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1972
+ type: "http://www.w3.org/ns/shacl#Parameter"
1973
1973
  term :PropertyConstraintComponent,
1974
- comment: "A constraint component that can be used to verify that all value nodes conform to the given property shape.".freeze,
1975
- isDefinedBy: "shacl:".freeze,
1976
- label: "Property constraint component".freeze,
1977
- "shacl:parameter": "shacl:PropertyConstraintComponent-property".freeze,
1978
- type: "shacl:ConstraintComponent".freeze
1974
+ comment: {en: "A constraint component that can be used to verify that all value nodes conform to the given property shape."},
1975
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#PropertyConstraintComponent-property",
1976
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1977
+ label: {en: "Property constraint component"},
1978
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1979
1979
  term :"PropertyConstraintComponent-property",
1980
- isDefinedBy: "shacl:".freeze,
1981
- "shacl:path": "shacl:property".freeze,
1982
- type: "shacl:Parameter".freeze
1980
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#property",
1981
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1982
+ type: "http://www.w3.org/ns/shacl#Parameter"
1983
1983
  term :QualifiedMaxCountConstraintComponent,
1984
- comment: "A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape.".freeze,
1985
- isDefinedBy: "shacl:".freeze,
1986
- label: "Qualified-max-count constraint component".freeze,
1987
- "shacl:parameter": ["shacl:QualifiedMaxCountConstraintComponent-qualifiedMaxCount".freeze, "shacl:QualifiedMaxCountConstraintComponent-qualifiedValueShape".freeze, "shacl:QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint".freeze],
1988
- type: "shacl:ConstraintComponent".freeze
1984
+ comment: {en: "A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape."},
1985
+ "http://www.w3.org/ns/shacl#parameter": ["http://www.w3.org/ns/shacl#QualifiedMaxCountConstraintComponent-qualifiedMaxCount", "http://www.w3.org/ns/shacl#QualifiedMaxCountConstraintComponent-qualifiedValueShape", "http://www.w3.org/ns/shacl#QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint"],
1986
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1987
+ label: {en: "Qualified-max-count constraint component"},
1988
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
1989
1989
  term :"QualifiedMaxCountConstraintComponent-qualifiedMaxCount",
1990
- isDefinedBy: "shacl:".freeze,
1991
- "shacl:datatype": "xsd:integer".freeze,
1992
- "shacl:path": "shacl:qualifiedMaxCount".freeze,
1993
- type: "shacl:Parameter".freeze
1990
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer",
1991
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedMaxCount",
1992
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1993
+ type: "http://www.w3.org/ns/shacl#Parameter"
1994
1994
  term :"QualifiedMaxCountConstraintComponent-qualifiedValueShape",
1995
- isDefinedBy: "shacl:".freeze,
1996
- "shacl:path": "shacl:qualifiedValueShape".freeze,
1997
- type: "shacl:Parameter".freeze
1995
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedValueShape",
1996
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
1997
+ type: "http://www.w3.org/ns/shacl#Parameter"
1998
1998
  term :"QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint",
1999
- isDefinedBy: "shacl:".freeze,
2000
- "shacl:datatype": "xsd:boolean".freeze,
2001
- "shacl:optional": "true".freeze,
2002
- "shacl:path": "shacl:qualifiedValueShapesDisjoint".freeze,
2003
- type: "shacl:Parameter".freeze
1999
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#boolean",
2000
+ "http://www.w3.org/ns/shacl#optional": "true",
2001
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint",
2002
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2003
+ type: "http://www.w3.org/ns/shacl#Parameter"
2004
2004
  term :QualifiedMinCountConstraintComponent,
2005
- comment: "A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape.".freeze,
2006
- isDefinedBy: "shacl:".freeze,
2007
- label: "Qualified-min-count constraint component".freeze,
2008
- "shacl:parameter": ["shacl:QualifiedMinCountConstraintComponent-qualifiedMinCount".freeze, "shacl:QualifiedMinCountConstraintComponent-qualifiedValueShape".freeze, "shacl:QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint".freeze],
2009
- type: "shacl:ConstraintComponent".freeze
2005
+ comment: {en: "A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape."},
2006
+ "http://www.w3.org/ns/shacl#parameter": ["http://www.w3.org/ns/shacl#QualifiedMinCountConstraintComponent-qualifiedMinCount", "http://www.w3.org/ns/shacl#QualifiedMinCountConstraintComponent-qualifiedValueShape", "http://www.w3.org/ns/shacl#QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint"],
2007
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2008
+ label: {en: "Qualified-min-count constraint component"},
2009
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
2010
2010
  term :"QualifiedMinCountConstraintComponent-qualifiedMinCount",
2011
- isDefinedBy: "shacl:".freeze,
2012
- "shacl:datatype": "xsd:integer".freeze,
2013
- "shacl:path": "shacl:qualifiedMinCount".freeze,
2014
- type: "shacl:Parameter".freeze
2011
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer",
2012
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedMinCount",
2013
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2014
+ type: "http://www.w3.org/ns/shacl#Parameter"
2015
2015
  term :"QualifiedMinCountConstraintComponent-qualifiedValueShape",
2016
- isDefinedBy: "shacl:".freeze,
2017
- "shacl:path": "shacl:qualifiedValueShape".freeze,
2018
- type: "shacl:Parameter".freeze
2016
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedValueShape",
2017
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2018
+ type: "http://www.w3.org/ns/shacl#Parameter"
2019
2019
  term :"QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint",
2020
- isDefinedBy: "shacl:".freeze,
2021
- "shacl:datatype": "xsd:boolean".freeze,
2022
- "shacl:optional": "true".freeze,
2023
- "shacl:path": "shacl:qualifiedValueShapesDisjoint".freeze,
2024
- type: "shacl:Parameter".freeze
2020
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#boolean",
2021
+ "http://www.w3.org/ns/shacl#optional": "true",
2022
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint",
2023
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2024
+ type: "http://www.w3.org/ns/shacl#Parameter"
2025
2025
  term :SPARQLConstraintComponent,
2026
- comment: "A constraint component that can be used to define constraints based on SPARQL queries.".freeze,
2027
- isDefinedBy: "shacl:".freeze,
2028
- label: "SPARQL constraint component".freeze,
2029
- "shacl:parameter": "shacl:SPARQLConstraintComponent-sparql".freeze,
2030
- type: "shacl:ConstraintComponent".freeze
2026
+ comment: {en: "A constraint component that can be used to define constraints based on SPARQL queries."},
2027
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#SPARQLConstraintComponent-sparql",
2028
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2029
+ label: {en: "SPARQL constraint component"},
2030
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
2031
2031
  term :"SPARQLConstraintComponent-sparql",
2032
- isDefinedBy: "shacl:".freeze,
2033
- "shacl:path": "shacl:sparql".freeze,
2034
- type: "shacl:Parameter".freeze
2032
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#sparql",
2033
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2034
+ type: "http://www.w3.org/ns/shacl#Parameter"
2035
2035
  term :UniqueLangConstraintComponent,
2036
- comment: "A constraint component that can be used to specify that no pair of value nodes may use the same language tag.".freeze,
2037
- isDefinedBy: "shacl:".freeze,
2038
- label: "Unique-languages constraint component".freeze,
2039
- "shacl:parameter": "shacl:UniqueLangConstraintComponent-uniqueLang".freeze,
2040
- type: "shacl:ConstraintComponent".freeze
2036
+ comment: {en: "A constraint component that can be used to specify that no pair of value nodes may use the same language tag."},
2037
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#UniqueLangConstraintComponent-uniqueLang",
2038
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2039
+ label: {en: "Unique-languages constraint component"},
2040
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
2041
2041
  term :"UniqueLangConstraintComponent-uniqueLang",
2042
- isDefinedBy: "shacl:".freeze,
2043
- "shacl:datatype": "xsd:boolean".freeze,
2044
- "shacl:maxCount": "1".freeze,
2045
- "shacl:path": "shacl:uniqueLang".freeze,
2046
- type: "shacl:Parameter".freeze
2042
+ "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#boolean",
2043
+ "http://www.w3.org/ns/shacl#maxCount": "1",
2044
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#uniqueLang",
2045
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2046
+ type: "http://www.w3.org/ns/shacl#Parameter"
2047
2047
  term :Violation,
2048
- comment: "The severity for a violation validation result.".freeze,
2049
- isDefinedBy: "shacl:".freeze,
2050
- label: "Violation".freeze,
2051
- type: "shacl:Severity".freeze
2048
+ comment: {en: "The severity for a violation validation result."},
2049
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2050
+ label: {en: "Violation"},
2051
+ type: "http://www.w3.org/ns/shacl#Severity"
2052
2052
  term :Warning,
2053
- comment: "The severity for a warning validation result.".freeze,
2054
- isDefinedBy: "shacl:".freeze,
2055
- label: "Warning".freeze,
2056
- type: "shacl:Severity".freeze
2053
+ comment: {en: "The severity for a warning validation result."},
2054
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2055
+ label: {en: "Warning"},
2056
+ type: "http://www.w3.org/ns/shacl#Severity"
2057
2057
  term :XoneConstraintComponent,
2058
- 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,
2059
- isDefinedBy: "shacl:".freeze,
2060
- label: "Exactly one constraint component".freeze,
2061
- "shacl:parameter": "shacl:XoneConstraintComponent-xone".freeze,
2062
- type: "shacl:ConstraintComponent".freeze
2058
+ comment: {en: "A constraint component that can be used to restrict the value nodes so that they conform to exactly one out of several provided shapes."},
2059
+ "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#XoneConstraintComponent-xone",
2060
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2061
+ label: {en: "Exactly one constraint component"},
2062
+ type: "http://www.w3.org/ns/shacl#ConstraintComponent"
2063
2063
  term :"XoneConstraintComponent-xone",
2064
- isDefinedBy: "shacl:".freeze,
2065
- "shacl:path": "shacl:xone".freeze,
2066
- type: "shacl:Parameter".freeze
2064
+ "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#xone",
2065
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2066
+ type: "http://www.w3.org/ns/shacl#Parameter"
2067
2067
  term :this,
2068
- comment: "A node expression that represents the current focus node.".freeze,
2069
- isDefinedBy: "shacl:".freeze,
2070
- label: "this".freeze,
2071
- type: "rdfs:Resource".freeze
2068
+ comment: {en: "A node expression that represents the current focus node."},
2069
+ isDefinedBy: "http://www.w3.org/ns/shacl#",
2070
+ label: {en: "this"},
2071
+ type: "http://www.w3.org/2000/01/rdf-schema#Resource"
2072
2072
  end
2073
2073
  end