@shaclmate/compiler 4.0.50 → 4.0.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (599) hide show
  1. package/dist/Compiler.d.ts +14 -0
  2. package/dist/Compiler.js +18 -0
  3. package/dist/Eithers.d.ts +14 -0
  4. package/dist/Eithers.js +67 -0
  5. package/dist/ShapesGraphToAstTransformer.d.ts +18 -0
  6. package/dist/ShapesGraphToAstTransformer.js +50 -0
  7. package/dist/_ShapesGraphToAstTransformer/ShapeStack.d.ts +15 -0
  8. package/dist/_ShapesGraphToAstTransformer/ShapeStack.js +51 -0
  9. package/dist/_ShapesGraphToAstTransformer/defaultNodeShapeNodeKinds.d.ts +3 -0
  10. package/dist/_ShapesGraphToAstTransformer/defaultNodeShapeNodeKinds.js +5 -0
  11. package/dist/_ShapesGraphToAstTransformer/shapeAstTypeName.d.ts +4 -0
  12. package/dist/_ShapesGraphToAstTransformer/shapeAstTypeName.js +24 -0
  13. package/dist/_ShapesGraphToAstTransformer/shapeNodeKinds.d.ts +9 -0
  14. package/dist/_ShapesGraphToAstTransformer/shapeNodeKinds.js +150 -0
  15. package/dist/_ShapesGraphToAstTransformer/shapeOntology.d.ts +5 -0
  16. package/dist/_ShapesGraphToAstTransformer/shapeOntology.js +26 -0
  17. package/dist/_ShapesGraphToAstTransformer/transformPropertyShapeToAstStructTypeField.d.ts +17 -0
  18. package/dist/_ShapesGraphToAstTransformer/transformPropertyShapeToAstStructTypeField.js +285 -0
  19. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstCompoundType.d.ts +10 -0
  20. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstCompoundType.js +92 -0
  21. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstListType.d.ts +11 -0
  22. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstListType.js +149 -0
  23. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstStructType.d.ts +7 -0
  24. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstStructType.js +171 -0
  25. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstTermType.d.ts +12 -0
  26. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstTermType.js +110 -0
  27. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstType.d.ts +11 -0
  28. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstType.js +46 -0
  29. package/dist/ast/AbstractCollectionType.d.ts +30 -0
  30. package/dist/ast/AbstractCollectionType.js +33 -0
  31. package/dist/ast/AbstractCompoundType.d.ts +45 -0
  32. package/dist/ast/AbstractCompoundType.js +81 -0
  33. package/dist/ast/AbstractContainerType.d.ts +44 -0
  34. package/dist/ast/AbstractContainerType.js +63 -0
  35. package/dist/ast/AbstractLazyType.d.ts +117 -0
  36. package/dist/ast/AbstractLazyType.js +40 -0
  37. package/dist/ast/AbstractTermType.d.ts +33 -0
  38. package/dist/ast/AbstractTermType.js +47 -0
  39. package/dist/ast/AbstractType.d.ts +55 -0
  40. package/dist/ast/AbstractType.js +55 -0
  41. package/dist/ast/Ast.d.ts +6 -0
  42. package/dist/ast/Ast.js +2 -0
  43. package/dist/ast/BlankNodeType.d.ts +11 -0
  44. package/dist/ast/BlankNodeType.js +17 -0
  45. package/dist/ast/DefaultValueType.d.ts +35 -0
  46. package/dist/ast/DefaultValueType.js +50 -0
  47. package/dist/ast/IdentifierType.d.ts +12 -0
  48. package/dist/ast/IdentifierType.js +20 -0
  49. package/dist/ast/IntersectionType.d.ts +14 -0
  50. package/dist/ast/IntersectionType.js +17 -0
  51. package/dist/ast/IriType.d.ts +10 -0
  52. package/dist/ast/IriType.js +10 -0
  53. package/dist/ast/LazyOptionType.d.ts +6 -0
  54. package/dist/ast/LazyOptionType.js +5 -0
  55. package/dist/ast/LazySetType.d.ts +6 -0
  56. package/dist/ast/LazySetType.js +5 -0
  57. package/dist/ast/LazyType.d.ts +5 -0
  58. package/dist/ast/LazyType.js +5 -0
  59. package/dist/ast/ListType.d.ts +44 -0
  60. package/dist/ast/ListType.js +56 -0
  61. package/dist/ast/LiteralType.d.ts +40 -0
  62. package/dist/ast/LiteralType.js +59 -0
  63. package/dist/ast/OptionType.d.ts +13 -0
  64. package/dist/ast/OptionType.js +21 -0
  65. package/dist/ast/SetType.d.ts +31 -0
  66. package/dist/ast/SetType.js +42 -0
  67. package/dist/ast/StructCompoundType.d.ts +12 -0
  68. package/dist/ast/StructCompoundType.js +87 -0
  69. package/dist/ast/StructIntersectionType.d.ts +4 -0
  70. package/dist/ast/StructIntersectionType.js +2 -0
  71. package/dist/ast/StructType.d.ts +178 -0
  72. package/dist/ast/StructType.js +314 -0
  73. package/dist/ast/StructUnionType.d.ts +4 -0
  74. package/dist/ast/StructUnionType.js +2 -0
  75. package/dist/ast/TermType.d.ts +14 -0
  76. package/dist/ast/TermType.js +16 -0
  77. package/dist/ast/Type.d.ts +20 -0
  78. package/dist/ast/Type.js +42 -0
  79. package/dist/ast/UnionType.d.ts +30 -0
  80. package/dist/ast/UnionType.js +27 -0
  81. package/dist/ast/equals.d.ts +12 -0
  82. package/dist/ast/equals.js +65 -0
  83. package/dist/ast/index.d.ts +21 -0
  84. package/dist/ast/index.js +21 -0
  85. package/dist/generators/AstJsonGenerator.d.ts +6 -0
  86. package/dist/generators/AstJsonGenerator.js +15 -0
  87. package/dist/generators/Cx2Generator.d.ts +10 -0
  88. package/dist/generators/Cx2Generator.js +140 -0
  89. package/dist/generators/Generator.d.ts +5 -0
  90. package/dist/generators/Generator.js +2 -0
  91. package/dist/generators/LabeledPropertyGraph.d.ts +42 -0
  92. package/dist/generators/LabeledPropertyGraph.js +2 -0
  93. package/dist/generators/index.d.ts +6 -0
  94. package/dist/generators/index.js +6 -0
  95. package/dist/generators/transformAstToLabeledPropertyGraph.d.ts +4 -0
  96. package/dist/generators/transformAstToLabeledPropertyGraph.js +78 -0
  97. package/dist/generators/ts/AbstractCollectionType.d.ts +37 -0
  98. package/dist/generators/ts/AbstractCollectionType.js +88 -0
  99. package/dist/generators/ts/AbstractContainerType.d.ts +53 -0
  100. package/dist/generators/ts/AbstractContainerType.js +97 -0
  101. package/dist/generators/ts/AbstractDateType.d.ts +23 -0
  102. package/dist/generators/ts/AbstractDateType.js +37 -0
  103. package/dist/generators/ts/AbstractIdentifierType.d.ts +21 -0
  104. package/dist/generators/ts/AbstractIdentifierType.js +25 -0
  105. package/dist/generators/ts/AbstractLazyType.d.ts +67 -0
  106. package/dist/generators/ts/AbstractLazyType.js +154 -0
  107. package/dist/generators/ts/AbstractLiteralType.d.ts +26 -0
  108. package/dist/generators/ts/AbstractLiteralType.js +15 -0
  109. package/dist/generators/ts/AbstractNumericType.d.ts +21 -0
  110. package/dist/generators/ts/AbstractNumericType.js +65 -0
  111. package/dist/generators/ts/AbstractObjectSetType.d.ts +36 -0
  112. package/dist/generators/ts/AbstractObjectSetType.js +44 -0
  113. package/dist/generators/ts/AbstractPrimitiveType.d.ts +32 -0
  114. package/dist/generators/ts/AbstractPrimitiveType.js +51 -0
  115. package/dist/generators/ts/AbstractTermType.d.ts +50 -0
  116. package/dist/generators/ts/AbstractTermType.js +102 -0
  117. package/dist/generators/ts/AbstractType.d.ts +345 -0
  118. package/dist/generators/ts/AbstractType.js +135 -0
  119. package/dist/generators/ts/BigDecimalType.d.ts +28 -0
  120. package/dist/generators/ts/BigDecimalType.js +58 -0
  121. package/dist/generators/ts/BigIntType.d.ts +17 -0
  122. package/dist/generators/ts/BigIntType.js +56 -0
  123. package/dist/generators/ts/BlankNodeType.d.ts +22 -0
  124. package/dist/generators/ts/BlankNodeType.js +67 -0
  125. package/dist/generators/ts/BooleanType.d.ts +21 -0
  126. package/dist/generators/ts/BooleanType.js +53 -0
  127. package/dist/generators/ts/DateTimeType.d.ts +13 -0
  128. package/dist/generators/ts/DateTimeType.js +31 -0
  129. package/dist/generators/ts/DateType.d.ts +14 -0
  130. package/dist/generators/ts/DateType.js +32 -0
  131. package/dist/generators/ts/DefaultValueType.d.ts +83 -0
  132. package/dist/generators/ts/DefaultValueType.js +143 -0
  133. package/dist/generators/ts/FloatType.d.ts +13 -0
  134. package/dist/generators/ts/FloatType.js +30 -0
  135. package/dist/generators/ts/GraphqlSchema.d.ts +22 -0
  136. package/dist/generators/ts/GraphqlSchema.js +87 -0
  137. package/dist/generators/ts/IdentifierType.d.ts +23 -0
  138. package/dist/generators/ts/IdentifierType.js +83 -0
  139. package/dist/generators/ts/Imports.d.ts +40 -0
  140. package/dist/generators/ts/Imports.js +41 -0
  141. package/dist/generators/ts/IntType.d.ts +13 -0
  142. package/dist/generators/ts/IntType.js +30 -0
  143. package/dist/generators/ts/IriType.d.ts +23 -0
  144. package/dist/generators/ts/IriType.js +112 -0
  145. package/dist/generators/ts/LazyOptionType.d.ts +36 -0
  146. package/dist/generators/ts/LazyOptionType.js +75 -0
  147. package/dist/generators/ts/LazySetType.d.ts +20 -0
  148. package/dist/generators/ts/LazySetType.js +76 -0
  149. package/dist/generators/ts/LazyType.d.ts +19 -0
  150. package/dist/generators/ts/LazyType.js +65 -0
  151. package/dist/generators/ts/ListType.d.ts +49 -0
  152. package/dist/generators/ts/ListType.js +161 -0
  153. package/dist/generators/ts/LiteralType.d.ts +27 -0
  154. package/dist/generators/ts/LiteralType.js +71 -0
  155. package/dist/generators/ts/ObjectSetType.d.ts +6 -0
  156. package/dist/generators/ts/ObjectSetType.js +36 -0
  157. package/dist/generators/ts/ObjectType.d.ts +105 -0
  158. package/dist/generators/ts/ObjectType.js +503 -0
  159. package/dist/generators/ts/ObjectUnionType.d.ts +20 -0
  160. package/dist/generators/ts/ObjectUnionType.js +223 -0
  161. package/dist/generators/ts/OptionType.d.ts +39 -0
  162. package/dist/generators/ts/OptionType.js +157 -0
  163. package/dist/generators/ts/RdfjsDatasetObjectSetType.d.ts +6 -0
  164. package/dist/generators/ts/RdfjsDatasetObjectSetType.js +323 -0
  165. package/dist/generators/ts/Reusables.d.ts +13 -0
  166. package/dist/generators/ts/Reusables.js +15 -0
  167. package/dist/generators/ts/SetType.d.ts +32 -0
  168. package/dist/generators/ts/SetType.js +132 -0
  169. package/dist/generators/ts/Snippet.d.ts +3 -0
  170. package/dist/generators/ts/Snippet.js +2 -0
  171. package/dist/generators/ts/SnippetFactory.d.ts +16 -0
  172. package/dist/generators/ts/SnippetFactory.js +2 -0
  173. package/dist/generators/ts/Snippets.d.ts +180 -0
  174. package/dist/generators/ts/Snippets.js +1184 -0
  175. package/dist/generators/ts/SparqlObjectSetType.d.ts +6 -0
  176. package/dist/generators/ts/SparqlObjectSetType.js +241 -0
  177. package/dist/generators/ts/StringType.d.ts +22 -0
  178. package/dist/generators/ts/StringType.js +68 -0
  179. package/dist/generators/ts/TermType.d.ts +31 -0
  180. package/dist/generators/ts/TermType.js +143 -0
  181. package/dist/generators/ts/TsFeature.d.ts +3 -0
  182. package/dist/generators/ts/TsFeature.js +28 -0
  183. package/dist/generators/ts/TsGenerator.d.ts +30 -0
  184. package/dist/generators/ts/TsGenerator.js +292 -0
  185. package/dist/generators/ts/Type.d.ts +25 -0
  186. package/dist/generators/ts/Type.js +2 -0
  187. package/dist/generators/ts/TypeFactory.d.ts +43 -0
  188. package/dist/generators/ts/TypeFactory.js +540 -0
  189. package/dist/generators/ts/Typeof.d.ts +2 -0
  190. package/dist/generators/ts/Typeof.js +2 -0
  191. package/dist/generators/ts/UnionType.d.ts +126 -0
  192. package/dist/generators/ts/UnionType.js +850 -0
  193. package/dist/generators/ts/ZodGenerator.d.ts +11 -0
  194. package/dist/generators/ts/ZodGenerator.js +60 -0
  195. package/dist/generators/ts/_ObjectType/AbstractProperty.d.ts +217 -0
  196. package/dist/generators/ts/_ObjectType/AbstractProperty.js +37 -0
  197. package/dist/generators/ts/_ObjectType/DiscriminantProperty.d.ts +45 -0
  198. package/dist/generators/ts/_ObjectType/DiscriminantProperty.js +104 -0
  199. package/dist/generators/ts/_ObjectType/IdentifierProperty.d.ts +43 -0
  200. package/dist/generators/ts/_ObjectType/IdentifierProperty.js +205 -0
  201. package/dist/generators/ts/_ObjectType/ObjectType_createFunctionExpression.d.ts +4 -0
  202. package/dist/generators/ts/_ObjectType/ObjectType_createFunctionExpression.js +28 -0
  203. package/dist/generators/ts/_ObjectType/ObjectType_equalsFunctionExpression.d.ts +4 -0
  204. package/dist/generators/ts/_ObjectType/ObjectType_equalsFunctionExpression.js +19 -0
  205. package/dist/generators/ts/_ObjectType/ObjectType_filterFunctionExpression.d.ts +4 -0
  206. package/dist/generators/ts/_ObjectType/ObjectType_filterFunctionExpression.js +12 -0
  207. package/dist/generators/ts/_ObjectType/ObjectType_filterTypeExpression.d.ts +4 -0
  208. package/dist/generators/ts/_ObjectType/ObjectType_filterTypeExpression.js +20 -0
  209. package/dist/generators/ts/_ObjectType/ObjectType_focusSparqlConstructTriplesFunctionExpression.d.ts +4 -0
  210. package/dist/generators/ts/_ObjectType/ObjectType_focusSparqlConstructTriplesFunctionExpression.js +46 -0
  211. package/dist/generators/ts/_ObjectType/ObjectType_focusSparqlWherePatternsFunctionExpression.d.ts +4 -0
  212. package/dist/generators/ts/_ObjectType/ObjectType_focusSparqlWherePatternsFunctionExpression.js +79 -0
  213. package/dist/generators/ts/_ObjectType/ObjectType_fromJsonFunctionExpression.d.ts +4 -0
  214. package/dist/generators/ts/_ObjectType/ObjectType_fromJsonFunctionExpression.js +12 -0
  215. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceFunctionExpression.d.ts +4 -0
  216. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceFunctionExpression.js +38 -0
  217. package/dist/generators/ts/_ObjectType/ObjectType_graphqlTypeExpression.d.ts +4 -0
  218. package/dist/generators/ts/_ObjectType/ObjectType_graphqlTypeExpression.js +26 -0
  219. package/dist/generators/ts/_ObjectType/ObjectType_hashFunctionExpression.d.ts +4 -0
  220. package/dist/generators/ts/_ObjectType/ObjectType_hashFunctionExpression.js +30 -0
  221. package/dist/generators/ts/_ObjectType/ObjectType_identifierTypeDeclarations.d.ts +4 -0
  222. package/dist/generators/ts/_ObjectType/ObjectType_identifierTypeDeclarations.js +13 -0
  223. package/dist/generators/ts/_ObjectType/ObjectType_isTypeFunctionDeclaration.d.ts +5 -0
  224. package/dist/generators/ts/_ObjectType/ObjectType_isTypeFunctionDeclaration.js +20 -0
  225. package/dist/generators/ts/_ObjectType/ObjectType_jsonParseFunctionDeclaration.d.ts +4 -0
  226. package/dist/generators/ts/_ObjectType/ObjectType_jsonParseFunctionDeclaration.js +10 -0
  227. package/dist/generators/ts/_ObjectType/ObjectType_jsonSchemaExpression.d.ts +4 -0
  228. package/dist/generators/ts/_ObjectType/ObjectType_jsonSchemaExpression.js +22 -0
  229. package/dist/generators/ts/_ObjectType/ObjectType_jsonTypeExpression.d.ts +4 -0
  230. package/dist/generators/ts/_ObjectType/ObjectType_jsonTypeExpression.js +5 -0
  231. package/dist/generators/ts/_ObjectType/ObjectType_jsonUiSchemaFunctionExpression.d.ts +4 -0
  232. package/dist/generators/ts/_ObjectType/ObjectType_jsonUiSchemaFunctionExpression.js +17 -0
  233. package/dist/generators/ts/_ObjectType/ObjectType_objectSetMethodNames.d.ts +11 -0
  234. package/dist/generators/ts/_ObjectType/ObjectType_objectSetMethodNames.js +23 -0
  235. package/dist/generators/ts/_ObjectType/ObjectType_schemaExpression.d.ts +4 -0
  236. package/dist/generators/ts/_ObjectType/ObjectType_schemaExpression.js +21 -0
  237. package/dist/generators/ts/_ObjectType/ObjectType_schemaTypeExpression.d.ts +4 -0
  238. package/dist/generators/ts/_ObjectType/ObjectType_schemaTypeExpression.js +18 -0
  239. package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryFunctionDeclaration.d.ts +10 -0
  240. package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryFunctionDeclaration.js +35 -0
  241. package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryStringFunctionDeclaration.d.ts +10 -0
  242. package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryStringFunctionDeclaration.js +8 -0
  243. package/dist/generators/ts/_ObjectType/ObjectType_toJsonFunctionExpression.d.ts +4 -0
  244. package/dist/generators/ts/_ObjectType/ObjectType_toJsonFunctionExpression.js +14 -0
  245. package/dist/generators/ts/_ObjectType/ObjectType_toRdfResourceFunctionExpression.d.ts +4 -0
  246. package/dist/generators/ts/_ObjectType/ObjectType_toRdfResourceFunctionExpression.js +33 -0
  247. package/dist/generators/ts/_ObjectType/ObjectType_toStringFunctionExpression.d.ts +4 -0
  248. package/dist/generators/ts/_ObjectType/ObjectType_toStringFunctionExpression.js +7 -0
  249. package/dist/generators/ts/_ObjectType/ObjectType_toStringRecordFunctionExpression.d.ts +4 -0
  250. package/dist/generators/ts/_ObjectType/ObjectType_toStringRecordFunctionExpression.js +5 -0
  251. package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlConstructTriplesFunctionExpression.d.ts +4 -0
  252. package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlConstructTriplesFunctionExpression.js +8 -0
  253. package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlWherePatternsFunctionExpression.d.ts +4 -0
  254. package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlWherePatternsFunctionExpression.js +10 -0
  255. package/dist/generators/ts/_ObjectType/Property.d.ts +6 -0
  256. package/dist/generators/ts/_ObjectType/Property.js +2 -0
  257. package/dist/generators/ts/_ObjectType/ShaclProperty.d.ts +53 -0
  258. package/dist/generators/ts/_ObjectType/ShaclProperty.js +284 -0
  259. package/dist/generators/ts/_snippets/snippets_BlankNodeFilter.d.ts +3 -0
  260. package/dist/generators/ts/_snippets/snippets_BlankNodeFilter.js +5 -0
  261. package/dist/generators/ts/_snippets/snippets_BlankNodeSchema.d.ts +3 -0
  262. package/dist/generators/ts/_snippets/snippets_BlankNodeSchema.js +6 -0
  263. package/dist/generators/ts/_snippets/snippets_BooleanFilter.d.ts +3 -0
  264. package/dist/generators/ts/_snippets/snippets_BooleanFilter.js +6 -0
  265. package/dist/generators/ts/_snippets/snippets_BooleanSchema.d.ts +3 -0
  266. package/dist/generators/ts/_snippets/snippets_BooleanSchema.js +8 -0
  267. package/dist/generators/ts/_snippets/snippets_CollectionFilter.d.ts +3 -0
  268. package/dist/generators/ts/_snippets/snippets_CollectionFilter.js +7 -0
  269. package/dist/generators/ts/_snippets/snippets_CollectionSchema.d.ts +3 -0
  270. package/dist/generators/ts/_snippets/snippets_CollectionSchema.js +8 -0
  271. package/dist/generators/ts/_snippets/snippets_ConversionFunction.d.ts +3 -0
  272. package/dist/generators/ts/_snippets/snippets_ConversionFunction.js +4 -0
  273. package/dist/generators/ts/_snippets/snippets_DateFilter.d.ts +3 -0
  274. package/dist/generators/ts/_snippets/snippets_DateFilter.js +10 -0
  275. package/dist/generators/ts/_snippets/snippets_DateSchema.d.ts +3 -0
  276. package/dist/generators/ts/_snippets/snippets_DateSchema.js +8 -0
  277. package/dist/generators/ts/_snippets/snippets_DefaultValueSchema.d.ts +3 -0
  278. package/dist/generators/ts/_snippets/snippets_DefaultValueSchema.js +8 -0
  279. package/dist/generators/ts/_snippets/snippets_EqualsFunction.d.ts +3 -0
  280. package/dist/generators/ts/_snippets/snippets_EqualsFunction.js +4 -0
  281. package/dist/generators/ts/_snippets/snippets_EqualsResult.d.ts +3 -0
  282. package/dist/generators/ts/_snippets/snippets_EqualsResult.js +63 -0
  283. package/dist/generators/ts/_snippets/snippets_FocusSparqlConstructTriplesFunction.d.ts +3 -0
  284. package/dist/generators/ts/_snippets/snippets_FocusSparqlConstructTriplesFunction.js +10 -0
  285. package/dist/generators/ts/_snippets/snippets_FocusSparqlWherePatternsFunction.d.ts +3 -0
  286. package/dist/generators/ts/_snippets/snippets_FocusSparqlWherePatternsFunction.js +11 -0
  287. package/dist/generators/ts/_snippets/snippets_FromRdfResourceFunction.d.ts +3 -0
  288. package/dist/generators/ts/_snippets/snippets_FromRdfResourceFunction.js +13 -0
  289. package/dist/generators/ts/_snippets/snippets_FromRdfResourceValuesFunction.d.ts +3 -0
  290. package/dist/generators/ts/_snippets/snippets_FromRdfResourceValuesFunction.js +16 -0
  291. package/dist/generators/ts/_snippets/snippets_HashFunction.d.ts +3 -0
  292. package/dist/generators/ts/_snippets/snippets_HashFunction.js +4 -0
  293. package/dist/generators/ts/_snippets/snippets_Hasher.d.ts +3 -0
  294. package/dist/generators/ts/_snippets/snippets_Hasher.js +3 -0
  295. package/dist/generators/ts/_snippets/snippets_IdentifierFilter.d.ts +3 -0
  296. package/dist/generators/ts/_snippets/snippets_IdentifierFilter.js +7 -0
  297. package/dist/generators/ts/_snippets/snippets_IdentifierSchema.d.ts +3 -0
  298. package/dist/generators/ts/_snippets/snippets_IdentifierSchema.js +7 -0
  299. package/dist/generators/ts/_snippets/snippets_IdentifierSet.d.ts +3 -0
  300. package/dist/generators/ts/_snippets/snippets_IdentifierSet.js +27 -0
  301. package/dist/generators/ts/_snippets/snippets_IriFilter.d.ts +3 -0
  302. package/dist/generators/ts/_snippets/snippets_IriFilter.js +6 -0
  303. package/dist/generators/ts/_snippets/snippets_IriSchema.d.ts +3 -0
  304. package/dist/generators/ts/_snippets/snippets_IriSchema.js +8 -0
  305. package/dist/generators/ts/_snippets/snippets_Lazy.d.ts +3 -0
  306. package/dist/generators/ts/_snippets/snippets_Lazy.js +22 -0
  307. package/dist/generators/ts/_snippets/snippets_LazyOption.d.ts +3 -0
  308. package/dist/generators/ts/_snippets/snippets_LazyOption.js +25 -0
  309. package/dist/generators/ts/_snippets/snippets_LazySet.d.ts +3 -0
  310. package/dist/generators/ts/_snippets/snippets_LazySet.js +40 -0
  311. package/dist/generators/ts/_snippets/snippets_LiteralFilter.d.ts +3 -0
  312. package/dist/generators/ts/_snippets/snippets_LiteralFilter.js +4 -0
  313. package/dist/generators/ts/_snippets/snippets_LiteralSchema.d.ts +3 -0
  314. package/dist/generators/ts/_snippets/snippets_LiteralSchema.js +9 -0
  315. package/dist/generators/ts/_snippets/snippets_MaybeFilter.d.ts +3 -0
  316. package/dist/generators/ts/_snippets/snippets_MaybeFilter.js +4 -0
  317. package/dist/generators/ts/_snippets/snippets_MaybeSchema.d.ts +3 -0
  318. package/dist/generators/ts/_snippets/snippets_MaybeSchema.js +7 -0
  319. package/dist/generators/ts/_snippets/snippets_NumericFilter.d.ts +3 -0
  320. package/dist/generators/ts/_snippets/snippets_NumericFilter.js +10 -0
  321. package/dist/generators/ts/_snippets/snippets_NumericSchema.d.ts +3 -0
  322. package/dist/generators/ts/_snippets/snippets_NumericSchema.js +8 -0
  323. package/dist/generators/ts/_snippets/snippets_PropertyPath.d.ts +6 -0
  324. package/dist/generators/ts/_snippets/snippets_PropertyPath.js +46 -0
  325. package/dist/generators/ts/_snippets/snippets_RdfVocabularies.d.ts +3 -0
  326. package/dist/generators/ts/_snippets/snippets_RdfVocabularies.js +40 -0
  327. package/dist/generators/ts/_snippets/snippets_ShaclPropertySchema.d.ts +3 -0
  328. package/dist/generators/ts/_snippets/snippets_ShaclPropertySchema.js +8 -0
  329. package/dist/generators/ts/_snippets/snippets_SparqlFilterPattern.d.ts +3 -0
  330. package/dist/generators/ts/_snippets/snippets_SparqlFilterPattern.js +3 -0
  331. package/dist/generators/ts/_snippets/snippets_SparqlPattern.d.ts +3 -0
  332. package/dist/generators/ts/_snippets/snippets_SparqlPattern.js +3 -0
  333. package/dist/generators/ts/_snippets/snippets_SparqlPattern_isSolutionGenerating.d.ts +3 -0
  334. package/dist/generators/ts/_snippets/snippets_SparqlPattern_isSolutionGenerating.js +30 -0
  335. package/dist/generators/ts/_snippets/snippets_StringFilter.d.ts +3 -0
  336. package/dist/generators/ts/_snippets/snippets_StringFilter.js +8 -0
  337. package/dist/generators/ts/_snippets/snippets_StringSchema.d.ts +3 -0
  338. package/dist/generators/ts/_snippets/snippets_StringSchema.js +9 -0
  339. package/dist/generators/ts/_snippets/snippets_TermFilter.d.ts +3 -0
  340. package/dist/generators/ts/_snippets/snippets_TermFilter.js +9 -0
  341. package/dist/generators/ts/_snippets/snippets_TermSchema.d.ts +3 -0
  342. package/dist/generators/ts/_snippets/snippets_TermSchema.js +9 -0
  343. package/dist/generators/ts/_snippets/snippets_ToRdfResourceFunction.d.ts +3 -0
  344. package/dist/generators/ts/_snippets/snippets_ToRdfResourceFunction.js +11 -0
  345. package/dist/generators/ts/_snippets/snippets_ToRdfResourceValuesFunction.d.ts +3 -0
  346. package/dist/generators/ts/_snippets/snippets_ToRdfResourceValuesFunction.js +16 -0
  347. package/dist/generators/ts/_snippets/snippets_UnwrapR.d.ts +3 -0
  348. package/dist/generators/ts/_snippets/snippets_UnwrapR.js +4 -0
  349. package/dist/generators/ts/_snippets/snippets_ValidationFunction.d.ts +3 -0
  350. package/dist/generators/ts/_snippets/snippets_ValidationFunction.js +4 -0
  351. package/dist/generators/ts/_snippets/snippets_ValueSparqlConstructTriplesFunction.d.ts +3 -0
  352. package/dist/generators/ts/_snippets/snippets_ValueSparqlConstructTriplesFunction.js +11 -0
  353. package/dist/generators/ts/_snippets/snippets_ValueSparqlWherePatternsFunction.d.ts +3 -0
  354. package/dist/generators/ts/_snippets/snippets_ValueSparqlWherePatternsFunction.js +13 -0
  355. package/dist/generators/ts/_snippets/snippets__FromRdfResourceFunction.d.ts +3 -0
  356. package/dist/generators/ts/_snippets/snippets__FromRdfResourceFunction.js +13 -0
  357. package/dist/generators/ts/_snippets/snippets__ToRdfResourceFunction.d.ts +3 -0
  358. package/dist/generators/ts/_snippets/snippets__ToRdfResourceFunction.js +12 -0
  359. package/dist/generators/ts/_snippets/snippets_arrayEquals.d.ts +3 -0
  360. package/dist/generators/ts/_snippets/snippets_arrayEquals.js +68 -0
  361. package/dist/generators/ts/_snippets/snippets_arrayIntersection.d.ts +3 -0
  362. package/dist/generators/ts/_snippets/snippets_arrayIntersection.js +29 -0
  363. package/dist/generators/ts/_snippets/snippets_bigDecimalFromRdfResourceValues.d.ts +3 -0
  364. package/dist/generators/ts/_snippets/snippets_bigDecimalFromRdfResourceValues.js +6 -0
  365. package/dist/generators/ts/_snippets/snippets_bigDecimalLiteral.d.ts +3 -0
  366. package/dist/generators/ts/_snippets/snippets_bigDecimalLiteral.js +9 -0
  367. package/dist/generators/ts/_snippets/snippets_bigDecimalSparqlWherePatterns.d.ts +3 -0
  368. package/dist/generators/ts/_snippets/snippets_bigDecimalSparqlWherePatterns.js +83 -0
  369. package/dist/generators/ts/_snippets/snippets_bigIntFromRdfResourceValues.d.ts +3 -0
  370. package/dist/generators/ts/_snippets/snippets_bigIntFromRdfResourceValues.js +6 -0
  371. package/dist/generators/ts/_snippets/snippets_blankNodeFromRdfResourceValues.d.ts +3 -0
  372. package/dist/generators/ts/_snippets/snippets_blankNodeFromRdfResourceValues.js +6 -0
  373. package/dist/generators/ts/_snippets/snippets_blankNodeSparqlWherePatterns.d.ts +3 -0
  374. package/dist/generators/ts/_snippets/snippets_blankNodeSparqlWherePatterns.js +5 -0
  375. package/dist/generators/ts/_snippets/snippets_booleanEquals.d.ts +3 -0
  376. package/dist/generators/ts/_snippets/snippets_booleanEquals.js +16 -0
  377. package/dist/generators/ts/_snippets/snippets_booleanFromRdfResourceValues.d.ts +3 -0
  378. package/dist/generators/ts/_snippets/snippets_booleanFromRdfResourceValues.js +6 -0
  379. package/dist/generators/ts/_snippets/snippets_booleanSparqlWherePatterns.d.ts +3 -0
  380. package/dist/generators/ts/_snippets/snippets_booleanSparqlWherePatterns.js +15 -0
  381. package/dist/generators/ts/_snippets/snippets_compactRecord.d.ts +3 -0
  382. package/dist/generators/ts/_snippets/snippets_compactRecord.js +15 -0
  383. package/dist/generators/ts/_snippets/snippets_convertToArraySet.d.ts +3 -0
  384. package/dist/generators/ts/_snippets/snippets_convertToArraySet.js +8 -0
  385. package/dist/generators/ts/_snippets/snippets_convertToBlankNode.d.ts +3 -0
  386. package/dist/generators/ts/_snippets/snippets_convertToBlankNode.js +11 -0
  387. package/dist/generators/ts/_snippets/snippets_convertToBlankNodeIdentifierProperty.d.ts +3 -0
  388. package/dist/generators/ts/_snippets/snippets_convertToBlankNodeIdentifierProperty.js +17 -0
  389. package/dist/generators/ts/_snippets/snippets_convertToIdentifier.d.ts +3 -0
  390. package/dist/generators/ts/_snippets/snippets_convertToIdentifier.js +13 -0
  391. package/dist/generators/ts/_snippets/snippets_convertToIdentifierProperty.d.ts +3 -0
  392. package/dist/generators/ts/_snippets/snippets_convertToIdentifierProperty.js +21 -0
  393. package/dist/generators/ts/_snippets/snippets_convertToIri.d.ts +3 -0
  394. package/dist/generators/ts/_snippets/snippets_convertToIri.js +11 -0
  395. package/dist/generators/ts/_snippets/snippets_convertToIriIdentifierProperty.d.ts +3 -0
  396. package/dist/generators/ts/_snippets/snippets_convertToIriIdentifierProperty.js +17 -0
  397. package/dist/generators/ts/_snippets/snippets_convertToLazy.d.ts +3 -0
  398. package/dist/generators/ts/_snippets/snippets_convertToLazy.js +15 -0
  399. package/dist/generators/ts/_snippets/snippets_convertToLazyOption.d.ts +3 -0
  400. package/dist/generators/ts/_snippets/snippets_convertToLazyOption.js +33 -0
  401. package/dist/generators/ts/_snippets/snippets_convertToLazySet.d.ts +3 -0
  402. package/dist/generators/ts/_snippets/snippets_convertToLazySet.js +27 -0
  403. package/dist/generators/ts/_snippets/snippets_convertToList.d.ts +3 -0
  404. package/dist/generators/ts/_snippets/snippets_convertToList.js +7 -0
  405. package/dist/generators/ts/_snippets/snippets_convertToLiteral.d.ts +3 -0
  406. package/dist/generators/ts/_snippets/snippets_convertToLiteral.js +13 -0
  407. package/dist/generators/ts/_snippets/snippets_convertToMaybe.d.ts +3 -0
  408. package/dist/generators/ts/_snippets/snippets_convertToMaybe.js +19 -0
  409. package/dist/generators/ts/_snippets/snippets_convertToScalarSet.d.ts +3 -0
  410. package/dist/generators/ts/_snippets/snippets_convertToScalarSet.js +15 -0
  411. package/dist/generators/ts/_snippets/snippets_convertWithDefaultValue.d.ts +3 -0
  412. package/dist/generators/ts/_snippets/snippets_convertWithDefaultValue.js +11 -0
  413. package/dist/generators/ts/_snippets/snippets_dateEquals.d.ts +3 -0
  414. package/dist/generators/ts/_snippets/snippets_dateEquals.js +13 -0
  415. package/dist/generators/ts/_snippets/snippets_dateFromRdfResourceValues.d.ts +3 -0
  416. package/dist/generators/ts/_snippets/snippets_dateFromRdfResourceValues.js +6 -0
  417. package/dist/generators/ts/_snippets/snippets_dateSparqlWherePatterns.d.ts +3 -0
  418. package/dist/generators/ts/_snippets/snippets_dateSparqlWherePatterns.js +71 -0
  419. package/dist/generators/ts/_snippets/snippets_dateTimeFromRdfResourceValues.d.ts +3 -0
  420. package/dist/generators/ts/_snippets/snippets_dateTimeFromRdfResourceValues.js +6 -0
  421. package/dist/generators/ts/_snippets/snippets_decodeBigDecimalLiteral.d.ts +3 -0
  422. package/dist/generators/ts/_snippets/snippets_decodeBigDecimalLiteral.js +9 -0
  423. package/dist/generators/ts/_snippets/snippets_deduplicateSparqlPatterns.d.ts +3 -0
  424. package/dist/generators/ts/_snippets/snippets_deduplicateSparqlPatterns.js +19 -0
  425. package/dist/generators/ts/_snippets/snippets_defaultValueFromRdfResourceValues.d.ts +3 -0
  426. package/dist/generators/ts/_snippets/snippets_defaultValueFromRdfResourceValues.js +10 -0
  427. package/dist/generators/ts/_snippets/snippets_defaultValueSparqlWherePatterns.d.ts +3 -0
  428. package/dist/generators/ts/_snippets/snippets_defaultValueSparqlWherePatterns.js +9 -0
  429. package/dist/generators/ts/_snippets/snippets_ensureRdfResourceType.d.ts +3 -0
  430. package/dist/generators/ts/_snippets/snippets_ensureRdfResourceType.js +16 -0
  431. package/dist/generators/ts/_snippets/snippets_filterArray.d.ts +3 -0
  432. package/dist/generators/ts/_snippets/snippets_filterArray.js +22 -0
  433. package/dist/generators/ts/_snippets/snippets_filterBigDecimal.d.ts +3 -0
  434. package/dist/generators/ts/_snippets/snippets_filterBigDecimal.js +26 -0
  435. package/dist/generators/ts/_snippets/snippets_filterBlankNode.d.ts +3 -0
  436. package/dist/generators/ts/_snippets/snippets_filterBlankNode.js +6 -0
  437. package/dist/generators/ts/_snippets/snippets_filterBoolean.d.ts +3 -0
  438. package/dist/generators/ts/_snippets/snippets_filterBoolean.js +10 -0
  439. package/dist/generators/ts/_snippets/snippets_filterDate.d.ts +3 -0
  440. package/dist/generators/ts/_snippets/snippets_filterDate.js +26 -0
  441. package/dist/generators/ts/_snippets/snippets_filterIdentifier.d.ts +3 -0
  442. package/dist/generators/ts/_snippets/snippets_filterIdentifier.js +14 -0
  443. package/dist/generators/ts/_snippets/snippets_filterIri.d.ts +3 -0
  444. package/dist/generators/ts/_snippets/snippets_filterIri.js +10 -0
  445. package/dist/generators/ts/_snippets/snippets_filterLiteral.d.ts +3 -0
  446. package/dist/generators/ts/_snippets/snippets_filterLiteral.js +6 -0
  447. package/dist/generators/ts/_snippets/snippets_filterMaybe.d.ts +3 -0
  448. package/dist/generators/ts/_snippets/snippets_filterMaybe.js +22 -0
  449. package/dist/generators/ts/_snippets/snippets_filterNumeric.d.ts +3 -0
  450. package/dist/generators/ts/_snippets/snippets_filterNumeric.js +26 -0
  451. package/dist/generators/ts/_snippets/snippets_filterString.d.ts +3 -0
  452. package/dist/generators/ts/_snippets/snippets_filterString.js +18 -0
  453. package/dist/generators/ts/_snippets/snippets_filterTerm.d.ts +3 -0
  454. package/dist/generators/ts/_snippets/snippets_filterTerm.js +22 -0
  455. package/dist/generators/ts/_snippets/snippets_floatFromRdfResourceValues.d.ts +3 -0
  456. package/dist/generators/ts/_snippets/snippets_floatFromRdfResourceValues.js +6 -0
  457. package/dist/generators/ts/_snippets/snippets_hashArray.d.ts +3 -0
  458. package/dist/generators/ts/_snippets/snippets_hashArray.js +11 -0
  459. package/dist/generators/ts/_snippets/snippets_hashBigDecimal.d.ts +3 -0
  460. package/dist/generators/ts/_snippets/snippets_hashBigDecimal.js +7 -0
  461. package/dist/generators/ts/_snippets/snippets_hashBoolean.d.ts +3 -0
  462. package/dist/generators/ts/_snippets/snippets_hashBoolean.js +7 -0
  463. package/dist/generators/ts/_snippets/snippets_hashDate.d.ts +3 -0
  464. package/dist/generators/ts/_snippets/snippets_hashDate.js +7 -0
  465. package/dist/generators/ts/_snippets/snippets_hashDateTime.d.ts +3 -0
  466. package/dist/generators/ts/_snippets/snippets_hashDateTime.js +7 -0
  467. package/dist/generators/ts/_snippets/snippets_hashMaybe.d.ts +3 -0
  468. package/dist/generators/ts/_snippets/snippets_hashMaybe.js +11 -0
  469. package/dist/generators/ts/_snippets/snippets_hashNumeric.d.ts +3 -0
  470. package/dist/generators/ts/_snippets/snippets_hashNumeric.js +7 -0
  471. package/dist/generators/ts/_snippets/snippets_hashString.d.ts +3 -0
  472. package/dist/generators/ts/_snippets/snippets_hashString.js +7 -0
  473. package/dist/generators/ts/_snippets/snippets_hashTerm.d.ts +3 -0
  474. package/dist/generators/ts/_snippets/snippets_hashTerm.js +12 -0
  475. package/dist/generators/ts/_snippets/snippets_identifierFromRdfResourceValues.d.ts +3 -0
  476. package/dist/generators/ts/_snippets/snippets_identifierFromRdfResourceValues.js +6 -0
  477. package/dist/generators/ts/_snippets/snippets_identifierSparqlWherePatterns.d.ts +3 -0
  478. package/dist/generators/ts/_snippets/snippets_identifierSparqlWherePatterns.js +30 -0
  479. package/dist/generators/ts/_snippets/snippets_identityConversionFunction.d.ts +3 -0
  480. package/dist/generators/ts/_snippets/snippets_identityConversionFunction.js +6 -0
  481. package/dist/generators/ts/_snippets/snippets_identityValidationFunction.d.ts +3 -0
  482. package/dist/generators/ts/_snippets/snippets_identityValidationFunction.js +6 -0
  483. package/dist/generators/ts/_snippets/snippets_intFromRdfResourceValues.d.ts +3 -0
  484. package/dist/generators/ts/_snippets/snippets_intFromRdfResourceValues.js +6 -0
  485. package/dist/generators/ts/_snippets/snippets_iriFromRdfResourceValues.d.ts +3 -0
  486. package/dist/generators/ts/_snippets/snippets_iriFromRdfResourceValues.js +6 -0
  487. package/dist/generators/ts/_snippets/snippets_iriSparqlWherePatterns.d.ts +3 -0
  488. package/dist/generators/ts/_snippets/snippets_iriSparqlWherePatterns.js +13 -0
  489. package/dist/generators/ts/_snippets/snippets_liftSparqlPatterns.d.ts +3 -0
  490. package/dist/generators/ts/_snippets/snippets_liftSparqlPatterns.js +15 -0
  491. package/dist/generators/ts/_snippets/snippets_listFromRdfResourceValues.d.ts +3 -0
  492. package/dist/generators/ts/_snippets/snippets_listFromRdfResourceValues.js +15 -0
  493. package/dist/generators/ts/_snippets/snippets_listSparqlConstructTriples.d.ts +3 -0
  494. package/dist/generators/ts/_snippets/snippets_listSparqlConstructTriples.js +37 -0
  495. package/dist/generators/ts/_snippets/snippets_listSparqlWherePatterns.d.ts +3 -0
  496. package/dist/generators/ts/_snippets/snippets_listSparqlWherePatterns.js +116 -0
  497. package/dist/generators/ts/_snippets/snippets_literalFactory.d.ts +3 -0
  498. package/dist/generators/ts/_snippets/snippets_literalFactory.js +3 -0
  499. package/dist/generators/ts/_snippets/snippets_literalFromRdfResourceValues.d.ts +3 -0
  500. package/dist/generators/ts/_snippets/snippets_literalFromRdfResourceValues.js +6 -0
  501. package/dist/generators/ts/_snippets/snippets_literalSchemaSparqlPatterns.d.ts +3 -0
  502. package/dist/generators/ts/_snippets/snippets_literalSchemaSparqlPatterns.js +39 -0
  503. package/dist/generators/ts/_snippets/snippets_literalSparqlWherePatterns.d.ts +3 -0
  504. package/dist/generators/ts/_snippets/snippets_literalSparqlWherePatterns.js +5 -0
  505. package/dist/generators/ts/_snippets/snippets_maybeEquals.d.ts +3 -0
  506. package/dist/generators/ts/_snippets/snippets_maybeEquals.js +31 -0
  507. package/dist/generators/ts/_snippets/snippets_maybeFromRdfResourceValues.d.ts +3 -0
  508. package/dist/generators/ts/_snippets/snippets_maybeFromRdfResourceValues.js +11 -0
  509. package/dist/generators/ts/_snippets/snippets_maybeSparqlConstructTriples.d.ts +3 -0
  510. package/dist/generators/ts/_snippets/snippets_maybeSparqlConstructTriples.js +6 -0
  511. package/dist/generators/ts/_snippets/snippets_maybeSparqlWherePatterns.d.ts +3 -0
  512. package/dist/generators/ts/_snippets/snippets_maybeSparqlWherePatterns.js +21 -0
  513. package/dist/generators/ts/_snippets/snippets_monkeyPatchObject.d.ts +3 -0
  514. package/dist/generators/ts/_snippets/snippets_monkeyPatchObject.js +16 -0
  515. package/dist/generators/ts/_snippets/snippets_mutableListFromRdfResourceValues.d.ts +3 -0
  516. package/dist/generators/ts/_snippets/snippets_mutableListFromRdfResourceValues.js +8 -0
  517. package/dist/generators/ts/_snippets/snippets_mutableSetFromRdfResourceValues.d.ts +3 -0
  518. package/dist/generators/ts/_snippets/snippets_mutableSetFromRdfResourceValues.js +8 -0
  519. package/dist/generators/ts/_snippets/snippets_normalizeSparqlWherePatterns.d.ts +3 -0
  520. package/dist/generators/ts/_snippets/snippets_normalizeSparqlWherePatterns.js +92 -0
  521. package/dist/generators/ts/_snippets/snippets_numericSparqlWherePatterns.d.ts +3 -0
  522. package/dist/generators/ts/_snippets/snippets_numericSparqlWherePatterns.js +62 -0
  523. package/dist/generators/ts/_snippets/snippets_parseBlankNode.d.ts +3 -0
  524. package/dist/generators/ts/_snippets/snippets_parseBlankNode.js +9 -0
  525. package/dist/generators/ts/_snippets/snippets_parseIdentifier.d.ts +3 -0
  526. package/dist/generators/ts/_snippets/snippets_parseIdentifier.js +4 -0
  527. package/dist/generators/ts/_snippets/snippets_parseIri.d.ts +3 -0
  528. package/dist/generators/ts/_snippets/snippets_parseIri.js +9 -0
  529. package/dist/generators/ts/_snippets/snippets_propertyEquals.d.ts +3 -0
  530. package/dist/generators/ts/_snippets/snippets_propertyEquals.js +11 -0
  531. package/dist/generators/ts/_snippets/snippets_rdfResourceIdentifierValues.d.ts +3 -0
  532. package/dist/generators/ts/_snippets/snippets_rdfResourceIdentifierValues.js +12 -0
  533. package/dist/generators/ts/_snippets/snippets_sequenceRecord.d.ts +3 -0
  534. package/dist/generators/ts/_snippets/snippets_sequenceRecord.js +18 -0
  535. package/dist/generators/ts/_snippets/snippets_setFromRdfResourceValues.d.ts +3 -0
  536. package/dist/generators/ts/_snippets/snippets_setFromRdfResourceValues.js +9 -0
  537. package/dist/generators/ts/_snippets/snippets_setSparqlConstructTriples.d.ts +3 -0
  538. package/dist/generators/ts/_snippets/snippets_setSparqlConstructTriples.js +6 -0
  539. package/dist/generators/ts/_snippets/snippets_setSparqlWherePatterns.d.ts +3 -0
  540. package/dist/generators/ts/_snippets/snippets_setSparqlWherePatterns.js +17 -0
  541. package/dist/generators/ts/_snippets/snippets_shaclPropertyFromRdf.d.ts +3 -0
  542. package/dist/generators/ts/_snippets/snippets_shaclPropertyFromRdf.js +17 -0
  543. package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlConstructTriples.d.ts +3 -0
  544. package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlConstructTriples.js +90 -0
  545. package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlWherePatterns.d.ts +3 -0
  546. package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlWherePatterns.js +86 -0
  547. package/dist/generators/ts/_snippets/snippets_sortSparqlPatterns.d.ts +3 -0
  548. package/dist/generators/ts/_snippets/snippets_sortSparqlPatterns.js +24 -0
  549. package/dist/generators/ts/_snippets/snippets_sparqlInstancesOfPattern.d.ts +3 -0
  550. package/dist/generators/ts/_snippets/snippets_sparqlInstancesOfPattern.js +29 -0
  551. package/dist/generators/ts/_snippets/snippets_sparqlPropertyPath.d.ts +3 -0
  552. package/dist/generators/ts/_snippets/snippets_sparqlPropertyPath.js +59 -0
  553. package/dist/generators/ts/_snippets/snippets_sparqlValueInPattern.d.ts +3 -0
  554. package/dist/generators/ts/_snippets/snippets_sparqlValueInPattern.js +23 -0
  555. package/dist/generators/ts/_snippets/snippets_strictEquals.d.ts +3 -0
  556. package/dist/generators/ts/_snippets/snippets_strictEquals.js +12 -0
  557. package/dist/generators/ts/_snippets/snippets_stringFromRdfResourceValues.d.ts +3 -0
  558. package/dist/generators/ts/_snippets/snippets_stringFromRdfResourceValues.js +6 -0
  559. package/dist/generators/ts/_snippets/snippets_stringSparqlWherePatterns.d.ts +3 -0
  560. package/dist/generators/ts/_snippets/snippets_stringSparqlWherePatterns.js +39 -0
  561. package/dist/generators/ts/_snippets/snippets_termFilterSparqlPatterns.d.ts +3 -0
  562. package/dist/generators/ts/_snippets/snippets_termFilterSparqlPatterns.js +93 -0
  563. package/dist/generators/ts/_snippets/snippets_termFromRdfResourceValues.d.ts +3 -0
  564. package/dist/generators/ts/_snippets/snippets_termFromRdfResourceValues.js +17 -0
  565. package/dist/generators/ts/_snippets/snippets_termLikeFromRdfResourceValues.d.ts +3 -0
  566. package/dist/generators/ts/_snippets/snippets_termLikeFromRdfResourceValues.js +60 -0
  567. package/dist/generators/ts/_snippets/snippets_termSchemaSparqlPatterns.d.ts +3 -0
  568. package/dist/generators/ts/_snippets/snippets_termSchemaSparqlPatterns.js +24 -0
  569. package/dist/generators/ts/_snippets/snippets_termSparqlWherePatterns.d.ts +3 -0
  570. package/dist/generators/ts/_snippets/snippets_termSparqlWherePatterns.js +5 -0
  571. package/dist/generators/ts/_snippets/snippets_toIsoDateString.d.ts +3 -0
  572. package/dist/generators/ts/_snippets/snippets_toIsoDateString.js +6 -0
  573. package/dist/generators/ts/_snippets/snippets_validateArray.d.ts +3 -0
  574. package/dist/generators/ts/_snippets/snippets_validateArray.js +13 -0
  575. package/dist/generators/ts/_snippets/snippets_validateMaybe.d.ts +3 -0
  576. package/dist/generators/ts/_snippets/snippets_validateMaybe.js +7 -0
  577. package/dist/generators/ts/_snippets/snippets_wrap_FromRdfResourceFunction.d.ts +3 -0
  578. package/dist/generators/ts/_snippets/snippets_wrap_FromRdfResourceFunction.js +9 -0
  579. package/dist/generators/ts/_snippets/snippets_wrap_ToRdfResourceFunction.d.ts +3 -0
  580. package/dist/generators/ts/_snippets/snippets_wrap_ToRdfResourceFunction.js +14 -0
  581. package/dist/generators/ts/codeEquals.d.ts +3 -0
  582. package/dist/generators/ts/codeEquals.js +7 -0
  583. package/dist/generators/ts/rdfjsTermExpression.d.ts +11 -0
  584. package/dist/generators/ts/rdfjsTermExpression.js +72 -0
  585. package/dist/generators/ts/singleEntryRecord.d.ts +2 -0
  586. package/dist/generators/ts/singleEntryRecord.js +6 -0
  587. package/dist/generators/ts/ts-poet-wrapper.d.ts +5 -0
  588. package/dist/generators/ts/ts-poet-wrapper.js +13 -0
  589. package/dist/generators/ts/tsComment.d.ts +5 -0
  590. package/dist/generators/ts/tsComment.js +11 -0
  591. package/dist/index.d.ts +6 -0
  592. package/dist/index.js +6 -0
  593. package/dist/input/ShapesGraph.d.ts +44 -0
  594. package/dist/input/ShapesGraph.js +66 -0
  595. package/dist/input/index.d.ts +3 -0
  596. package/dist/input/index.js +3 -0
  597. package/dist/input/input.shaclmate.d.ts +4567 -0
  598. package/dist/input/input.shaclmate.js +3595 -0
  599. package/package.json +600 -600
@@ -0,0 +1,4567 @@
1
+ import type { BlankNode, Literal, NamedNode, Quad_Graph, Variable } from "@rdfjs/types";
2
+ import { PropertyPath as RdfxResourcePropertyPath, Resource, ResourceSet } from "@rdfx/resource";
3
+ import { NTriplesTerm } from "@rdfx/string";
4
+ import { Either, Maybe } from "purify-ts";
5
+ type $_FromRdfResourceFunction<T> = (resource: Resource, options: {
6
+ context: undefined | unknown;
7
+ graph: Exclude<Quad_Graph, Variable> | undefined;
8
+ ignoreRdfType: boolean;
9
+ preferredLanguages: readonly string[] | undefined;
10
+ }) => Either<Error, T>;
11
+ export type $_ToRdfResourceFunction<IdentifierT extends Resource.Identifier, ObjectT extends {
12
+ $identifier: () => IdentifierT;
13
+ }> = (parameters: {
14
+ graph: Exclude<Quad_Graph, Variable> | undefined;
15
+ ignoreRdfType: boolean;
16
+ object: ObjectT;
17
+ resource: Resource<IdentifierT>;
18
+ resourceSet: ResourceSet;
19
+ }) => void;
20
+ export type $EqualsResult = Either<$EqualsResult.Unequal, true>;
21
+ export declare namespace $EqualsResult {
22
+ const Equal: $EqualsResult;
23
+ function fromBooleanEqualsResult(left: any, right: any, equalsResult: boolean | $EqualsResult): $EqualsResult;
24
+ type Unequal = {
25
+ readonly left: {
26
+ readonly array: readonly any[];
27
+ readonly element: any;
28
+ readonly elementIndex: number;
29
+ };
30
+ readonly right: {
31
+ readonly array: readonly any[];
32
+ readonly unequals: readonly Unequal[];
33
+ };
34
+ readonly type: "array-element";
35
+ } | {
36
+ readonly left: readonly any[];
37
+ readonly right: readonly any[];
38
+ readonly type: "array-length";
39
+ } | {
40
+ readonly left: any;
41
+ readonly right: any;
42
+ readonly type: "boolean";
43
+ } | {
44
+ readonly right: any;
45
+ readonly type: "left-null";
46
+ } | {
47
+ readonly left: any;
48
+ readonly right: any;
49
+ readonly propertyName: string;
50
+ readonly propertyValuesUnequal: Unequal;
51
+ readonly type: "property";
52
+ } | {
53
+ readonly left: any;
54
+ readonly type: "right-null";
55
+ };
56
+ }
57
+ export type $FromRdfResourceFunction<T> = (resource: Resource, options?: {
58
+ context?: unknown;
59
+ graph?: Exclude<Quad_Graph, Variable>;
60
+ ignoreRdfType?: boolean;
61
+ preferredLanguages?: readonly string[];
62
+ }) => Either<Error, T>;
63
+ export type $FromRdfResourceValuesFunction<ValueT, ValueSchemaT> = (resourceValues: Resource.Values, options: {
64
+ context?: unknown;
65
+ graph?: Exclude<Quad_Graph, Variable>;
66
+ focusResource: Resource;
67
+ ignoreRdfType?: boolean;
68
+ preferredLanguages?: readonly string[];
69
+ propertyPath: $PropertyPath;
70
+ schema: ValueSchemaT;
71
+ }) => Either<Error, Resource.Values<ValueT>>;
72
+ export type $PropertyPath = RdfxResourcePropertyPath;
73
+ export declare namespace $PropertyPath {
74
+ const fromRdfResource: $FromRdfResourceFunction<$PropertyPath>;
75
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<$PropertyPath, object>;
76
+ const schema: Readonly<object>;
77
+ type Schema = typeof schema;
78
+ const toRdfResource: $ToRdfResourceFunction<$PropertyPath>;
79
+ const $toString: typeof RdfxResourcePropertyPath.toString;
80
+ }
81
+ export interface $ShaclPropertySchema<TypeSchemaT> {
82
+ readonly kind: "Shacl";
83
+ readonly path: $PropertyPath;
84
+ readonly type: TypeSchemaT;
85
+ }
86
+ export type $ToRdfResourceFunction<ObjectT, IdentifierT extends Resource.Identifier = Resource.Identifier> = (object: ObjectT, options?: {
87
+ graph?: Exclude<Quad_Graph, Variable>;
88
+ ignoreRdfType?: boolean;
89
+ resourceSet?: ResourceSet;
90
+ }) => Resource<IdentifierT>;
91
+ export type $ToRdfResourceValuesFunction<ValueT, ReturnT extends BlankNode | Literal | NamedNode = BlankNode | Literal | NamedNode> = (value: ValueT, options: {
92
+ graph?: Exclude<Quad_Graph, Variable>;
93
+ ignoreRdfType?: boolean;
94
+ propertyPath: $PropertyPath;
95
+ resource: Resource;
96
+ resourceSet: ResourceSet;
97
+ }) => ReturnT[];
98
+ export type NodeShape = {
99
+ readonly $identifier: () => NodeShape.Identifier;
100
+ readonly $type: "NodeShape";
101
+ readonly and: Maybe<readonly (BlankNode | NamedNode)[]>;
102
+ readonly classes: readonly NamedNode[];
103
+ readonly closed: Maybe<boolean>;
104
+ readonly comment: Maybe<string>;
105
+ readonly datatype: Maybe<NamedNode>;
106
+ readonly deactivated: Maybe<boolean>;
107
+ readonly discriminantValue: Maybe<string>;
108
+ readonly extern: Maybe<boolean>;
109
+ readonly flags: Maybe<string>;
110
+ readonly fromRdfType: Maybe<NamedNode>;
111
+ readonly hasValues: readonly (NamedNode | Literal)[];
112
+ /**
113
+ * Whether to ignore this shape in code generation, defaults to false
114
+ */
115
+ readonly ignore: boolean;
116
+ readonly ignoredProperties: Maybe<readonly NamedNode[]>;
117
+ readonly in_: Maybe<readonly (NamedNode | Literal)[]>;
118
+ readonly isDefinedBy: Maybe<BlankNode | NamedNode>;
119
+ readonly label: Maybe<string>;
120
+ readonly languageIn: Maybe<readonly string[]>;
121
+ readonly maxExclusive: Maybe<Literal>;
122
+ readonly maxInclusive: Maybe<Literal>;
123
+ readonly maxLength: Maybe<bigint>;
124
+ readonly message: Maybe<string>;
125
+ readonly minExclusive: Maybe<Literal>;
126
+ readonly minInclusive: Maybe<Literal>;
127
+ readonly minLength: Maybe<bigint>;
128
+ readonly mutable: Maybe<boolean>;
129
+ readonly node: Maybe<BlankNode | NamedNode>;
130
+ readonly nodeKind: Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
131
+ readonly not: readonly (BlankNode | NamedNode)[];
132
+ readonly or: Maybe<readonly (BlankNode | NamedNode)[]>;
133
+ readonly pattern: Maybe<string>;
134
+ readonly properties: readonly (BlankNode | NamedNode)[];
135
+ readonly rdfType: Maybe<NamedNode>;
136
+ readonly severity: Maybe<Severity>;
137
+ readonly shaclmateName: Maybe<string>;
138
+ readonly subClassOf: readonly NamedNode[];
139
+ readonly targetClasses: readonly NamedNode[];
140
+ readonly targetNodes: readonly (NamedNode | Literal)[];
141
+ readonly targetObjectsOf: readonly NamedNode[];
142
+ readonly targetSubjectsOf: readonly NamedNode[];
143
+ readonly toRdfTypes: readonly NamedNode[];
144
+ readonly tsImports: readonly string[];
145
+ readonly types: readonly NamedNode[];
146
+ readonly xone: Maybe<readonly (BlankNode | NamedNode)[]>;
147
+ };
148
+ export declare namespace NodeShape {
149
+ const create: (parameters?: {
150
+ readonly $identifier?: (() => NodeShape.Identifier) | BlankNode | NamedNode | string;
151
+ readonly and?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
152
+ readonly classes?: string | NamedNode | readonly (string | NamedNode)[];
153
+ readonly closed?: boolean | Maybe<boolean>;
154
+ readonly comment?: string | Maybe<string>;
155
+ readonly datatype?: string | NamedNode | Maybe<NamedNode>;
156
+ readonly deactivated?: boolean | Maybe<boolean>;
157
+ readonly discriminantValue?: string | Maybe<string>;
158
+ readonly extern?: boolean | Maybe<boolean>;
159
+ readonly flags?: string | Maybe<string>;
160
+ readonly fromRdfType?: string | NamedNode | Maybe<NamedNode>;
161
+ readonly hasValues?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
162
+ readonly ignore?: boolean;
163
+ readonly ignoredProperties?: readonly (string | NamedNode)[] | Maybe<readonly NamedNode[]>;
164
+ readonly in_?: readonly (NamedNode | Literal)[] | Maybe<readonly (NamedNode | Literal)[]>;
165
+ readonly isDefinedBy?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
166
+ readonly label?: string | Maybe<string>;
167
+ readonly languageIn?: readonly string[] | Maybe<readonly string[]>;
168
+ readonly maxExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
169
+ readonly maxInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
170
+ readonly maxLength?: bigint | Maybe<bigint>;
171
+ readonly message?: string | Maybe<string>;
172
+ readonly minExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
173
+ readonly minInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
174
+ readonly minLength?: bigint | Maybe<bigint>;
175
+ readonly mutable?: boolean | Maybe<boolean>;
176
+ readonly node?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
177
+ readonly nodeKind?: ("http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal") | NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal"> | Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
178
+ readonly not?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
179
+ readonly or?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
180
+ readonly pattern?: string | Maybe<string>;
181
+ readonly properties?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
182
+ readonly rdfType?: string | NamedNode | Maybe<NamedNode>;
183
+ readonly severity?: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | Severity | Maybe<Severity>;
184
+ readonly shaclmateName?: string | Maybe<string>;
185
+ readonly subClassOf?: string | NamedNode | readonly (string | NamedNode)[];
186
+ readonly targetClasses?: string | NamedNode | readonly (string | NamedNode)[];
187
+ readonly targetNodes?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
188
+ readonly targetObjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
189
+ readonly targetSubjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
190
+ readonly toRdfTypes?: string | NamedNode | readonly (string | NamedNode)[];
191
+ readonly tsImports?: string | readonly string[];
192
+ readonly types?: string | NamedNode | readonly (string | NamedNode)[];
193
+ readonly xone?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
194
+ }) => Either<Error, NodeShape>;
195
+ function createUnsafe(parameters?: {
196
+ readonly $identifier?: (() => NodeShape.Identifier) | BlankNode | NamedNode | string;
197
+ readonly and?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
198
+ readonly classes?: string | NamedNode | readonly (string | NamedNode)[];
199
+ readonly closed?: boolean | Maybe<boolean>;
200
+ readonly comment?: string | Maybe<string>;
201
+ readonly datatype?: string | NamedNode | Maybe<NamedNode>;
202
+ readonly deactivated?: boolean | Maybe<boolean>;
203
+ readonly discriminantValue?: string | Maybe<string>;
204
+ readonly extern?: boolean | Maybe<boolean>;
205
+ readonly flags?: string | Maybe<string>;
206
+ readonly fromRdfType?: string | NamedNode | Maybe<NamedNode>;
207
+ readonly hasValues?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
208
+ readonly ignore?: boolean;
209
+ readonly ignoredProperties?: readonly (string | NamedNode)[] | Maybe<readonly NamedNode[]>;
210
+ readonly in_?: readonly (NamedNode | Literal)[] | Maybe<readonly (NamedNode | Literal)[]>;
211
+ readonly isDefinedBy?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
212
+ readonly label?: string | Maybe<string>;
213
+ readonly languageIn?: readonly string[] | Maybe<readonly string[]>;
214
+ readonly maxExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
215
+ readonly maxInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
216
+ readonly maxLength?: bigint | Maybe<bigint>;
217
+ readonly message?: string | Maybe<string>;
218
+ readonly minExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
219
+ readonly minInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
220
+ readonly minLength?: bigint | Maybe<bigint>;
221
+ readonly mutable?: boolean | Maybe<boolean>;
222
+ readonly node?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
223
+ readonly nodeKind?: ("http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal") | NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal"> | Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
224
+ readonly not?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
225
+ readonly or?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
226
+ readonly pattern?: string | Maybe<string>;
227
+ readonly properties?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
228
+ readonly rdfType?: string | NamedNode | Maybe<NamedNode>;
229
+ readonly severity?: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | Severity | Maybe<Severity>;
230
+ readonly shaclmateName?: string | Maybe<string>;
231
+ readonly subClassOf?: string | NamedNode | readonly (string | NamedNode)[];
232
+ readonly targetClasses?: string | NamedNode | readonly (string | NamedNode)[];
233
+ readonly targetNodes?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
234
+ readonly targetObjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
235
+ readonly targetSubjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
236
+ readonly toRdfTypes?: string | NamedNode | readonly (string | NamedNode)[];
237
+ readonly tsImports?: string | readonly string[];
238
+ readonly types?: string | NamedNode | readonly (string | NamedNode)[];
239
+ readonly xone?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
240
+ }): NodeShape;
241
+ const _fromRdfResource: $_FromRdfResourceFunction<NodeShape>;
242
+ const fromRdfResource: $FromRdfResourceFunction<NodeShape>;
243
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<NodeShape, NodeShape.Schema>;
244
+ type Identifier = BlankNode | NamedNode;
245
+ namespace Identifier {
246
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
247
+ const stringify: typeof NTriplesTerm.stringify;
248
+ }
249
+ function isNodeShape(object: $Object): object is NodeShape;
250
+ const schema: {
251
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#NodeShape">;
252
+ readonly properties: {
253
+ readonly $identifier: {
254
+ readonly kind: "Identifier";
255
+ readonly type: {
256
+ readonly kind: "Identifier";
257
+ };
258
+ };
259
+ readonly and: {
260
+ readonly kind: "Shacl";
261
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
262
+ readonly type: {
263
+ readonly kind: "Option";
264
+ readonly itemType: {
265
+ readonly kind: "List";
266
+ readonly itemType: {
267
+ readonly kind: "Identifier";
268
+ };
269
+ };
270
+ };
271
+ };
272
+ readonly classes: {
273
+ readonly kind: "Shacl";
274
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
275
+ readonly type: {
276
+ readonly kind: "Set";
277
+ readonly itemType: {
278
+ readonly kind: "Iri";
279
+ };
280
+ };
281
+ };
282
+ readonly closed: {
283
+ readonly kind: "Shacl";
284
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#closed">;
285
+ readonly type: {
286
+ readonly kind: "Option";
287
+ readonly itemType: {
288
+ readonly kind: "Boolean";
289
+ };
290
+ };
291
+ };
292
+ readonly comment: {
293
+ readonly kind: "Shacl";
294
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
295
+ readonly type: {
296
+ readonly kind: "Option";
297
+ readonly itemType: {
298
+ readonly kind: "String";
299
+ };
300
+ };
301
+ };
302
+ readonly datatype: {
303
+ readonly kind: "Shacl";
304
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
305
+ readonly type: {
306
+ readonly kind: "Option";
307
+ readonly itemType: {
308
+ readonly kind: "Iri";
309
+ };
310
+ };
311
+ };
312
+ readonly deactivated: {
313
+ readonly kind: "Shacl";
314
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
315
+ readonly type: {
316
+ readonly kind: "Option";
317
+ readonly itemType: {
318
+ readonly kind: "Boolean";
319
+ };
320
+ };
321
+ };
322
+ readonly discriminantValue: {
323
+ readonly kind: "Shacl";
324
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
325
+ readonly type: {
326
+ readonly kind: "Option";
327
+ readonly itemType: {
328
+ readonly kind: "String";
329
+ };
330
+ };
331
+ };
332
+ readonly extern: {
333
+ readonly kind: "Shacl";
334
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#extern">;
335
+ readonly type: {
336
+ readonly kind: "Option";
337
+ readonly itemType: {
338
+ readonly kind: "Boolean";
339
+ };
340
+ };
341
+ };
342
+ readonly flags: {
343
+ readonly kind: "Shacl";
344
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
345
+ readonly type: {
346
+ readonly kind: "Option";
347
+ readonly itemType: {
348
+ readonly kind: "String";
349
+ };
350
+ };
351
+ };
352
+ readonly fromRdfType: {
353
+ readonly kind: "Shacl";
354
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
355
+ readonly type: {
356
+ readonly kind: "Option";
357
+ readonly itemType: {
358
+ readonly kind: "Iri";
359
+ };
360
+ };
361
+ };
362
+ readonly hasValues: {
363
+ readonly kind: "Shacl";
364
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
365
+ readonly type: {
366
+ readonly kind: "Set";
367
+ readonly itemType: {
368
+ readonly kind: "Term";
369
+ readonly types: readonly ["NamedNode", "Literal"];
370
+ };
371
+ };
372
+ };
373
+ readonly ignore: {
374
+ readonly kind: "Shacl";
375
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
376
+ readonly type: {
377
+ readonly kind: "DefaultValue";
378
+ readonly itemType: {
379
+ readonly kind: "Boolean";
380
+ };
381
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
382
+ };
383
+ };
384
+ readonly ignoredProperties: {
385
+ readonly kind: "Shacl";
386
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
387
+ readonly type: {
388
+ readonly kind: "Option";
389
+ readonly itemType: {
390
+ readonly kind: "List";
391
+ readonly itemType: {
392
+ readonly kind: "Iri";
393
+ };
394
+ };
395
+ };
396
+ };
397
+ readonly in_: {
398
+ readonly kind: "Shacl";
399
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
400
+ readonly type: {
401
+ readonly kind: "Option";
402
+ readonly itemType: {
403
+ readonly kind: "List";
404
+ readonly itemType: {
405
+ readonly kind: "Term";
406
+ readonly types: readonly ["NamedNode", "Literal"];
407
+ };
408
+ };
409
+ };
410
+ };
411
+ readonly isDefinedBy: {
412
+ readonly kind: "Shacl";
413
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
414
+ readonly type: {
415
+ readonly kind: "Option";
416
+ readonly itemType: {
417
+ readonly kind: "Identifier";
418
+ };
419
+ };
420
+ };
421
+ readonly label: {
422
+ readonly kind: "Shacl";
423
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
424
+ readonly type: {
425
+ readonly kind: "Option";
426
+ readonly itemType: {
427
+ readonly kind: "String";
428
+ };
429
+ };
430
+ };
431
+ readonly languageIn: {
432
+ readonly kind: "Shacl";
433
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
434
+ readonly type: {
435
+ readonly kind: "Option";
436
+ readonly itemType: {
437
+ readonly kind: "List";
438
+ readonly itemType: {
439
+ readonly kind: "String";
440
+ };
441
+ };
442
+ };
443
+ };
444
+ readonly maxExclusive: {
445
+ readonly kind: "Shacl";
446
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
447
+ readonly type: {
448
+ readonly kind: "Option";
449
+ readonly itemType: {
450
+ readonly kind: "Literal";
451
+ };
452
+ };
453
+ };
454
+ readonly maxInclusive: {
455
+ readonly kind: "Shacl";
456
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
457
+ readonly type: {
458
+ readonly kind: "Option";
459
+ readonly itemType: {
460
+ readonly kind: "Literal";
461
+ };
462
+ };
463
+ };
464
+ readonly maxLength: {
465
+ readonly kind: "Shacl";
466
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
467
+ readonly type: {
468
+ readonly kind: "Option";
469
+ readonly itemType: {
470
+ readonly kind: "BigInt";
471
+ };
472
+ };
473
+ };
474
+ readonly message: {
475
+ readonly kind: "Shacl";
476
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
477
+ readonly type: {
478
+ readonly kind: "Option";
479
+ readonly itemType: {
480
+ readonly kind: "String";
481
+ };
482
+ };
483
+ };
484
+ readonly minExclusive: {
485
+ readonly kind: "Shacl";
486
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
487
+ readonly type: {
488
+ readonly kind: "Option";
489
+ readonly itemType: {
490
+ readonly kind: "Literal";
491
+ };
492
+ };
493
+ };
494
+ readonly minInclusive: {
495
+ readonly kind: "Shacl";
496
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
497
+ readonly type: {
498
+ readonly kind: "Option";
499
+ readonly itemType: {
500
+ readonly kind: "Literal";
501
+ };
502
+ };
503
+ };
504
+ readonly minLength: {
505
+ readonly kind: "Shacl";
506
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
507
+ readonly type: {
508
+ readonly kind: "Option";
509
+ readonly itemType: {
510
+ readonly kind: "BigInt";
511
+ };
512
+ };
513
+ };
514
+ readonly mutable: {
515
+ readonly kind: "Shacl";
516
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
517
+ readonly type: {
518
+ readonly kind: "Option";
519
+ readonly itemType: {
520
+ readonly kind: "Boolean";
521
+ };
522
+ };
523
+ };
524
+ readonly node: {
525
+ readonly kind: "Shacl";
526
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
527
+ readonly type: {
528
+ readonly kind: "Option";
529
+ readonly itemType: {
530
+ readonly kind: "Identifier";
531
+ };
532
+ };
533
+ };
534
+ readonly nodeKind: {
535
+ readonly kind: "Shacl";
536
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
537
+ readonly type: {
538
+ readonly kind: "Option";
539
+ readonly itemType: {
540
+ readonly kind: "Iri";
541
+ readonly in: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">];
542
+ };
543
+ };
544
+ };
545
+ readonly not: {
546
+ readonly kind: "Shacl";
547
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
548
+ readonly type: {
549
+ readonly kind: "Set";
550
+ readonly itemType: {
551
+ readonly kind: "Identifier";
552
+ };
553
+ };
554
+ };
555
+ readonly or: {
556
+ readonly kind: "Shacl";
557
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
558
+ readonly type: {
559
+ readonly kind: "Option";
560
+ readonly itemType: {
561
+ readonly kind: "List";
562
+ readonly itemType: {
563
+ readonly kind: "Identifier";
564
+ };
565
+ };
566
+ };
567
+ };
568
+ readonly pattern: {
569
+ readonly kind: "Shacl";
570
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
571
+ readonly type: {
572
+ readonly kind: "Option";
573
+ readonly itemType: {
574
+ readonly kind: "String";
575
+ };
576
+ };
577
+ };
578
+ readonly properties: {
579
+ readonly kind: "Shacl";
580
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#property">;
581
+ readonly type: {
582
+ readonly kind: "Set";
583
+ readonly itemType: {
584
+ readonly kind: "Identifier";
585
+ };
586
+ };
587
+ };
588
+ readonly rdfType: {
589
+ readonly kind: "Shacl";
590
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
591
+ readonly type: {
592
+ readonly kind: "Option";
593
+ readonly itemType: {
594
+ readonly kind: "Iri";
595
+ };
596
+ };
597
+ };
598
+ readonly severity: {
599
+ readonly kind: "Shacl";
600
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
601
+ readonly type: {
602
+ kind: "Option";
603
+ readonly itemType: {
604
+ kind: "Iri";
605
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
606
+ };
607
+ };
608
+ };
609
+ readonly shaclmateName: {
610
+ readonly kind: "Shacl";
611
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
612
+ readonly type: {
613
+ readonly kind: "Option";
614
+ readonly itemType: {
615
+ readonly kind: "String";
616
+ };
617
+ };
618
+ };
619
+ readonly subClassOf: {
620
+ readonly kind: "Shacl";
621
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
622
+ readonly type: {
623
+ readonly kind: "Set";
624
+ readonly itemType: {
625
+ readonly kind: "Iri";
626
+ };
627
+ };
628
+ };
629
+ readonly targetClasses: {
630
+ readonly kind: "Shacl";
631
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
632
+ readonly type: {
633
+ readonly kind: "Set";
634
+ readonly itemType: {
635
+ readonly kind: "Iri";
636
+ };
637
+ };
638
+ };
639
+ readonly targetNodes: {
640
+ readonly kind: "Shacl";
641
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
642
+ readonly type: {
643
+ readonly kind: "Set";
644
+ readonly itemType: {
645
+ readonly kind: "Term";
646
+ readonly types: readonly ["NamedNode", "Literal"];
647
+ };
648
+ };
649
+ };
650
+ readonly targetObjectsOf: {
651
+ readonly kind: "Shacl";
652
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
653
+ readonly type: {
654
+ readonly kind: "Set";
655
+ readonly itemType: {
656
+ readonly kind: "Iri";
657
+ };
658
+ };
659
+ };
660
+ readonly targetSubjectsOf: {
661
+ readonly kind: "Shacl";
662
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
663
+ readonly type: {
664
+ readonly kind: "Set";
665
+ readonly itemType: {
666
+ readonly kind: "Iri";
667
+ };
668
+ };
669
+ };
670
+ readonly toRdfTypes: {
671
+ readonly kind: "Shacl";
672
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
673
+ readonly type: {
674
+ readonly kind: "Set";
675
+ readonly itemType: {
676
+ readonly kind: "Iri";
677
+ };
678
+ };
679
+ };
680
+ readonly tsImports: {
681
+ readonly kind: "Shacl";
682
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
683
+ readonly type: {
684
+ readonly kind: "Set";
685
+ readonly itemType: {
686
+ readonly kind: "String";
687
+ };
688
+ };
689
+ };
690
+ readonly types: {
691
+ readonly kind: "Shacl";
692
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
693
+ readonly type: {
694
+ readonly kind: "Set";
695
+ readonly itemType: {
696
+ readonly kind: "Iri";
697
+ };
698
+ };
699
+ };
700
+ readonly xone: {
701
+ readonly kind: "Shacl";
702
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
703
+ readonly type: {
704
+ readonly kind: "Option";
705
+ readonly itemType: {
706
+ readonly kind: "List";
707
+ readonly itemType: {
708
+ readonly kind: "Identifier";
709
+ };
710
+ };
711
+ };
712
+ };
713
+ };
714
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#NodeShape">];
715
+ };
716
+ type Schema = typeof schema;
717
+ const _toRdfResource: $_ToRdfResourceFunction<NodeShape.Identifier, NodeShape>;
718
+ const toRdfResource: $ToRdfResourceFunction<NodeShape, Identifier>;
719
+ const $toString: (_nodeShape: NodeShape) => string;
720
+ const toStringRecord: (_nodeShape: NodeShape) => Record<string, string>;
721
+ }
722
+ export type Ontology = {
723
+ readonly $identifier: () => Ontology.Identifier;
724
+ readonly $type: "Ontology";
725
+ readonly comment: Maybe<string>;
726
+ readonly label: Maybe<string>;
727
+ };
728
+ export declare namespace Ontology {
729
+ const create: (parameters?: {
730
+ readonly $identifier?: (() => Ontology.Identifier) | BlankNode | NamedNode | string;
731
+ readonly comment?: string | Maybe<string>;
732
+ readonly label?: string | Maybe<string>;
733
+ }) => Either<Error, Ontology>;
734
+ function createUnsafe(parameters?: {
735
+ readonly $identifier?: (() => Ontology.Identifier) | BlankNode | NamedNode | string;
736
+ readonly comment?: string | Maybe<string>;
737
+ readonly label?: string | Maybe<string>;
738
+ }): Ontology;
739
+ const _fromRdfResource: $_FromRdfResourceFunction<Ontology>;
740
+ const fromRdfResource: $FromRdfResourceFunction<Ontology>;
741
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<Ontology, Ontology.Schema>;
742
+ type Identifier = BlankNode | NamedNode;
743
+ namespace Identifier {
744
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
745
+ const stringify: typeof NTriplesTerm.stringify;
746
+ }
747
+ function isOntology(object: $Object): object is Ontology;
748
+ const schema: {
749
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2002/07/owl#Ontology">;
750
+ readonly properties: {
751
+ readonly $identifier: {
752
+ readonly kind: "Identifier";
753
+ readonly type: {
754
+ readonly kind: "Identifier";
755
+ };
756
+ };
757
+ readonly comment: {
758
+ readonly kind: "Shacl";
759
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
760
+ readonly type: {
761
+ readonly kind: "Option";
762
+ readonly itemType: {
763
+ readonly kind: "String";
764
+ };
765
+ };
766
+ };
767
+ readonly label: {
768
+ readonly kind: "Shacl";
769
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
770
+ readonly type: {
771
+ readonly kind: "Option";
772
+ readonly itemType: {
773
+ readonly kind: "String";
774
+ };
775
+ };
776
+ };
777
+ };
778
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2002/07/owl#Ontology">];
779
+ };
780
+ type Schema = typeof schema;
781
+ const _toRdfResource: $_ToRdfResourceFunction<Ontology.Identifier, Ontology>;
782
+ const toRdfResource: $ToRdfResourceFunction<Ontology, Identifier>;
783
+ const $toString: (_ontology: Ontology) => string;
784
+ const toStringRecord: (_ontology: Ontology) => Record<string, string>;
785
+ }
786
+ export type PropertyGroup = {
787
+ readonly $identifier: () => PropertyGroup.Identifier;
788
+ readonly $type: "PropertyGroup";
789
+ readonly comment: Maybe<string>;
790
+ readonly label: Maybe<string>;
791
+ };
792
+ export declare namespace PropertyGroup {
793
+ const create: (parameters?: {
794
+ readonly $identifier?: (() => PropertyGroup.Identifier) | BlankNode | NamedNode | string;
795
+ readonly comment?: string | Maybe<string>;
796
+ readonly label?: string | Maybe<string>;
797
+ }) => Either<Error, PropertyGroup>;
798
+ function createUnsafe(parameters?: {
799
+ readonly $identifier?: (() => PropertyGroup.Identifier) | BlankNode | NamedNode | string;
800
+ readonly comment?: string | Maybe<string>;
801
+ readonly label?: string | Maybe<string>;
802
+ }): PropertyGroup;
803
+ const _fromRdfResource: $_FromRdfResourceFunction<PropertyGroup>;
804
+ const fromRdfResource: $FromRdfResourceFunction<PropertyGroup>;
805
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<PropertyGroup, PropertyGroup.Schema>;
806
+ type Identifier = BlankNode | NamedNode;
807
+ namespace Identifier {
808
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
809
+ const stringify: typeof NTriplesTerm.stringify;
810
+ }
811
+ function isPropertyGroup(object: $Object): object is PropertyGroup;
812
+ const schema: {
813
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyGroup">;
814
+ readonly properties: {
815
+ readonly $identifier: {
816
+ readonly kind: "Identifier";
817
+ readonly type: {
818
+ readonly kind: "Identifier";
819
+ };
820
+ };
821
+ readonly comment: {
822
+ readonly kind: "Shacl";
823
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
824
+ readonly type: {
825
+ readonly kind: "Option";
826
+ readonly itemType: {
827
+ readonly kind: "String";
828
+ };
829
+ };
830
+ };
831
+ readonly label: {
832
+ readonly kind: "Shacl";
833
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
834
+ readonly type: {
835
+ readonly kind: "Option";
836
+ readonly itemType: {
837
+ readonly kind: "String";
838
+ };
839
+ };
840
+ };
841
+ };
842
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyGroup">];
843
+ };
844
+ type Schema = typeof schema;
845
+ const _toRdfResource: $_ToRdfResourceFunction<PropertyGroup.Identifier, PropertyGroup>;
846
+ const toRdfResource: $ToRdfResourceFunction<PropertyGroup, Identifier>;
847
+ const $toString: (_propertyGroup: PropertyGroup) => string;
848
+ const toStringRecord: (_propertyGroup: PropertyGroup) => Record<string, string>;
849
+ }
850
+ export type PropertyShape = {
851
+ readonly $identifier: () => PropertyShape.Identifier;
852
+ readonly $type: "PropertyShape";
853
+ readonly and: Maybe<readonly (BlankNode | NamedNode)[]>;
854
+ readonly classes: readonly NamedNode[];
855
+ readonly comment: Maybe<string>;
856
+ readonly datatype: Maybe<NamedNode>;
857
+ readonly deactivated: Maybe<boolean>;
858
+ readonly defaultValue: Maybe<NamedNode | Literal>;
859
+ readonly description: Maybe<string>;
860
+ readonly disjoint: readonly NamedNode[];
861
+ /**
862
+ * Whether to include this property in a toString()-type display, defaults to false
863
+ */
864
+ readonly display: boolean;
865
+ readonly equals: readonly NamedNode[];
866
+ readonly flags: Maybe<string>;
867
+ readonly groups: readonly (BlankNode | NamedNode)[];
868
+ readonly hasValues: readonly (NamedNode | Literal)[];
869
+ /**
870
+ * Whether to ignore this shape in code generation, defaults to false
871
+ */
872
+ readonly ignore: boolean;
873
+ readonly in_: Maybe<readonly (NamedNode | Literal)[]>;
874
+ readonly isDefinedBy: Maybe<BlankNode | NamedNode>;
875
+ readonly label: Maybe<string>;
876
+ readonly languageIn: Maybe<readonly string[]>;
877
+ readonly lessThan: readonly NamedNode[];
878
+ readonly lessThanOrEquals: readonly NamedNode[];
879
+ readonly maxCount: Maybe<bigint>;
880
+ readonly maxExclusive: Maybe<Literal>;
881
+ readonly maxInclusive: Maybe<Literal>;
882
+ readonly maxLength: Maybe<bigint>;
883
+ readonly message: Maybe<string>;
884
+ readonly minCount: Maybe<bigint>;
885
+ readonly minExclusive: Maybe<Literal>;
886
+ readonly minInclusive: Maybe<Literal>;
887
+ readonly minLength: Maybe<bigint>;
888
+ readonly mutable: Maybe<boolean>;
889
+ readonly name: Maybe<string>;
890
+ readonly node: Maybe<BlankNode | NamedNode>;
891
+ readonly nodeKind: Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
892
+ readonly not: readonly (BlankNode | NamedNode)[];
893
+ readonly or: Maybe<readonly (BlankNode | NamedNode)[]>;
894
+ readonly order: Maybe<number>;
895
+ readonly path: $PropertyPath;
896
+ readonly pattern: Maybe<string>;
897
+ readonly qualifiedMaxCount: Maybe<bigint>;
898
+ readonly qualifiedMinCount: Maybe<bigint>;
899
+ readonly qualifiedValueShape: Maybe<BlankNode | NamedNode>;
900
+ readonly qualifiedValueShapesDisjoint: Maybe<boolean>;
901
+ readonly resolve: Maybe<BlankNode | NamedNode>;
902
+ readonly severity: Maybe<Severity>;
903
+ readonly shaclmateName: Maybe<string>;
904
+ readonly targetClasses: readonly NamedNode[];
905
+ readonly targetNodes: readonly (NamedNode | Literal)[];
906
+ readonly targetObjectsOf: readonly NamedNode[];
907
+ readonly targetSubjectsOf: readonly NamedNode[];
908
+ readonly uniqueLang: Maybe<boolean>;
909
+ readonly xone: Maybe<readonly (BlankNode | NamedNode)[]>;
910
+ };
911
+ export declare namespace PropertyShape {
912
+ const create: (parameters: {
913
+ readonly $identifier?: (() => PropertyShape.Identifier) | BlankNode | NamedNode | string;
914
+ readonly and?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
915
+ readonly classes?: string | NamedNode | readonly (string | NamedNode)[];
916
+ readonly comment?: string | Maybe<string>;
917
+ readonly datatype?: string | NamedNode | Maybe<NamedNode>;
918
+ readonly deactivated?: boolean | Maybe<boolean>;
919
+ readonly defaultValue?: (NamedNode | Literal) | Maybe<NamedNode | Literal>;
920
+ readonly description?: string | Maybe<string>;
921
+ readonly disjoint?: string | NamedNode | readonly (string | NamedNode)[];
922
+ readonly display?: boolean;
923
+ readonly equals?: string | NamedNode | readonly (string | NamedNode)[];
924
+ readonly flags?: string | Maybe<string>;
925
+ readonly groups?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
926
+ readonly hasValues?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
927
+ readonly ignore?: boolean;
928
+ readonly in_?: readonly (NamedNode | Literal)[] | Maybe<readonly (NamedNode | Literal)[]>;
929
+ readonly isDefinedBy?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
930
+ readonly label?: string | Maybe<string>;
931
+ readonly languageIn?: readonly string[] | Maybe<readonly string[]>;
932
+ readonly lessThan?: string | NamedNode | readonly (string | NamedNode)[];
933
+ readonly lessThanOrEquals?: string | NamedNode | readonly (string | NamedNode)[];
934
+ readonly maxCount?: bigint | Maybe<bigint>;
935
+ readonly maxExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
936
+ readonly maxInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
937
+ readonly maxLength?: bigint | Maybe<bigint>;
938
+ readonly message?: string | Maybe<string>;
939
+ readonly minCount?: bigint | Maybe<bigint>;
940
+ readonly minExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
941
+ readonly minInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
942
+ readonly minLength?: bigint | Maybe<bigint>;
943
+ readonly mutable?: boolean | Maybe<boolean>;
944
+ readonly name?: string | Maybe<string>;
945
+ readonly node?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
946
+ readonly nodeKind?: ("http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal") | NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal"> | Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
947
+ readonly not?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
948
+ readonly or?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
949
+ readonly order?: number | Maybe<number>;
950
+ readonly path: $PropertyPath;
951
+ readonly pattern?: string | Maybe<string>;
952
+ readonly qualifiedMaxCount?: bigint | Maybe<bigint>;
953
+ readonly qualifiedMinCount?: bigint | Maybe<bigint>;
954
+ readonly qualifiedValueShape?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
955
+ readonly qualifiedValueShapesDisjoint?: boolean | Maybe<boolean>;
956
+ readonly resolve?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
957
+ readonly severity?: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | Severity | Maybe<Severity>;
958
+ readonly shaclmateName?: string | Maybe<string>;
959
+ readonly targetClasses?: string | NamedNode | readonly (string | NamedNode)[];
960
+ readonly targetNodes?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
961
+ readonly targetObjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
962
+ readonly targetSubjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
963
+ readonly uniqueLang?: boolean | Maybe<boolean>;
964
+ readonly xone?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
965
+ }) => Either<Error, PropertyShape>;
966
+ function createUnsafe(parameters: {
967
+ readonly $identifier?: (() => PropertyShape.Identifier) | BlankNode | NamedNode | string;
968
+ readonly and?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
969
+ readonly classes?: string | NamedNode | readonly (string | NamedNode)[];
970
+ readonly comment?: string | Maybe<string>;
971
+ readonly datatype?: string | NamedNode | Maybe<NamedNode>;
972
+ readonly deactivated?: boolean | Maybe<boolean>;
973
+ readonly defaultValue?: (NamedNode | Literal) | Maybe<NamedNode | Literal>;
974
+ readonly description?: string | Maybe<string>;
975
+ readonly disjoint?: string | NamedNode | readonly (string | NamedNode)[];
976
+ readonly display?: boolean;
977
+ readonly equals?: string | NamedNode | readonly (string | NamedNode)[];
978
+ readonly flags?: string | Maybe<string>;
979
+ readonly groups?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
980
+ readonly hasValues?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
981
+ readonly ignore?: boolean;
982
+ readonly in_?: readonly (NamedNode | Literal)[] | Maybe<readonly (NamedNode | Literal)[]>;
983
+ readonly isDefinedBy?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
984
+ readonly label?: string | Maybe<string>;
985
+ readonly languageIn?: readonly string[] | Maybe<readonly string[]>;
986
+ readonly lessThan?: string | NamedNode | readonly (string | NamedNode)[];
987
+ readonly lessThanOrEquals?: string | NamedNode | readonly (string | NamedNode)[];
988
+ readonly maxCount?: bigint | Maybe<bigint>;
989
+ readonly maxExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
990
+ readonly maxInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
991
+ readonly maxLength?: bigint | Maybe<bigint>;
992
+ readonly message?: string | Maybe<string>;
993
+ readonly minCount?: bigint | Maybe<bigint>;
994
+ readonly minExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
995
+ readonly minInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
996
+ readonly minLength?: bigint | Maybe<bigint>;
997
+ readonly mutable?: boolean | Maybe<boolean>;
998
+ readonly name?: string | Maybe<string>;
999
+ readonly node?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
1000
+ readonly nodeKind?: ("http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal") | NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal"> | Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
1001
+ readonly not?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
1002
+ readonly or?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
1003
+ readonly order?: number | Maybe<number>;
1004
+ readonly path: $PropertyPath;
1005
+ readonly pattern?: string | Maybe<string>;
1006
+ readonly qualifiedMaxCount?: bigint | Maybe<bigint>;
1007
+ readonly qualifiedMinCount?: bigint | Maybe<bigint>;
1008
+ readonly qualifiedValueShape?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
1009
+ readonly qualifiedValueShapesDisjoint?: boolean | Maybe<boolean>;
1010
+ readonly resolve?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
1011
+ readonly severity?: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | Severity | Maybe<Severity>;
1012
+ readonly shaclmateName?: string | Maybe<string>;
1013
+ readonly targetClasses?: string | NamedNode | readonly (string | NamedNode)[];
1014
+ readonly targetNodes?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
1015
+ readonly targetObjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
1016
+ readonly targetSubjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
1017
+ readonly uniqueLang?: boolean | Maybe<boolean>;
1018
+ readonly xone?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
1019
+ }): PropertyShape;
1020
+ const _fromRdfResource: $_FromRdfResourceFunction<PropertyShape>;
1021
+ const fromRdfResource: $FromRdfResourceFunction<PropertyShape>;
1022
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<PropertyShape, PropertyShape.Schema>;
1023
+ type Identifier = BlankNode | NamedNode;
1024
+ namespace Identifier {
1025
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
1026
+ const stringify: typeof NTriplesTerm.stringify;
1027
+ }
1028
+ function isPropertyShape(object: $Object): object is PropertyShape;
1029
+ const schema: {
1030
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyShape">;
1031
+ readonly properties: {
1032
+ readonly $identifier: {
1033
+ readonly kind: "Identifier";
1034
+ readonly type: {
1035
+ readonly kind: "Identifier";
1036
+ };
1037
+ };
1038
+ readonly and: {
1039
+ readonly kind: "Shacl";
1040
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
1041
+ readonly type: {
1042
+ readonly kind: "Option";
1043
+ readonly itemType: {
1044
+ readonly kind: "List";
1045
+ readonly itemType: {
1046
+ readonly kind: "Identifier";
1047
+ };
1048
+ };
1049
+ };
1050
+ };
1051
+ readonly classes: {
1052
+ readonly kind: "Shacl";
1053
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
1054
+ readonly type: {
1055
+ readonly kind: "Set";
1056
+ readonly itemType: {
1057
+ readonly kind: "Iri";
1058
+ };
1059
+ };
1060
+ };
1061
+ readonly comment: {
1062
+ readonly kind: "Shacl";
1063
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
1064
+ readonly type: {
1065
+ readonly kind: "Option";
1066
+ readonly itemType: {
1067
+ readonly kind: "String";
1068
+ };
1069
+ };
1070
+ };
1071
+ readonly datatype: {
1072
+ readonly kind: "Shacl";
1073
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
1074
+ readonly type: {
1075
+ readonly kind: "Option";
1076
+ readonly itemType: {
1077
+ readonly kind: "Iri";
1078
+ };
1079
+ };
1080
+ };
1081
+ readonly deactivated: {
1082
+ readonly kind: "Shacl";
1083
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
1084
+ readonly type: {
1085
+ readonly kind: "Option";
1086
+ readonly itemType: {
1087
+ readonly kind: "Boolean";
1088
+ };
1089
+ };
1090
+ };
1091
+ readonly defaultValue: {
1092
+ readonly kind: "Shacl";
1093
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
1094
+ readonly type: {
1095
+ readonly kind: "Option";
1096
+ readonly itemType: {
1097
+ readonly kind: "Term";
1098
+ readonly types: readonly ["NamedNode", "Literal"];
1099
+ };
1100
+ };
1101
+ };
1102
+ readonly description: {
1103
+ readonly kind: "Shacl";
1104
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#description">;
1105
+ readonly type: {
1106
+ readonly kind: "Option";
1107
+ readonly itemType: {
1108
+ readonly kind: "String";
1109
+ };
1110
+ };
1111
+ };
1112
+ readonly disjoint: {
1113
+ readonly kind: "Shacl";
1114
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#disjoint">;
1115
+ readonly type: {
1116
+ readonly kind: "Set";
1117
+ readonly itemType: {
1118
+ readonly kind: "Iri";
1119
+ };
1120
+ };
1121
+ };
1122
+ readonly display: {
1123
+ readonly kind: "Shacl";
1124
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#display">;
1125
+ readonly type: {
1126
+ readonly kind: "DefaultValue";
1127
+ readonly itemType: {
1128
+ readonly kind: "Boolean";
1129
+ };
1130
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
1131
+ };
1132
+ };
1133
+ readonly equals: {
1134
+ readonly kind: "Shacl";
1135
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#equals">;
1136
+ readonly type: {
1137
+ readonly kind: "Set";
1138
+ readonly itemType: {
1139
+ readonly kind: "Iri";
1140
+ };
1141
+ };
1142
+ };
1143
+ readonly flags: {
1144
+ readonly kind: "Shacl";
1145
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
1146
+ readonly type: {
1147
+ readonly kind: "Option";
1148
+ readonly itemType: {
1149
+ readonly kind: "String";
1150
+ };
1151
+ };
1152
+ };
1153
+ readonly groups: {
1154
+ readonly kind: "Shacl";
1155
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#group">;
1156
+ readonly type: {
1157
+ readonly kind: "Set";
1158
+ readonly itemType: {
1159
+ readonly kind: "Identifier";
1160
+ };
1161
+ };
1162
+ };
1163
+ readonly hasValues: {
1164
+ readonly kind: "Shacl";
1165
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
1166
+ readonly type: {
1167
+ readonly kind: "Set";
1168
+ readonly itemType: {
1169
+ readonly kind: "Term";
1170
+ readonly types: readonly ["NamedNode", "Literal"];
1171
+ };
1172
+ };
1173
+ };
1174
+ readonly ignore: {
1175
+ readonly kind: "Shacl";
1176
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
1177
+ readonly type: {
1178
+ readonly kind: "DefaultValue";
1179
+ readonly itemType: {
1180
+ readonly kind: "Boolean";
1181
+ };
1182
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
1183
+ };
1184
+ };
1185
+ readonly in_: {
1186
+ readonly kind: "Shacl";
1187
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
1188
+ readonly type: {
1189
+ readonly kind: "Option";
1190
+ readonly itemType: {
1191
+ readonly kind: "List";
1192
+ readonly itemType: {
1193
+ readonly kind: "Term";
1194
+ readonly types: readonly ["NamedNode", "Literal"];
1195
+ };
1196
+ };
1197
+ };
1198
+ };
1199
+ readonly isDefinedBy: {
1200
+ readonly kind: "Shacl";
1201
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
1202
+ readonly type: {
1203
+ readonly kind: "Option";
1204
+ readonly itemType: {
1205
+ readonly kind: "Identifier";
1206
+ };
1207
+ };
1208
+ };
1209
+ readonly label: {
1210
+ readonly kind: "Shacl";
1211
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
1212
+ readonly type: {
1213
+ readonly kind: "Option";
1214
+ readonly itemType: {
1215
+ readonly kind: "String";
1216
+ };
1217
+ };
1218
+ };
1219
+ readonly languageIn: {
1220
+ readonly kind: "Shacl";
1221
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
1222
+ readonly type: {
1223
+ readonly kind: "Option";
1224
+ readonly itemType: {
1225
+ readonly kind: "List";
1226
+ readonly itemType: {
1227
+ readonly kind: "String";
1228
+ };
1229
+ };
1230
+ };
1231
+ };
1232
+ readonly lessThan: {
1233
+ readonly kind: "Shacl";
1234
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThan">;
1235
+ readonly type: {
1236
+ readonly kind: "Set";
1237
+ readonly itemType: {
1238
+ readonly kind: "Iri";
1239
+ };
1240
+ };
1241
+ };
1242
+ readonly lessThanOrEquals: {
1243
+ readonly kind: "Shacl";
1244
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThanOrEquals">;
1245
+ readonly type: {
1246
+ readonly kind: "Set";
1247
+ readonly itemType: {
1248
+ readonly kind: "Iri";
1249
+ };
1250
+ };
1251
+ };
1252
+ readonly maxCount: {
1253
+ readonly kind: "Shacl";
1254
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
1255
+ readonly type: {
1256
+ readonly kind: "Option";
1257
+ readonly itemType: {
1258
+ readonly kind: "BigInt";
1259
+ };
1260
+ };
1261
+ };
1262
+ readonly maxExclusive: {
1263
+ readonly kind: "Shacl";
1264
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
1265
+ readonly type: {
1266
+ readonly kind: "Option";
1267
+ readonly itemType: {
1268
+ readonly kind: "Literal";
1269
+ };
1270
+ };
1271
+ };
1272
+ readonly maxInclusive: {
1273
+ readonly kind: "Shacl";
1274
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
1275
+ readonly type: {
1276
+ readonly kind: "Option";
1277
+ readonly itemType: {
1278
+ readonly kind: "Literal";
1279
+ };
1280
+ };
1281
+ };
1282
+ readonly maxLength: {
1283
+ readonly kind: "Shacl";
1284
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
1285
+ readonly type: {
1286
+ readonly kind: "Option";
1287
+ readonly itemType: {
1288
+ readonly kind: "BigInt";
1289
+ };
1290
+ };
1291
+ };
1292
+ readonly message: {
1293
+ readonly kind: "Shacl";
1294
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
1295
+ readonly type: {
1296
+ readonly kind: "Option";
1297
+ readonly itemType: {
1298
+ readonly kind: "String";
1299
+ };
1300
+ };
1301
+ };
1302
+ readonly minCount: {
1303
+ readonly kind: "Shacl";
1304
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
1305
+ readonly type: {
1306
+ readonly kind: "Option";
1307
+ readonly itemType: {
1308
+ readonly kind: "BigInt";
1309
+ };
1310
+ };
1311
+ };
1312
+ readonly minExclusive: {
1313
+ readonly kind: "Shacl";
1314
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
1315
+ readonly type: {
1316
+ readonly kind: "Option";
1317
+ readonly itemType: {
1318
+ readonly kind: "Literal";
1319
+ };
1320
+ };
1321
+ };
1322
+ readonly minInclusive: {
1323
+ readonly kind: "Shacl";
1324
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
1325
+ readonly type: {
1326
+ readonly kind: "Option";
1327
+ readonly itemType: {
1328
+ readonly kind: "Literal";
1329
+ };
1330
+ };
1331
+ };
1332
+ readonly minLength: {
1333
+ readonly kind: "Shacl";
1334
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
1335
+ readonly type: {
1336
+ readonly kind: "Option";
1337
+ readonly itemType: {
1338
+ readonly kind: "BigInt";
1339
+ };
1340
+ };
1341
+ };
1342
+ readonly mutable: {
1343
+ readonly kind: "Shacl";
1344
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
1345
+ readonly type: {
1346
+ readonly kind: "Option";
1347
+ readonly itemType: {
1348
+ readonly kind: "Boolean";
1349
+ };
1350
+ };
1351
+ };
1352
+ readonly name: {
1353
+ readonly kind: "Shacl";
1354
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#name">;
1355
+ readonly type: {
1356
+ readonly kind: "Option";
1357
+ readonly itemType: {
1358
+ readonly kind: "String";
1359
+ };
1360
+ };
1361
+ };
1362
+ readonly node: {
1363
+ readonly kind: "Shacl";
1364
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
1365
+ readonly type: {
1366
+ readonly kind: "Option";
1367
+ readonly itemType: {
1368
+ readonly kind: "Identifier";
1369
+ };
1370
+ };
1371
+ };
1372
+ readonly nodeKind: {
1373
+ readonly kind: "Shacl";
1374
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
1375
+ readonly type: {
1376
+ readonly kind: "Option";
1377
+ readonly itemType: {
1378
+ readonly kind: "Iri";
1379
+ readonly in: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">];
1380
+ };
1381
+ };
1382
+ };
1383
+ readonly not: {
1384
+ readonly kind: "Shacl";
1385
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
1386
+ readonly type: {
1387
+ readonly kind: "Set";
1388
+ readonly itemType: {
1389
+ readonly kind: "Identifier";
1390
+ };
1391
+ };
1392
+ };
1393
+ readonly or: {
1394
+ readonly kind: "Shacl";
1395
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
1396
+ readonly type: {
1397
+ readonly kind: "Option";
1398
+ readonly itemType: {
1399
+ readonly kind: "List";
1400
+ readonly itemType: {
1401
+ readonly kind: "Identifier";
1402
+ };
1403
+ };
1404
+ };
1405
+ };
1406
+ readonly order: {
1407
+ readonly kind: "Shacl";
1408
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#order">;
1409
+ readonly type: {
1410
+ readonly kind: "Option";
1411
+ readonly itemType: {
1412
+ readonly kind: "Float";
1413
+ };
1414
+ };
1415
+ };
1416
+ readonly path: {
1417
+ readonly kind: "Shacl";
1418
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
1419
+ readonly type: object;
1420
+ };
1421
+ readonly pattern: {
1422
+ readonly kind: "Shacl";
1423
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
1424
+ readonly type: {
1425
+ readonly kind: "Option";
1426
+ readonly itemType: {
1427
+ readonly kind: "String";
1428
+ };
1429
+ };
1430
+ };
1431
+ readonly qualifiedMaxCount: {
1432
+ readonly kind: "Shacl";
1433
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMaxCount">;
1434
+ readonly type: {
1435
+ readonly kind: "Option";
1436
+ readonly itemType: {
1437
+ readonly kind: "BigInt";
1438
+ };
1439
+ };
1440
+ };
1441
+ readonly qualifiedMinCount: {
1442
+ readonly kind: "Shacl";
1443
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMinCount">;
1444
+ readonly type: {
1445
+ readonly kind: "Option";
1446
+ readonly itemType: {
1447
+ readonly kind: "BigInt";
1448
+ };
1449
+ };
1450
+ };
1451
+ readonly qualifiedValueShape: {
1452
+ readonly kind: "Shacl";
1453
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShape">;
1454
+ readonly type: {
1455
+ readonly kind: "Option";
1456
+ readonly itemType: {
1457
+ readonly kind: "Identifier";
1458
+ };
1459
+ };
1460
+ };
1461
+ readonly qualifiedValueShapesDisjoint: {
1462
+ readonly kind: "Shacl";
1463
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint">;
1464
+ readonly type: {
1465
+ readonly kind: "Option";
1466
+ readonly itemType: {
1467
+ readonly kind: "Boolean";
1468
+ };
1469
+ };
1470
+ };
1471
+ readonly resolve: {
1472
+ readonly kind: "Shacl";
1473
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
1474
+ readonly type: {
1475
+ readonly kind: "Option";
1476
+ readonly itemType: {
1477
+ readonly kind: "Identifier";
1478
+ };
1479
+ };
1480
+ };
1481
+ readonly severity: {
1482
+ readonly kind: "Shacl";
1483
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
1484
+ readonly type: {
1485
+ kind: "Option";
1486
+ readonly itemType: {
1487
+ kind: "Iri";
1488
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
1489
+ };
1490
+ };
1491
+ };
1492
+ readonly shaclmateName: {
1493
+ readonly kind: "Shacl";
1494
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
1495
+ readonly type: {
1496
+ readonly kind: "Option";
1497
+ readonly itemType: {
1498
+ readonly kind: "String";
1499
+ };
1500
+ };
1501
+ };
1502
+ readonly targetClasses: {
1503
+ readonly kind: "Shacl";
1504
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
1505
+ readonly type: {
1506
+ readonly kind: "Set";
1507
+ readonly itemType: {
1508
+ readonly kind: "Iri";
1509
+ };
1510
+ };
1511
+ };
1512
+ readonly targetNodes: {
1513
+ readonly kind: "Shacl";
1514
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
1515
+ readonly type: {
1516
+ readonly kind: "Set";
1517
+ readonly itemType: {
1518
+ readonly kind: "Term";
1519
+ readonly types: readonly ["NamedNode", "Literal"];
1520
+ };
1521
+ };
1522
+ };
1523
+ readonly targetObjectsOf: {
1524
+ readonly kind: "Shacl";
1525
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
1526
+ readonly type: {
1527
+ readonly kind: "Set";
1528
+ readonly itemType: {
1529
+ readonly kind: "Iri";
1530
+ };
1531
+ };
1532
+ };
1533
+ readonly targetSubjectsOf: {
1534
+ readonly kind: "Shacl";
1535
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
1536
+ readonly type: {
1537
+ readonly kind: "Set";
1538
+ readonly itemType: {
1539
+ readonly kind: "Iri";
1540
+ };
1541
+ };
1542
+ };
1543
+ readonly uniqueLang: {
1544
+ readonly kind: "Shacl";
1545
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
1546
+ readonly type: {
1547
+ readonly kind: "Option";
1548
+ readonly itemType: {
1549
+ readonly kind: "Boolean";
1550
+ };
1551
+ };
1552
+ };
1553
+ readonly xone: {
1554
+ readonly kind: "Shacl";
1555
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
1556
+ readonly type: {
1557
+ readonly kind: "Option";
1558
+ readonly itemType: {
1559
+ readonly kind: "List";
1560
+ readonly itemType: {
1561
+ readonly kind: "Identifier";
1562
+ };
1563
+ };
1564
+ };
1565
+ };
1566
+ };
1567
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyShape">];
1568
+ };
1569
+ type Schema = typeof schema;
1570
+ const _toRdfResource: $_ToRdfResourceFunction<PropertyShape.Identifier, PropertyShape>;
1571
+ const toRdfResource: $ToRdfResourceFunction<PropertyShape, Identifier>;
1572
+ const $toString: (_propertyShape: PropertyShape) => string;
1573
+ const toStringRecord: (_propertyShape: PropertyShape) => Record<string, string>;
1574
+ }
1575
+ export type Severity = NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation">;
1576
+ export type ValidationReport = {
1577
+ readonly $identifier: () => ValidationReport.Identifier;
1578
+ readonly $type: "ValidationReport";
1579
+ readonly conforms: boolean;
1580
+ readonly results: readonly ValidationResult[];
1581
+ readonly shapesGraphWellFormed: Maybe<boolean>;
1582
+ };
1583
+ export declare namespace ValidationReport {
1584
+ const create: (parameters: {
1585
+ readonly $identifier?: (() => ValidationReport.Identifier) | BlankNode | NamedNode | string;
1586
+ readonly conforms: boolean;
1587
+ readonly results?: ValidationResult | readonly ValidationResult[];
1588
+ readonly shapesGraphWellFormed?: boolean | Maybe<boolean>;
1589
+ }) => Either<Error, ValidationReport>;
1590
+ function createUnsafe(parameters: {
1591
+ readonly $identifier?: (() => ValidationReport.Identifier) | BlankNode | NamedNode | string;
1592
+ readonly conforms: boolean;
1593
+ readonly results?: ValidationResult | readonly ValidationResult[];
1594
+ readonly shapesGraphWellFormed?: boolean | Maybe<boolean>;
1595
+ }): ValidationReport;
1596
+ const _fromRdfResource: $_FromRdfResourceFunction<ValidationReport>;
1597
+ const fromRdfResource: $FromRdfResourceFunction<ValidationReport>;
1598
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<ValidationReport, ValidationReport.Schema>;
1599
+ type Identifier = BlankNode | NamedNode;
1600
+ namespace Identifier {
1601
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
1602
+ const stringify: typeof NTriplesTerm.stringify;
1603
+ }
1604
+ function isValidationReport(object: $Object): object is ValidationReport;
1605
+ const schema: {
1606
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationReport">;
1607
+ readonly properties: {
1608
+ readonly $identifier: {
1609
+ readonly kind: "Identifier";
1610
+ readonly type: {
1611
+ readonly kind: "Identifier";
1612
+ };
1613
+ };
1614
+ readonly conforms: {
1615
+ readonly kind: "Shacl";
1616
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#conforms">;
1617
+ readonly type: {
1618
+ readonly kind: "Boolean";
1619
+ };
1620
+ };
1621
+ readonly results: {
1622
+ readonly kind: "Shacl";
1623
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#result">;
1624
+ readonly type: {
1625
+ kind: "Set";
1626
+ readonly itemType: {
1627
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationResult">;
1628
+ readonly properties: {
1629
+ readonly $identifier: {
1630
+ readonly kind: "Identifier";
1631
+ readonly type: {
1632
+ readonly kind: "Identifier";
1633
+ };
1634
+ };
1635
+ readonly details: {
1636
+ readonly kind: "Shacl";
1637
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#detail">;
1638
+ readonly type: {
1639
+ readonly kind: "Set";
1640
+ readonly itemType: {
1641
+ readonly kind: "Term";
1642
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
1643
+ };
1644
+ };
1645
+ };
1646
+ readonly focusNode: {
1647
+ readonly kind: "Shacl";
1648
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#focusNode">;
1649
+ readonly type: {
1650
+ readonly kind: "Term";
1651
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
1652
+ };
1653
+ };
1654
+ readonly message: {
1655
+ readonly kind: "Shacl";
1656
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultMessage">;
1657
+ readonly type: {
1658
+ readonly kind: "Option";
1659
+ readonly itemType: {
1660
+ readonly kind: "String";
1661
+ };
1662
+ };
1663
+ };
1664
+ readonly path: {
1665
+ readonly kind: "Shacl";
1666
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultPath">;
1667
+ readonly type: {
1668
+ kind: "Option";
1669
+ readonly itemType: object;
1670
+ };
1671
+ };
1672
+ readonly severity: {
1673
+ readonly kind: "Shacl";
1674
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultSeverity">;
1675
+ readonly type: {
1676
+ kind: "Iri";
1677
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
1678
+ };
1679
+ };
1680
+ readonly sourceConstraintComponent: {
1681
+ readonly kind: "Shacl";
1682
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#sourceConstraintComponent">;
1683
+ readonly type: {
1684
+ readonly kind: "Iri";
1685
+ };
1686
+ };
1687
+ readonly sourceShape: {
1688
+ readonly kind: "Shacl";
1689
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#sourceShape">;
1690
+ readonly type: {
1691
+ readonly kind: "Option";
1692
+ readonly itemType: {
1693
+ readonly kind: "Identifier";
1694
+ };
1695
+ };
1696
+ };
1697
+ readonly value: {
1698
+ readonly kind: "Shacl";
1699
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#value">;
1700
+ readonly type: {
1701
+ readonly kind: "Option";
1702
+ readonly itemType: {
1703
+ readonly kind: "Term";
1704
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
1705
+ };
1706
+ };
1707
+ };
1708
+ };
1709
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationResult">];
1710
+ };
1711
+ };
1712
+ };
1713
+ readonly shapesGraphWellFormed: {
1714
+ readonly kind: "Shacl";
1715
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#shapesGraphWellFormed">;
1716
+ readonly type: {
1717
+ readonly kind: "Option";
1718
+ readonly itemType: {
1719
+ readonly kind: "Boolean";
1720
+ };
1721
+ };
1722
+ };
1723
+ };
1724
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationReport">];
1725
+ };
1726
+ type Schema = typeof schema;
1727
+ const _toRdfResource: $_ToRdfResourceFunction<ValidationReport.Identifier, ValidationReport>;
1728
+ const toRdfResource: $ToRdfResourceFunction<ValidationReport, Identifier>;
1729
+ const $toString: (_validationReport: ValidationReport) => string;
1730
+ const toStringRecord: (_validationReport: ValidationReport) => Record<string, string>;
1731
+ }
1732
+ export type ValidationResult = {
1733
+ readonly $identifier: () => ValidationResult.Identifier;
1734
+ readonly $type: "ValidationResult";
1735
+ readonly details: readonly (BlankNode | NamedNode | Literal)[];
1736
+ readonly focusNode: BlankNode | NamedNode | Literal;
1737
+ readonly message: Maybe<string>;
1738
+ readonly path: Maybe<$PropertyPath>;
1739
+ readonly severity: Severity;
1740
+ readonly sourceConstraintComponent: NamedNode;
1741
+ readonly sourceShape: Maybe<BlankNode | NamedNode>;
1742
+ readonly value: Maybe<BlankNode | NamedNode | Literal>;
1743
+ };
1744
+ export declare namespace ValidationResult {
1745
+ const create: (parameters: {
1746
+ readonly $identifier?: (() => ValidationResult.Identifier) | BlankNode | NamedNode | string;
1747
+ readonly details?: (BlankNode | NamedNode | Literal) | readonly (BlankNode | NamedNode | Literal)[];
1748
+ readonly focusNode: BlankNode | NamedNode | Literal;
1749
+ readonly message?: string | Maybe<string>;
1750
+ readonly path?: $PropertyPath | Maybe<$PropertyPath>;
1751
+ readonly severity: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | Severity;
1752
+ readonly sourceConstraintComponent: string | NamedNode;
1753
+ readonly sourceShape?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
1754
+ readonly value?: (BlankNode | NamedNode | Literal) | Maybe<BlankNode | NamedNode | Literal>;
1755
+ }) => Either<Error, ValidationResult>;
1756
+ function createUnsafe(parameters: {
1757
+ readonly $identifier?: (() => ValidationResult.Identifier) | BlankNode | NamedNode | string;
1758
+ readonly details?: (BlankNode | NamedNode | Literal) | readonly (BlankNode | NamedNode | Literal)[];
1759
+ readonly focusNode: BlankNode | NamedNode | Literal;
1760
+ readonly message?: string | Maybe<string>;
1761
+ readonly path?: $PropertyPath | Maybe<$PropertyPath>;
1762
+ readonly severity: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | Severity;
1763
+ readonly sourceConstraintComponent: string | NamedNode;
1764
+ readonly sourceShape?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
1765
+ readonly value?: (BlankNode | NamedNode | Literal) | Maybe<BlankNode | NamedNode | Literal>;
1766
+ }): ValidationResult;
1767
+ const _fromRdfResource: $_FromRdfResourceFunction<ValidationResult>;
1768
+ const fromRdfResource: $FromRdfResourceFunction<ValidationResult>;
1769
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<ValidationResult, ValidationResult.Schema>;
1770
+ type Identifier = BlankNode | NamedNode;
1771
+ namespace Identifier {
1772
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
1773
+ const stringify: typeof NTriplesTerm.stringify;
1774
+ }
1775
+ function isValidationResult(object: $Object): object is ValidationResult;
1776
+ const schema: {
1777
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationResult">;
1778
+ readonly properties: {
1779
+ readonly $identifier: {
1780
+ readonly kind: "Identifier";
1781
+ readonly type: {
1782
+ readonly kind: "Identifier";
1783
+ };
1784
+ };
1785
+ readonly details: {
1786
+ readonly kind: "Shacl";
1787
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#detail">;
1788
+ readonly type: {
1789
+ readonly kind: "Set";
1790
+ readonly itemType: {
1791
+ readonly kind: "Term";
1792
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
1793
+ };
1794
+ };
1795
+ };
1796
+ readonly focusNode: {
1797
+ readonly kind: "Shacl";
1798
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#focusNode">;
1799
+ readonly type: {
1800
+ readonly kind: "Term";
1801
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
1802
+ };
1803
+ };
1804
+ readonly message: {
1805
+ readonly kind: "Shacl";
1806
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultMessage">;
1807
+ readonly type: {
1808
+ readonly kind: "Option";
1809
+ readonly itemType: {
1810
+ readonly kind: "String";
1811
+ };
1812
+ };
1813
+ };
1814
+ readonly path: {
1815
+ readonly kind: "Shacl";
1816
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultPath">;
1817
+ readonly type: {
1818
+ kind: "Option";
1819
+ readonly itemType: object;
1820
+ };
1821
+ };
1822
+ readonly severity: {
1823
+ readonly kind: "Shacl";
1824
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultSeverity">;
1825
+ readonly type: {
1826
+ kind: "Iri";
1827
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
1828
+ };
1829
+ };
1830
+ readonly sourceConstraintComponent: {
1831
+ readonly kind: "Shacl";
1832
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#sourceConstraintComponent">;
1833
+ readonly type: {
1834
+ readonly kind: "Iri";
1835
+ };
1836
+ };
1837
+ readonly sourceShape: {
1838
+ readonly kind: "Shacl";
1839
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#sourceShape">;
1840
+ readonly type: {
1841
+ readonly kind: "Option";
1842
+ readonly itemType: {
1843
+ readonly kind: "Identifier";
1844
+ };
1845
+ };
1846
+ };
1847
+ readonly value: {
1848
+ readonly kind: "Shacl";
1849
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#value">;
1850
+ readonly type: {
1851
+ readonly kind: "Option";
1852
+ readonly itemType: {
1853
+ readonly kind: "Term";
1854
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
1855
+ };
1856
+ };
1857
+ };
1858
+ };
1859
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationResult">];
1860
+ };
1861
+ type Schema = typeof schema;
1862
+ const _toRdfResource: $_ToRdfResourceFunction<ValidationResult.Identifier, ValidationResult>;
1863
+ const toRdfResource: $ToRdfResourceFunction<ValidationResult, Identifier>;
1864
+ const $toString: (_validationResult: ValidationResult) => string;
1865
+ const toStringRecord: (_validationResult: ValidationResult) => Record<string, string>;
1866
+ }
1867
+ export type Shape = NodeShape | PropertyShape;
1868
+ export declare namespace Shape {
1869
+ const $toString: (value: Shape) => string;
1870
+ const fromRdfResource: $FromRdfResourceFunction<Shape>;
1871
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<Shape, typeof Shape.schema>;
1872
+ type Identifier = BlankNode | NamedNode;
1873
+ namespace Identifier {
1874
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
1875
+ const stringify: typeof NTriplesTerm.stringify;
1876
+ }
1877
+ function isShape(object: $Object): object is Shape;
1878
+ const schema: {
1879
+ readonly kind: "ObjectUnion";
1880
+ readonly members: {
1881
+ readonly NodeShape: {
1882
+ readonly discriminantValues: readonly ["NodeShape"];
1883
+ readonly type: {
1884
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#NodeShape">;
1885
+ readonly properties: {
1886
+ readonly $identifier: {
1887
+ readonly kind: "Identifier";
1888
+ readonly type: {
1889
+ readonly kind: "Identifier";
1890
+ };
1891
+ };
1892
+ readonly and: {
1893
+ readonly kind: "Shacl";
1894
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
1895
+ readonly type: {
1896
+ readonly kind: "Option";
1897
+ readonly itemType: {
1898
+ readonly kind: "List";
1899
+ readonly itemType: {
1900
+ readonly kind: "Identifier";
1901
+ };
1902
+ };
1903
+ };
1904
+ };
1905
+ readonly classes: {
1906
+ readonly kind: "Shacl";
1907
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
1908
+ readonly type: {
1909
+ readonly kind: "Set";
1910
+ readonly itemType: {
1911
+ readonly kind: "Iri";
1912
+ };
1913
+ };
1914
+ };
1915
+ readonly closed: {
1916
+ readonly kind: "Shacl";
1917
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#closed">;
1918
+ readonly type: {
1919
+ readonly kind: "Option";
1920
+ readonly itemType: {
1921
+ readonly kind: "Boolean";
1922
+ };
1923
+ };
1924
+ };
1925
+ readonly comment: {
1926
+ readonly kind: "Shacl";
1927
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
1928
+ readonly type: {
1929
+ readonly kind: "Option";
1930
+ readonly itemType: {
1931
+ readonly kind: "String";
1932
+ };
1933
+ };
1934
+ };
1935
+ readonly datatype: {
1936
+ readonly kind: "Shacl";
1937
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
1938
+ readonly type: {
1939
+ readonly kind: "Option";
1940
+ readonly itemType: {
1941
+ readonly kind: "Iri";
1942
+ };
1943
+ };
1944
+ };
1945
+ readonly deactivated: {
1946
+ readonly kind: "Shacl";
1947
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
1948
+ readonly type: {
1949
+ readonly kind: "Option";
1950
+ readonly itemType: {
1951
+ readonly kind: "Boolean";
1952
+ };
1953
+ };
1954
+ };
1955
+ readonly discriminantValue: {
1956
+ readonly kind: "Shacl";
1957
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
1958
+ readonly type: {
1959
+ readonly kind: "Option";
1960
+ readonly itemType: {
1961
+ readonly kind: "String";
1962
+ };
1963
+ };
1964
+ };
1965
+ readonly extern: {
1966
+ readonly kind: "Shacl";
1967
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#extern">;
1968
+ readonly type: {
1969
+ readonly kind: "Option";
1970
+ readonly itemType: {
1971
+ readonly kind: "Boolean";
1972
+ };
1973
+ };
1974
+ };
1975
+ readonly flags: {
1976
+ readonly kind: "Shacl";
1977
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
1978
+ readonly type: {
1979
+ readonly kind: "Option";
1980
+ readonly itemType: {
1981
+ readonly kind: "String";
1982
+ };
1983
+ };
1984
+ };
1985
+ readonly fromRdfType: {
1986
+ readonly kind: "Shacl";
1987
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
1988
+ readonly type: {
1989
+ readonly kind: "Option";
1990
+ readonly itemType: {
1991
+ readonly kind: "Iri";
1992
+ };
1993
+ };
1994
+ };
1995
+ readonly hasValues: {
1996
+ readonly kind: "Shacl";
1997
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
1998
+ readonly type: {
1999
+ readonly kind: "Set";
2000
+ readonly itemType: {
2001
+ readonly kind: "Term";
2002
+ readonly types: readonly ["NamedNode", "Literal"];
2003
+ };
2004
+ };
2005
+ };
2006
+ readonly ignore: {
2007
+ readonly kind: "Shacl";
2008
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
2009
+ readonly type: {
2010
+ readonly kind: "DefaultValue";
2011
+ readonly itemType: {
2012
+ readonly kind: "Boolean";
2013
+ };
2014
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
2015
+ };
2016
+ };
2017
+ readonly ignoredProperties: {
2018
+ readonly kind: "Shacl";
2019
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
2020
+ readonly type: {
2021
+ readonly kind: "Option";
2022
+ readonly itemType: {
2023
+ readonly kind: "List";
2024
+ readonly itemType: {
2025
+ readonly kind: "Iri";
2026
+ };
2027
+ };
2028
+ };
2029
+ };
2030
+ readonly in_: {
2031
+ readonly kind: "Shacl";
2032
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
2033
+ readonly type: {
2034
+ readonly kind: "Option";
2035
+ readonly itemType: {
2036
+ readonly kind: "List";
2037
+ readonly itemType: {
2038
+ readonly kind: "Term";
2039
+ readonly types: readonly ["NamedNode", "Literal"];
2040
+ };
2041
+ };
2042
+ };
2043
+ };
2044
+ readonly isDefinedBy: {
2045
+ readonly kind: "Shacl";
2046
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
2047
+ readonly type: {
2048
+ readonly kind: "Option";
2049
+ readonly itemType: {
2050
+ readonly kind: "Identifier";
2051
+ };
2052
+ };
2053
+ };
2054
+ readonly label: {
2055
+ readonly kind: "Shacl";
2056
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
2057
+ readonly type: {
2058
+ readonly kind: "Option";
2059
+ readonly itemType: {
2060
+ readonly kind: "String";
2061
+ };
2062
+ };
2063
+ };
2064
+ readonly languageIn: {
2065
+ readonly kind: "Shacl";
2066
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
2067
+ readonly type: {
2068
+ readonly kind: "Option";
2069
+ readonly itemType: {
2070
+ readonly kind: "List";
2071
+ readonly itemType: {
2072
+ readonly kind: "String";
2073
+ };
2074
+ };
2075
+ };
2076
+ };
2077
+ readonly maxExclusive: {
2078
+ readonly kind: "Shacl";
2079
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
2080
+ readonly type: {
2081
+ readonly kind: "Option";
2082
+ readonly itemType: {
2083
+ readonly kind: "Literal";
2084
+ };
2085
+ };
2086
+ };
2087
+ readonly maxInclusive: {
2088
+ readonly kind: "Shacl";
2089
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
2090
+ readonly type: {
2091
+ readonly kind: "Option";
2092
+ readonly itemType: {
2093
+ readonly kind: "Literal";
2094
+ };
2095
+ };
2096
+ };
2097
+ readonly maxLength: {
2098
+ readonly kind: "Shacl";
2099
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
2100
+ readonly type: {
2101
+ readonly kind: "Option";
2102
+ readonly itemType: {
2103
+ readonly kind: "BigInt";
2104
+ };
2105
+ };
2106
+ };
2107
+ readonly message: {
2108
+ readonly kind: "Shacl";
2109
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
2110
+ readonly type: {
2111
+ readonly kind: "Option";
2112
+ readonly itemType: {
2113
+ readonly kind: "String";
2114
+ };
2115
+ };
2116
+ };
2117
+ readonly minExclusive: {
2118
+ readonly kind: "Shacl";
2119
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
2120
+ readonly type: {
2121
+ readonly kind: "Option";
2122
+ readonly itemType: {
2123
+ readonly kind: "Literal";
2124
+ };
2125
+ };
2126
+ };
2127
+ readonly minInclusive: {
2128
+ readonly kind: "Shacl";
2129
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
2130
+ readonly type: {
2131
+ readonly kind: "Option";
2132
+ readonly itemType: {
2133
+ readonly kind: "Literal";
2134
+ };
2135
+ };
2136
+ };
2137
+ readonly minLength: {
2138
+ readonly kind: "Shacl";
2139
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
2140
+ readonly type: {
2141
+ readonly kind: "Option";
2142
+ readonly itemType: {
2143
+ readonly kind: "BigInt";
2144
+ };
2145
+ };
2146
+ };
2147
+ readonly mutable: {
2148
+ readonly kind: "Shacl";
2149
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
2150
+ readonly type: {
2151
+ readonly kind: "Option";
2152
+ readonly itemType: {
2153
+ readonly kind: "Boolean";
2154
+ };
2155
+ };
2156
+ };
2157
+ readonly node: {
2158
+ readonly kind: "Shacl";
2159
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
2160
+ readonly type: {
2161
+ readonly kind: "Option";
2162
+ readonly itemType: {
2163
+ readonly kind: "Identifier";
2164
+ };
2165
+ };
2166
+ };
2167
+ readonly nodeKind: {
2168
+ readonly kind: "Shacl";
2169
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
2170
+ readonly type: {
2171
+ readonly kind: "Option";
2172
+ readonly itemType: {
2173
+ readonly kind: "Iri";
2174
+ readonly in: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">];
2175
+ };
2176
+ };
2177
+ };
2178
+ readonly not: {
2179
+ readonly kind: "Shacl";
2180
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
2181
+ readonly type: {
2182
+ readonly kind: "Set";
2183
+ readonly itemType: {
2184
+ readonly kind: "Identifier";
2185
+ };
2186
+ };
2187
+ };
2188
+ readonly or: {
2189
+ readonly kind: "Shacl";
2190
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
2191
+ readonly type: {
2192
+ readonly kind: "Option";
2193
+ readonly itemType: {
2194
+ readonly kind: "List";
2195
+ readonly itemType: {
2196
+ readonly kind: "Identifier";
2197
+ };
2198
+ };
2199
+ };
2200
+ };
2201
+ readonly pattern: {
2202
+ readonly kind: "Shacl";
2203
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2204
+ readonly type: {
2205
+ readonly kind: "Option";
2206
+ readonly itemType: {
2207
+ readonly kind: "String";
2208
+ };
2209
+ };
2210
+ };
2211
+ readonly properties: {
2212
+ readonly kind: "Shacl";
2213
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#property">;
2214
+ readonly type: {
2215
+ readonly kind: "Set";
2216
+ readonly itemType: {
2217
+ readonly kind: "Identifier";
2218
+ };
2219
+ };
2220
+ };
2221
+ readonly rdfType: {
2222
+ readonly kind: "Shacl";
2223
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
2224
+ readonly type: {
2225
+ readonly kind: "Option";
2226
+ readonly itemType: {
2227
+ readonly kind: "Iri";
2228
+ };
2229
+ };
2230
+ };
2231
+ readonly severity: {
2232
+ readonly kind: "Shacl";
2233
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
2234
+ readonly type: {
2235
+ kind: "Option";
2236
+ readonly itemType: {
2237
+ kind: "Iri";
2238
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
2239
+ };
2240
+ };
2241
+ };
2242
+ readonly shaclmateName: {
2243
+ readonly kind: "Shacl";
2244
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
2245
+ readonly type: {
2246
+ readonly kind: "Option";
2247
+ readonly itemType: {
2248
+ readonly kind: "String";
2249
+ };
2250
+ };
2251
+ };
2252
+ readonly subClassOf: {
2253
+ readonly kind: "Shacl";
2254
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
2255
+ readonly type: {
2256
+ readonly kind: "Set";
2257
+ readonly itemType: {
2258
+ readonly kind: "Iri";
2259
+ };
2260
+ };
2261
+ };
2262
+ readonly targetClasses: {
2263
+ readonly kind: "Shacl";
2264
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
2265
+ readonly type: {
2266
+ readonly kind: "Set";
2267
+ readonly itemType: {
2268
+ readonly kind: "Iri";
2269
+ };
2270
+ };
2271
+ };
2272
+ readonly targetNodes: {
2273
+ readonly kind: "Shacl";
2274
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
2275
+ readonly type: {
2276
+ readonly kind: "Set";
2277
+ readonly itemType: {
2278
+ readonly kind: "Term";
2279
+ readonly types: readonly ["NamedNode", "Literal"];
2280
+ };
2281
+ };
2282
+ };
2283
+ readonly targetObjectsOf: {
2284
+ readonly kind: "Shacl";
2285
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
2286
+ readonly type: {
2287
+ readonly kind: "Set";
2288
+ readonly itemType: {
2289
+ readonly kind: "Iri";
2290
+ };
2291
+ };
2292
+ };
2293
+ readonly targetSubjectsOf: {
2294
+ readonly kind: "Shacl";
2295
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
2296
+ readonly type: {
2297
+ readonly kind: "Set";
2298
+ readonly itemType: {
2299
+ readonly kind: "Iri";
2300
+ };
2301
+ };
2302
+ };
2303
+ readonly toRdfTypes: {
2304
+ readonly kind: "Shacl";
2305
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
2306
+ readonly type: {
2307
+ readonly kind: "Set";
2308
+ readonly itemType: {
2309
+ readonly kind: "Iri";
2310
+ };
2311
+ };
2312
+ };
2313
+ readonly tsImports: {
2314
+ readonly kind: "Shacl";
2315
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
2316
+ readonly type: {
2317
+ readonly kind: "Set";
2318
+ readonly itemType: {
2319
+ readonly kind: "String";
2320
+ };
2321
+ };
2322
+ };
2323
+ readonly types: {
2324
+ readonly kind: "Shacl";
2325
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
2326
+ readonly type: {
2327
+ readonly kind: "Set";
2328
+ readonly itemType: {
2329
+ readonly kind: "Iri";
2330
+ };
2331
+ };
2332
+ };
2333
+ readonly xone: {
2334
+ readonly kind: "Shacl";
2335
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
2336
+ readonly type: {
2337
+ readonly kind: "Option";
2338
+ readonly itemType: {
2339
+ readonly kind: "List";
2340
+ readonly itemType: {
2341
+ readonly kind: "Identifier";
2342
+ };
2343
+ };
2344
+ };
2345
+ };
2346
+ };
2347
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#NodeShape">];
2348
+ };
2349
+ };
2350
+ readonly PropertyShape: {
2351
+ readonly discriminantValues: readonly ["PropertyShape"];
2352
+ readonly type: {
2353
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyShape">;
2354
+ readonly properties: {
2355
+ readonly $identifier: {
2356
+ readonly kind: "Identifier";
2357
+ readonly type: {
2358
+ readonly kind: "Identifier";
2359
+ };
2360
+ };
2361
+ readonly and: {
2362
+ readonly kind: "Shacl";
2363
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
2364
+ readonly type: {
2365
+ readonly kind: "Option";
2366
+ readonly itemType: {
2367
+ readonly kind: "List";
2368
+ readonly itemType: {
2369
+ readonly kind: "Identifier";
2370
+ };
2371
+ };
2372
+ };
2373
+ };
2374
+ readonly classes: {
2375
+ readonly kind: "Shacl";
2376
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
2377
+ readonly type: {
2378
+ readonly kind: "Set";
2379
+ readonly itemType: {
2380
+ readonly kind: "Iri";
2381
+ };
2382
+ };
2383
+ };
2384
+ readonly comment: {
2385
+ readonly kind: "Shacl";
2386
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
2387
+ readonly type: {
2388
+ readonly kind: "Option";
2389
+ readonly itemType: {
2390
+ readonly kind: "String";
2391
+ };
2392
+ };
2393
+ };
2394
+ readonly datatype: {
2395
+ readonly kind: "Shacl";
2396
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
2397
+ readonly type: {
2398
+ readonly kind: "Option";
2399
+ readonly itemType: {
2400
+ readonly kind: "Iri";
2401
+ };
2402
+ };
2403
+ };
2404
+ readonly deactivated: {
2405
+ readonly kind: "Shacl";
2406
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
2407
+ readonly type: {
2408
+ readonly kind: "Option";
2409
+ readonly itemType: {
2410
+ readonly kind: "Boolean";
2411
+ };
2412
+ };
2413
+ };
2414
+ readonly defaultValue: {
2415
+ readonly kind: "Shacl";
2416
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
2417
+ readonly type: {
2418
+ readonly kind: "Option";
2419
+ readonly itemType: {
2420
+ readonly kind: "Term";
2421
+ readonly types: readonly ["NamedNode", "Literal"];
2422
+ };
2423
+ };
2424
+ };
2425
+ readonly description: {
2426
+ readonly kind: "Shacl";
2427
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#description">;
2428
+ readonly type: {
2429
+ readonly kind: "Option";
2430
+ readonly itemType: {
2431
+ readonly kind: "String";
2432
+ };
2433
+ };
2434
+ };
2435
+ readonly disjoint: {
2436
+ readonly kind: "Shacl";
2437
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#disjoint">;
2438
+ readonly type: {
2439
+ readonly kind: "Set";
2440
+ readonly itemType: {
2441
+ readonly kind: "Iri";
2442
+ };
2443
+ };
2444
+ };
2445
+ readonly display: {
2446
+ readonly kind: "Shacl";
2447
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#display">;
2448
+ readonly type: {
2449
+ readonly kind: "DefaultValue";
2450
+ readonly itemType: {
2451
+ readonly kind: "Boolean";
2452
+ };
2453
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
2454
+ };
2455
+ };
2456
+ readonly equals: {
2457
+ readonly kind: "Shacl";
2458
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#equals">;
2459
+ readonly type: {
2460
+ readonly kind: "Set";
2461
+ readonly itemType: {
2462
+ readonly kind: "Iri";
2463
+ };
2464
+ };
2465
+ };
2466
+ readonly flags: {
2467
+ readonly kind: "Shacl";
2468
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
2469
+ readonly type: {
2470
+ readonly kind: "Option";
2471
+ readonly itemType: {
2472
+ readonly kind: "String";
2473
+ };
2474
+ };
2475
+ };
2476
+ readonly groups: {
2477
+ readonly kind: "Shacl";
2478
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#group">;
2479
+ readonly type: {
2480
+ readonly kind: "Set";
2481
+ readonly itemType: {
2482
+ readonly kind: "Identifier";
2483
+ };
2484
+ };
2485
+ };
2486
+ readonly hasValues: {
2487
+ readonly kind: "Shacl";
2488
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
2489
+ readonly type: {
2490
+ readonly kind: "Set";
2491
+ readonly itemType: {
2492
+ readonly kind: "Term";
2493
+ readonly types: readonly ["NamedNode", "Literal"];
2494
+ };
2495
+ };
2496
+ };
2497
+ readonly ignore: {
2498
+ readonly kind: "Shacl";
2499
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
2500
+ readonly type: {
2501
+ readonly kind: "DefaultValue";
2502
+ readonly itemType: {
2503
+ readonly kind: "Boolean";
2504
+ };
2505
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
2506
+ };
2507
+ };
2508
+ readonly in_: {
2509
+ readonly kind: "Shacl";
2510
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
2511
+ readonly type: {
2512
+ readonly kind: "Option";
2513
+ readonly itemType: {
2514
+ readonly kind: "List";
2515
+ readonly itemType: {
2516
+ readonly kind: "Term";
2517
+ readonly types: readonly ["NamedNode", "Literal"];
2518
+ };
2519
+ };
2520
+ };
2521
+ };
2522
+ readonly isDefinedBy: {
2523
+ readonly kind: "Shacl";
2524
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
2525
+ readonly type: {
2526
+ readonly kind: "Option";
2527
+ readonly itemType: {
2528
+ readonly kind: "Identifier";
2529
+ };
2530
+ };
2531
+ };
2532
+ readonly label: {
2533
+ readonly kind: "Shacl";
2534
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
2535
+ readonly type: {
2536
+ readonly kind: "Option";
2537
+ readonly itemType: {
2538
+ readonly kind: "String";
2539
+ };
2540
+ };
2541
+ };
2542
+ readonly languageIn: {
2543
+ readonly kind: "Shacl";
2544
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
2545
+ readonly type: {
2546
+ readonly kind: "Option";
2547
+ readonly itemType: {
2548
+ readonly kind: "List";
2549
+ readonly itemType: {
2550
+ readonly kind: "String";
2551
+ };
2552
+ };
2553
+ };
2554
+ };
2555
+ readonly lessThan: {
2556
+ readonly kind: "Shacl";
2557
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThan">;
2558
+ readonly type: {
2559
+ readonly kind: "Set";
2560
+ readonly itemType: {
2561
+ readonly kind: "Iri";
2562
+ };
2563
+ };
2564
+ };
2565
+ readonly lessThanOrEquals: {
2566
+ readonly kind: "Shacl";
2567
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThanOrEquals">;
2568
+ readonly type: {
2569
+ readonly kind: "Set";
2570
+ readonly itemType: {
2571
+ readonly kind: "Iri";
2572
+ };
2573
+ };
2574
+ };
2575
+ readonly maxCount: {
2576
+ readonly kind: "Shacl";
2577
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
2578
+ readonly type: {
2579
+ readonly kind: "Option";
2580
+ readonly itemType: {
2581
+ readonly kind: "BigInt";
2582
+ };
2583
+ };
2584
+ };
2585
+ readonly maxExclusive: {
2586
+ readonly kind: "Shacl";
2587
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
2588
+ readonly type: {
2589
+ readonly kind: "Option";
2590
+ readonly itemType: {
2591
+ readonly kind: "Literal";
2592
+ };
2593
+ };
2594
+ };
2595
+ readonly maxInclusive: {
2596
+ readonly kind: "Shacl";
2597
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
2598
+ readonly type: {
2599
+ readonly kind: "Option";
2600
+ readonly itemType: {
2601
+ readonly kind: "Literal";
2602
+ };
2603
+ };
2604
+ };
2605
+ readonly maxLength: {
2606
+ readonly kind: "Shacl";
2607
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
2608
+ readonly type: {
2609
+ readonly kind: "Option";
2610
+ readonly itemType: {
2611
+ readonly kind: "BigInt";
2612
+ };
2613
+ };
2614
+ };
2615
+ readonly message: {
2616
+ readonly kind: "Shacl";
2617
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
2618
+ readonly type: {
2619
+ readonly kind: "Option";
2620
+ readonly itemType: {
2621
+ readonly kind: "String";
2622
+ };
2623
+ };
2624
+ };
2625
+ readonly minCount: {
2626
+ readonly kind: "Shacl";
2627
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
2628
+ readonly type: {
2629
+ readonly kind: "Option";
2630
+ readonly itemType: {
2631
+ readonly kind: "BigInt";
2632
+ };
2633
+ };
2634
+ };
2635
+ readonly minExclusive: {
2636
+ readonly kind: "Shacl";
2637
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
2638
+ readonly type: {
2639
+ readonly kind: "Option";
2640
+ readonly itemType: {
2641
+ readonly kind: "Literal";
2642
+ };
2643
+ };
2644
+ };
2645
+ readonly minInclusive: {
2646
+ readonly kind: "Shacl";
2647
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
2648
+ readonly type: {
2649
+ readonly kind: "Option";
2650
+ readonly itemType: {
2651
+ readonly kind: "Literal";
2652
+ };
2653
+ };
2654
+ };
2655
+ readonly minLength: {
2656
+ readonly kind: "Shacl";
2657
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
2658
+ readonly type: {
2659
+ readonly kind: "Option";
2660
+ readonly itemType: {
2661
+ readonly kind: "BigInt";
2662
+ };
2663
+ };
2664
+ };
2665
+ readonly mutable: {
2666
+ readonly kind: "Shacl";
2667
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
2668
+ readonly type: {
2669
+ readonly kind: "Option";
2670
+ readonly itemType: {
2671
+ readonly kind: "Boolean";
2672
+ };
2673
+ };
2674
+ };
2675
+ readonly name: {
2676
+ readonly kind: "Shacl";
2677
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#name">;
2678
+ readonly type: {
2679
+ readonly kind: "Option";
2680
+ readonly itemType: {
2681
+ readonly kind: "String";
2682
+ };
2683
+ };
2684
+ };
2685
+ readonly node: {
2686
+ readonly kind: "Shacl";
2687
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
2688
+ readonly type: {
2689
+ readonly kind: "Option";
2690
+ readonly itemType: {
2691
+ readonly kind: "Identifier";
2692
+ };
2693
+ };
2694
+ };
2695
+ readonly nodeKind: {
2696
+ readonly kind: "Shacl";
2697
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
2698
+ readonly type: {
2699
+ readonly kind: "Option";
2700
+ readonly itemType: {
2701
+ readonly kind: "Iri";
2702
+ readonly in: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">];
2703
+ };
2704
+ };
2705
+ };
2706
+ readonly not: {
2707
+ readonly kind: "Shacl";
2708
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
2709
+ readonly type: {
2710
+ readonly kind: "Set";
2711
+ readonly itemType: {
2712
+ readonly kind: "Identifier";
2713
+ };
2714
+ };
2715
+ };
2716
+ readonly or: {
2717
+ readonly kind: "Shacl";
2718
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
2719
+ readonly type: {
2720
+ readonly kind: "Option";
2721
+ readonly itemType: {
2722
+ readonly kind: "List";
2723
+ readonly itemType: {
2724
+ readonly kind: "Identifier";
2725
+ };
2726
+ };
2727
+ };
2728
+ };
2729
+ readonly order: {
2730
+ readonly kind: "Shacl";
2731
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#order">;
2732
+ readonly type: {
2733
+ readonly kind: "Option";
2734
+ readonly itemType: {
2735
+ readonly kind: "Float";
2736
+ };
2737
+ };
2738
+ };
2739
+ readonly path: {
2740
+ readonly kind: "Shacl";
2741
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
2742
+ readonly type: object;
2743
+ };
2744
+ readonly pattern: {
2745
+ readonly kind: "Shacl";
2746
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2747
+ readonly type: {
2748
+ readonly kind: "Option";
2749
+ readonly itemType: {
2750
+ readonly kind: "String";
2751
+ };
2752
+ };
2753
+ };
2754
+ readonly qualifiedMaxCount: {
2755
+ readonly kind: "Shacl";
2756
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMaxCount">;
2757
+ readonly type: {
2758
+ readonly kind: "Option";
2759
+ readonly itemType: {
2760
+ readonly kind: "BigInt";
2761
+ };
2762
+ };
2763
+ };
2764
+ readonly qualifiedMinCount: {
2765
+ readonly kind: "Shacl";
2766
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMinCount">;
2767
+ readonly type: {
2768
+ readonly kind: "Option";
2769
+ readonly itemType: {
2770
+ readonly kind: "BigInt";
2771
+ };
2772
+ };
2773
+ };
2774
+ readonly qualifiedValueShape: {
2775
+ readonly kind: "Shacl";
2776
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShape">;
2777
+ readonly type: {
2778
+ readonly kind: "Option";
2779
+ readonly itemType: {
2780
+ readonly kind: "Identifier";
2781
+ };
2782
+ };
2783
+ };
2784
+ readonly qualifiedValueShapesDisjoint: {
2785
+ readonly kind: "Shacl";
2786
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint">;
2787
+ readonly type: {
2788
+ readonly kind: "Option";
2789
+ readonly itemType: {
2790
+ readonly kind: "Boolean";
2791
+ };
2792
+ };
2793
+ };
2794
+ readonly resolve: {
2795
+ readonly kind: "Shacl";
2796
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
2797
+ readonly type: {
2798
+ readonly kind: "Option";
2799
+ readonly itemType: {
2800
+ readonly kind: "Identifier";
2801
+ };
2802
+ };
2803
+ };
2804
+ readonly severity: {
2805
+ readonly kind: "Shacl";
2806
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
2807
+ readonly type: {
2808
+ kind: "Option";
2809
+ readonly itemType: {
2810
+ kind: "Iri";
2811
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
2812
+ };
2813
+ };
2814
+ };
2815
+ readonly shaclmateName: {
2816
+ readonly kind: "Shacl";
2817
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
2818
+ readonly type: {
2819
+ readonly kind: "Option";
2820
+ readonly itemType: {
2821
+ readonly kind: "String";
2822
+ };
2823
+ };
2824
+ };
2825
+ readonly targetClasses: {
2826
+ readonly kind: "Shacl";
2827
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
2828
+ readonly type: {
2829
+ readonly kind: "Set";
2830
+ readonly itemType: {
2831
+ readonly kind: "Iri";
2832
+ };
2833
+ };
2834
+ };
2835
+ readonly targetNodes: {
2836
+ readonly kind: "Shacl";
2837
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
2838
+ readonly type: {
2839
+ readonly kind: "Set";
2840
+ readonly itemType: {
2841
+ readonly kind: "Term";
2842
+ readonly types: readonly ["NamedNode", "Literal"];
2843
+ };
2844
+ };
2845
+ };
2846
+ readonly targetObjectsOf: {
2847
+ readonly kind: "Shacl";
2848
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
2849
+ readonly type: {
2850
+ readonly kind: "Set";
2851
+ readonly itemType: {
2852
+ readonly kind: "Iri";
2853
+ };
2854
+ };
2855
+ };
2856
+ readonly targetSubjectsOf: {
2857
+ readonly kind: "Shacl";
2858
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
2859
+ readonly type: {
2860
+ readonly kind: "Set";
2861
+ readonly itemType: {
2862
+ readonly kind: "Iri";
2863
+ };
2864
+ };
2865
+ };
2866
+ readonly uniqueLang: {
2867
+ readonly kind: "Shacl";
2868
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
2869
+ readonly type: {
2870
+ readonly kind: "Option";
2871
+ readonly itemType: {
2872
+ readonly kind: "Boolean";
2873
+ };
2874
+ };
2875
+ };
2876
+ readonly xone: {
2877
+ readonly kind: "Shacl";
2878
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
2879
+ readonly type: {
2880
+ readonly kind: "Option";
2881
+ readonly itemType: {
2882
+ readonly kind: "List";
2883
+ readonly itemType: {
2884
+ readonly kind: "Identifier";
2885
+ };
2886
+ };
2887
+ };
2888
+ };
2889
+ };
2890
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyShape">];
2891
+ };
2892
+ };
2893
+ };
2894
+ readonly properties: {
2895
+ readonly and: {
2896
+ readonly kind: "Shacl";
2897
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
2898
+ readonly type: {
2899
+ readonly kind: "Option";
2900
+ readonly itemType: {
2901
+ readonly kind: "List";
2902
+ readonly itemType: {
2903
+ readonly kind: "Identifier";
2904
+ };
2905
+ };
2906
+ };
2907
+ };
2908
+ readonly classes: {
2909
+ readonly kind: "Shacl";
2910
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
2911
+ readonly type: {
2912
+ readonly kind: "Set";
2913
+ readonly itemType: {
2914
+ readonly kind: "Iri";
2915
+ };
2916
+ };
2917
+ };
2918
+ readonly comment: {
2919
+ readonly kind: "Shacl";
2920
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
2921
+ readonly type: {
2922
+ readonly kind: "Option";
2923
+ readonly itemType: {
2924
+ readonly kind: "String";
2925
+ };
2926
+ };
2927
+ };
2928
+ readonly datatype: {
2929
+ readonly kind: "Shacl";
2930
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
2931
+ readonly type: {
2932
+ readonly kind: "Option";
2933
+ readonly itemType: {
2934
+ readonly kind: "Iri";
2935
+ };
2936
+ };
2937
+ };
2938
+ readonly deactivated: {
2939
+ readonly kind: "Shacl";
2940
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
2941
+ readonly type: {
2942
+ readonly kind: "Option";
2943
+ readonly itemType: {
2944
+ readonly kind: "Boolean";
2945
+ };
2946
+ };
2947
+ };
2948
+ readonly flags: {
2949
+ readonly kind: "Shacl";
2950
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
2951
+ readonly type: {
2952
+ readonly kind: "Option";
2953
+ readonly itemType: {
2954
+ readonly kind: "String";
2955
+ };
2956
+ };
2957
+ };
2958
+ readonly hasValues: {
2959
+ readonly kind: "Shacl";
2960
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
2961
+ readonly type: {
2962
+ readonly kind: "Set";
2963
+ readonly itemType: {
2964
+ readonly kind: "Term";
2965
+ readonly types: readonly ["NamedNode", "Literal"];
2966
+ };
2967
+ };
2968
+ };
2969
+ readonly ignore: {
2970
+ readonly kind: "Shacl";
2971
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
2972
+ readonly type: {
2973
+ readonly kind: "DefaultValue";
2974
+ readonly itemType: {
2975
+ readonly kind: "Boolean";
2976
+ };
2977
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
2978
+ };
2979
+ };
2980
+ readonly in_: {
2981
+ readonly kind: "Shacl";
2982
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
2983
+ readonly type: {
2984
+ readonly kind: "Option";
2985
+ readonly itemType: {
2986
+ readonly kind: "List";
2987
+ readonly itemType: {
2988
+ readonly kind: "Term";
2989
+ readonly types: readonly ["NamedNode", "Literal"];
2990
+ };
2991
+ };
2992
+ };
2993
+ };
2994
+ readonly isDefinedBy: {
2995
+ readonly kind: "Shacl";
2996
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
2997
+ readonly type: {
2998
+ readonly kind: "Option";
2999
+ readonly itemType: {
3000
+ readonly kind: "Identifier";
3001
+ };
3002
+ };
3003
+ };
3004
+ readonly label: {
3005
+ readonly kind: "Shacl";
3006
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3007
+ readonly type: {
3008
+ readonly kind: "Option";
3009
+ readonly itemType: {
3010
+ readonly kind: "String";
3011
+ };
3012
+ };
3013
+ };
3014
+ readonly languageIn: {
3015
+ readonly kind: "Shacl";
3016
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
3017
+ readonly type: {
3018
+ readonly kind: "Option";
3019
+ readonly itemType: {
3020
+ readonly kind: "List";
3021
+ readonly itemType: {
3022
+ readonly kind: "String";
3023
+ };
3024
+ };
3025
+ };
3026
+ };
3027
+ readonly maxExclusive: {
3028
+ readonly kind: "Shacl";
3029
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
3030
+ readonly type: {
3031
+ readonly kind: "Option";
3032
+ readonly itemType: {
3033
+ readonly kind: "Literal";
3034
+ };
3035
+ };
3036
+ };
3037
+ readonly maxInclusive: {
3038
+ readonly kind: "Shacl";
3039
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
3040
+ readonly type: {
3041
+ readonly kind: "Option";
3042
+ readonly itemType: {
3043
+ readonly kind: "Literal";
3044
+ };
3045
+ };
3046
+ };
3047
+ readonly maxLength: {
3048
+ readonly kind: "Shacl";
3049
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
3050
+ readonly type: {
3051
+ readonly kind: "Option";
3052
+ readonly itemType: {
3053
+ readonly kind: "BigInt";
3054
+ };
3055
+ };
3056
+ };
3057
+ readonly message: {
3058
+ readonly kind: "Shacl";
3059
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
3060
+ readonly type: {
3061
+ readonly kind: "Option";
3062
+ readonly itemType: {
3063
+ readonly kind: "String";
3064
+ };
3065
+ };
3066
+ };
3067
+ readonly minExclusive: {
3068
+ readonly kind: "Shacl";
3069
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
3070
+ readonly type: {
3071
+ readonly kind: "Option";
3072
+ readonly itemType: {
3073
+ readonly kind: "Literal";
3074
+ };
3075
+ };
3076
+ };
3077
+ readonly minInclusive: {
3078
+ readonly kind: "Shacl";
3079
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
3080
+ readonly type: {
3081
+ readonly kind: "Option";
3082
+ readonly itemType: {
3083
+ readonly kind: "Literal";
3084
+ };
3085
+ };
3086
+ };
3087
+ readonly minLength: {
3088
+ readonly kind: "Shacl";
3089
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
3090
+ readonly type: {
3091
+ readonly kind: "Option";
3092
+ readonly itemType: {
3093
+ readonly kind: "BigInt";
3094
+ };
3095
+ };
3096
+ };
3097
+ readonly mutable: {
3098
+ readonly kind: "Shacl";
3099
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
3100
+ readonly type: {
3101
+ readonly kind: "Option";
3102
+ readonly itemType: {
3103
+ readonly kind: "Boolean";
3104
+ };
3105
+ };
3106
+ };
3107
+ readonly node: {
3108
+ readonly kind: "Shacl";
3109
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
3110
+ readonly type: {
3111
+ readonly kind: "Option";
3112
+ readonly itemType: {
3113
+ readonly kind: "Identifier";
3114
+ };
3115
+ };
3116
+ };
3117
+ readonly nodeKind: {
3118
+ readonly kind: "Shacl";
3119
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
3120
+ readonly type: {
3121
+ readonly kind: "Option";
3122
+ readonly itemType: {
3123
+ readonly kind: "Iri";
3124
+ readonly in: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">];
3125
+ };
3126
+ };
3127
+ };
3128
+ readonly not: {
3129
+ readonly kind: "Shacl";
3130
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
3131
+ readonly type: {
3132
+ readonly kind: "Set";
3133
+ readonly itemType: {
3134
+ readonly kind: "Identifier";
3135
+ };
3136
+ };
3137
+ };
3138
+ readonly or: {
3139
+ readonly kind: "Shacl";
3140
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
3141
+ readonly type: {
3142
+ readonly kind: "Option";
3143
+ readonly itemType: {
3144
+ readonly kind: "List";
3145
+ readonly itemType: {
3146
+ readonly kind: "Identifier";
3147
+ };
3148
+ };
3149
+ };
3150
+ };
3151
+ readonly pattern: {
3152
+ readonly kind: "Shacl";
3153
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
3154
+ readonly type: {
3155
+ readonly kind: "Option";
3156
+ readonly itemType: {
3157
+ readonly kind: "String";
3158
+ };
3159
+ };
3160
+ };
3161
+ readonly severity: {
3162
+ readonly kind: "Shacl";
3163
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
3164
+ readonly type: {
3165
+ kind: "Option";
3166
+ readonly itemType: {
3167
+ kind: "Iri";
3168
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
3169
+ };
3170
+ };
3171
+ };
3172
+ readonly shaclmateName: {
3173
+ readonly kind: "Shacl";
3174
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
3175
+ readonly type: {
3176
+ readonly kind: "Option";
3177
+ readonly itemType: {
3178
+ readonly kind: "String";
3179
+ };
3180
+ };
3181
+ };
3182
+ readonly targetClasses: {
3183
+ readonly kind: "Shacl";
3184
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
3185
+ readonly type: {
3186
+ readonly kind: "Set";
3187
+ readonly itemType: {
3188
+ readonly kind: "Iri";
3189
+ };
3190
+ };
3191
+ };
3192
+ readonly targetNodes: {
3193
+ readonly kind: "Shacl";
3194
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
3195
+ readonly type: {
3196
+ readonly kind: "Set";
3197
+ readonly itemType: {
3198
+ readonly kind: "Term";
3199
+ readonly types: readonly ["NamedNode", "Literal"];
3200
+ };
3201
+ };
3202
+ };
3203
+ readonly targetObjectsOf: {
3204
+ readonly kind: "Shacl";
3205
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
3206
+ readonly type: {
3207
+ readonly kind: "Set";
3208
+ readonly itemType: {
3209
+ readonly kind: "Iri";
3210
+ };
3211
+ };
3212
+ };
3213
+ readonly targetSubjectsOf: {
3214
+ readonly kind: "Shacl";
3215
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
3216
+ readonly type: {
3217
+ readonly kind: "Set";
3218
+ readonly itemType: {
3219
+ readonly kind: "Iri";
3220
+ };
3221
+ };
3222
+ };
3223
+ readonly xone: {
3224
+ readonly kind: "Shacl";
3225
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
3226
+ readonly type: {
3227
+ readonly kind: "Option";
3228
+ readonly itemType: {
3229
+ readonly kind: "List";
3230
+ readonly itemType: {
3231
+ readonly kind: "Identifier";
3232
+ };
3233
+ };
3234
+ };
3235
+ };
3236
+ };
3237
+ };
3238
+ const toRdfResource: $ToRdfResourceFunction<Shape>;
3239
+ const toRdfResourceValues: (value: Shape, _options: {
3240
+ graph?: Exclude<Quad_Graph, Variable>;
3241
+ ignoreRdfType?: boolean;
3242
+ propertyPath: $PropertyPath;
3243
+ resource: Resource;
3244
+ resourceSet: ResourceSet;
3245
+ }) => (BlankNode | NamedNode)[];
3246
+ }
3247
+ export type $Object = NodeShape | Ontology | PropertyGroup | PropertyShape | ValidationReport | ValidationResult;
3248
+ export declare namespace $Object {
3249
+ const $toString: (value: $Object) => string;
3250
+ const fromRdfResource: $FromRdfResourceFunction<$Object>;
3251
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<$Object, typeof $Object.schema>;
3252
+ type Identifier = BlankNode | NamedNode;
3253
+ namespace Identifier {
3254
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
3255
+ const stringify: typeof NTriplesTerm.stringify;
3256
+ }
3257
+ const schema: {
3258
+ readonly kind: "ObjectUnion";
3259
+ readonly members: {
3260
+ readonly NodeShape: {
3261
+ readonly discriminantValues: readonly ["NodeShape"];
3262
+ readonly type: {
3263
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#NodeShape">;
3264
+ readonly properties: {
3265
+ readonly $identifier: {
3266
+ readonly kind: "Identifier";
3267
+ readonly type: {
3268
+ readonly kind: "Identifier";
3269
+ };
3270
+ };
3271
+ readonly and: {
3272
+ readonly kind: "Shacl";
3273
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
3274
+ readonly type: {
3275
+ readonly kind: "Option";
3276
+ readonly itemType: {
3277
+ readonly kind: "List";
3278
+ readonly itemType: {
3279
+ readonly kind: "Identifier";
3280
+ };
3281
+ };
3282
+ };
3283
+ };
3284
+ readonly classes: {
3285
+ readonly kind: "Shacl";
3286
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
3287
+ readonly type: {
3288
+ readonly kind: "Set";
3289
+ readonly itemType: {
3290
+ readonly kind: "Iri";
3291
+ };
3292
+ };
3293
+ };
3294
+ readonly closed: {
3295
+ readonly kind: "Shacl";
3296
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#closed">;
3297
+ readonly type: {
3298
+ readonly kind: "Option";
3299
+ readonly itemType: {
3300
+ readonly kind: "Boolean";
3301
+ };
3302
+ };
3303
+ };
3304
+ readonly comment: {
3305
+ readonly kind: "Shacl";
3306
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3307
+ readonly type: {
3308
+ readonly kind: "Option";
3309
+ readonly itemType: {
3310
+ readonly kind: "String";
3311
+ };
3312
+ };
3313
+ };
3314
+ readonly datatype: {
3315
+ readonly kind: "Shacl";
3316
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
3317
+ readonly type: {
3318
+ readonly kind: "Option";
3319
+ readonly itemType: {
3320
+ readonly kind: "Iri";
3321
+ };
3322
+ };
3323
+ };
3324
+ readonly deactivated: {
3325
+ readonly kind: "Shacl";
3326
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
3327
+ readonly type: {
3328
+ readonly kind: "Option";
3329
+ readonly itemType: {
3330
+ readonly kind: "Boolean";
3331
+ };
3332
+ };
3333
+ };
3334
+ readonly discriminantValue: {
3335
+ readonly kind: "Shacl";
3336
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
3337
+ readonly type: {
3338
+ readonly kind: "Option";
3339
+ readonly itemType: {
3340
+ readonly kind: "String";
3341
+ };
3342
+ };
3343
+ };
3344
+ readonly extern: {
3345
+ readonly kind: "Shacl";
3346
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#extern">;
3347
+ readonly type: {
3348
+ readonly kind: "Option";
3349
+ readonly itemType: {
3350
+ readonly kind: "Boolean";
3351
+ };
3352
+ };
3353
+ };
3354
+ readonly flags: {
3355
+ readonly kind: "Shacl";
3356
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
3357
+ readonly type: {
3358
+ readonly kind: "Option";
3359
+ readonly itemType: {
3360
+ readonly kind: "String";
3361
+ };
3362
+ };
3363
+ };
3364
+ readonly fromRdfType: {
3365
+ readonly kind: "Shacl";
3366
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
3367
+ readonly type: {
3368
+ readonly kind: "Option";
3369
+ readonly itemType: {
3370
+ readonly kind: "Iri";
3371
+ };
3372
+ };
3373
+ };
3374
+ readonly hasValues: {
3375
+ readonly kind: "Shacl";
3376
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
3377
+ readonly type: {
3378
+ readonly kind: "Set";
3379
+ readonly itemType: {
3380
+ readonly kind: "Term";
3381
+ readonly types: readonly ["NamedNode", "Literal"];
3382
+ };
3383
+ };
3384
+ };
3385
+ readonly ignore: {
3386
+ readonly kind: "Shacl";
3387
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
3388
+ readonly type: {
3389
+ readonly kind: "DefaultValue";
3390
+ readonly itemType: {
3391
+ readonly kind: "Boolean";
3392
+ };
3393
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
3394
+ };
3395
+ };
3396
+ readonly ignoredProperties: {
3397
+ readonly kind: "Shacl";
3398
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
3399
+ readonly type: {
3400
+ readonly kind: "Option";
3401
+ readonly itemType: {
3402
+ readonly kind: "List";
3403
+ readonly itemType: {
3404
+ readonly kind: "Iri";
3405
+ };
3406
+ };
3407
+ };
3408
+ };
3409
+ readonly in_: {
3410
+ readonly kind: "Shacl";
3411
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
3412
+ readonly type: {
3413
+ readonly kind: "Option";
3414
+ readonly itemType: {
3415
+ readonly kind: "List";
3416
+ readonly itemType: {
3417
+ readonly kind: "Term";
3418
+ readonly types: readonly ["NamedNode", "Literal"];
3419
+ };
3420
+ };
3421
+ };
3422
+ };
3423
+ readonly isDefinedBy: {
3424
+ readonly kind: "Shacl";
3425
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
3426
+ readonly type: {
3427
+ readonly kind: "Option";
3428
+ readonly itemType: {
3429
+ readonly kind: "Identifier";
3430
+ };
3431
+ };
3432
+ };
3433
+ readonly label: {
3434
+ readonly kind: "Shacl";
3435
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3436
+ readonly type: {
3437
+ readonly kind: "Option";
3438
+ readonly itemType: {
3439
+ readonly kind: "String";
3440
+ };
3441
+ };
3442
+ };
3443
+ readonly languageIn: {
3444
+ readonly kind: "Shacl";
3445
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
3446
+ readonly type: {
3447
+ readonly kind: "Option";
3448
+ readonly itemType: {
3449
+ readonly kind: "List";
3450
+ readonly itemType: {
3451
+ readonly kind: "String";
3452
+ };
3453
+ };
3454
+ };
3455
+ };
3456
+ readonly maxExclusive: {
3457
+ readonly kind: "Shacl";
3458
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
3459
+ readonly type: {
3460
+ readonly kind: "Option";
3461
+ readonly itemType: {
3462
+ readonly kind: "Literal";
3463
+ };
3464
+ };
3465
+ };
3466
+ readonly maxInclusive: {
3467
+ readonly kind: "Shacl";
3468
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
3469
+ readonly type: {
3470
+ readonly kind: "Option";
3471
+ readonly itemType: {
3472
+ readonly kind: "Literal";
3473
+ };
3474
+ };
3475
+ };
3476
+ readonly maxLength: {
3477
+ readonly kind: "Shacl";
3478
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
3479
+ readonly type: {
3480
+ readonly kind: "Option";
3481
+ readonly itemType: {
3482
+ readonly kind: "BigInt";
3483
+ };
3484
+ };
3485
+ };
3486
+ readonly message: {
3487
+ readonly kind: "Shacl";
3488
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
3489
+ readonly type: {
3490
+ readonly kind: "Option";
3491
+ readonly itemType: {
3492
+ readonly kind: "String";
3493
+ };
3494
+ };
3495
+ };
3496
+ readonly minExclusive: {
3497
+ readonly kind: "Shacl";
3498
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
3499
+ readonly type: {
3500
+ readonly kind: "Option";
3501
+ readonly itemType: {
3502
+ readonly kind: "Literal";
3503
+ };
3504
+ };
3505
+ };
3506
+ readonly minInclusive: {
3507
+ readonly kind: "Shacl";
3508
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
3509
+ readonly type: {
3510
+ readonly kind: "Option";
3511
+ readonly itemType: {
3512
+ readonly kind: "Literal";
3513
+ };
3514
+ };
3515
+ };
3516
+ readonly minLength: {
3517
+ readonly kind: "Shacl";
3518
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
3519
+ readonly type: {
3520
+ readonly kind: "Option";
3521
+ readonly itemType: {
3522
+ readonly kind: "BigInt";
3523
+ };
3524
+ };
3525
+ };
3526
+ readonly mutable: {
3527
+ readonly kind: "Shacl";
3528
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
3529
+ readonly type: {
3530
+ readonly kind: "Option";
3531
+ readonly itemType: {
3532
+ readonly kind: "Boolean";
3533
+ };
3534
+ };
3535
+ };
3536
+ readonly node: {
3537
+ readonly kind: "Shacl";
3538
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
3539
+ readonly type: {
3540
+ readonly kind: "Option";
3541
+ readonly itemType: {
3542
+ readonly kind: "Identifier";
3543
+ };
3544
+ };
3545
+ };
3546
+ readonly nodeKind: {
3547
+ readonly kind: "Shacl";
3548
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
3549
+ readonly type: {
3550
+ readonly kind: "Option";
3551
+ readonly itemType: {
3552
+ readonly kind: "Iri";
3553
+ readonly in: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">];
3554
+ };
3555
+ };
3556
+ };
3557
+ readonly not: {
3558
+ readonly kind: "Shacl";
3559
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
3560
+ readonly type: {
3561
+ readonly kind: "Set";
3562
+ readonly itemType: {
3563
+ readonly kind: "Identifier";
3564
+ };
3565
+ };
3566
+ };
3567
+ readonly or: {
3568
+ readonly kind: "Shacl";
3569
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
3570
+ readonly type: {
3571
+ readonly kind: "Option";
3572
+ readonly itemType: {
3573
+ readonly kind: "List";
3574
+ readonly itemType: {
3575
+ readonly kind: "Identifier";
3576
+ };
3577
+ };
3578
+ };
3579
+ };
3580
+ readonly pattern: {
3581
+ readonly kind: "Shacl";
3582
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
3583
+ readonly type: {
3584
+ readonly kind: "Option";
3585
+ readonly itemType: {
3586
+ readonly kind: "String";
3587
+ };
3588
+ };
3589
+ };
3590
+ readonly properties: {
3591
+ readonly kind: "Shacl";
3592
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#property">;
3593
+ readonly type: {
3594
+ readonly kind: "Set";
3595
+ readonly itemType: {
3596
+ readonly kind: "Identifier";
3597
+ };
3598
+ };
3599
+ };
3600
+ readonly rdfType: {
3601
+ readonly kind: "Shacl";
3602
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
3603
+ readonly type: {
3604
+ readonly kind: "Option";
3605
+ readonly itemType: {
3606
+ readonly kind: "Iri";
3607
+ };
3608
+ };
3609
+ };
3610
+ readonly severity: {
3611
+ readonly kind: "Shacl";
3612
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
3613
+ readonly type: {
3614
+ kind: "Option";
3615
+ readonly itemType: {
3616
+ kind: "Iri";
3617
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
3618
+ };
3619
+ };
3620
+ };
3621
+ readonly shaclmateName: {
3622
+ readonly kind: "Shacl";
3623
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
3624
+ readonly type: {
3625
+ readonly kind: "Option";
3626
+ readonly itemType: {
3627
+ readonly kind: "String";
3628
+ };
3629
+ };
3630
+ };
3631
+ readonly subClassOf: {
3632
+ readonly kind: "Shacl";
3633
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
3634
+ readonly type: {
3635
+ readonly kind: "Set";
3636
+ readonly itemType: {
3637
+ readonly kind: "Iri";
3638
+ };
3639
+ };
3640
+ };
3641
+ readonly targetClasses: {
3642
+ readonly kind: "Shacl";
3643
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
3644
+ readonly type: {
3645
+ readonly kind: "Set";
3646
+ readonly itemType: {
3647
+ readonly kind: "Iri";
3648
+ };
3649
+ };
3650
+ };
3651
+ readonly targetNodes: {
3652
+ readonly kind: "Shacl";
3653
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
3654
+ readonly type: {
3655
+ readonly kind: "Set";
3656
+ readonly itemType: {
3657
+ readonly kind: "Term";
3658
+ readonly types: readonly ["NamedNode", "Literal"];
3659
+ };
3660
+ };
3661
+ };
3662
+ readonly targetObjectsOf: {
3663
+ readonly kind: "Shacl";
3664
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
3665
+ readonly type: {
3666
+ readonly kind: "Set";
3667
+ readonly itemType: {
3668
+ readonly kind: "Iri";
3669
+ };
3670
+ };
3671
+ };
3672
+ readonly targetSubjectsOf: {
3673
+ readonly kind: "Shacl";
3674
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
3675
+ readonly type: {
3676
+ readonly kind: "Set";
3677
+ readonly itemType: {
3678
+ readonly kind: "Iri";
3679
+ };
3680
+ };
3681
+ };
3682
+ readonly toRdfTypes: {
3683
+ readonly kind: "Shacl";
3684
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
3685
+ readonly type: {
3686
+ readonly kind: "Set";
3687
+ readonly itemType: {
3688
+ readonly kind: "Iri";
3689
+ };
3690
+ };
3691
+ };
3692
+ readonly tsImports: {
3693
+ readonly kind: "Shacl";
3694
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
3695
+ readonly type: {
3696
+ readonly kind: "Set";
3697
+ readonly itemType: {
3698
+ readonly kind: "String";
3699
+ };
3700
+ };
3701
+ };
3702
+ readonly types: {
3703
+ readonly kind: "Shacl";
3704
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
3705
+ readonly type: {
3706
+ readonly kind: "Set";
3707
+ readonly itemType: {
3708
+ readonly kind: "Iri";
3709
+ };
3710
+ };
3711
+ };
3712
+ readonly xone: {
3713
+ readonly kind: "Shacl";
3714
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
3715
+ readonly type: {
3716
+ readonly kind: "Option";
3717
+ readonly itemType: {
3718
+ readonly kind: "List";
3719
+ readonly itemType: {
3720
+ readonly kind: "Identifier";
3721
+ };
3722
+ };
3723
+ };
3724
+ };
3725
+ };
3726
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#NodeShape">];
3727
+ };
3728
+ };
3729
+ readonly Ontology: {
3730
+ readonly discriminantValues: readonly ["Ontology"];
3731
+ readonly type: {
3732
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2002/07/owl#Ontology">;
3733
+ readonly properties: {
3734
+ readonly $identifier: {
3735
+ readonly kind: "Identifier";
3736
+ readonly type: {
3737
+ readonly kind: "Identifier";
3738
+ };
3739
+ };
3740
+ readonly comment: {
3741
+ readonly kind: "Shacl";
3742
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3743
+ readonly type: {
3744
+ readonly kind: "Option";
3745
+ readonly itemType: {
3746
+ readonly kind: "String";
3747
+ };
3748
+ };
3749
+ };
3750
+ readonly label: {
3751
+ readonly kind: "Shacl";
3752
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3753
+ readonly type: {
3754
+ readonly kind: "Option";
3755
+ readonly itemType: {
3756
+ readonly kind: "String";
3757
+ };
3758
+ };
3759
+ };
3760
+ };
3761
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2002/07/owl#Ontology">];
3762
+ };
3763
+ };
3764
+ readonly PropertyGroup: {
3765
+ readonly discriminantValues: readonly ["PropertyGroup"];
3766
+ readonly type: {
3767
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyGroup">;
3768
+ readonly properties: {
3769
+ readonly $identifier: {
3770
+ readonly kind: "Identifier";
3771
+ readonly type: {
3772
+ readonly kind: "Identifier";
3773
+ };
3774
+ };
3775
+ readonly comment: {
3776
+ readonly kind: "Shacl";
3777
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3778
+ readonly type: {
3779
+ readonly kind: "Option";
3780
+ readonly itemType: {
3781
+ readonly kind: "String";
3782
+ };
3783
+ };
3784
+ };
3785
+ readonly label: {
3786
+ readonly kind: "Shacl";
3787
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3788
+ readonly type: {
3789
+ readonly kind: "Option";
3790
+ readonly itemType: {
3791
+ readonly kind: "String";
3792
+ };
3793
+ };
3794
+ };
3795
+ };
3796
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyGroup">];
3797
+ };
3798
+ };
3799
+ readonly PropertyShape: {
3800
+ readonly discriminantValues: readonly ["PropertyShape"];
3801
+ readonly type: {
3802
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyShape">;
3803
+ readonly properties: {
3804
+ readonly $identifier: {
3805
+ readonly kind: "Identifier";
3806
+ readonly type: {
3807
+ readonly kind: "Identifier";
3808
+ };
3809
+ };
3810
+ readonly and: {
3811
+ readonly kind: "Shacl";
3812
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
3813
+ readonly type: {
3814
+ readonly kind: "Option";
3815
+ readonly itemType: {
3816
+ readonly kind: "List";
3817
+ readonly itemType: {
3818
+ readonly kind: "Identifier";
3819
+ };
3820
+ };
3821
+ };
3822
+ };
3823
+ readonly classes: {
3824
+ readonly kind: "Shacl";
3825
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
3826
+ readonly type: {
3827
+ readonly kind: "Set";
3828
+ readonly itemType: {
3829
+ readonly kind: "Iri";
3830
+ };
3831
+ };
3832
+ };
3833
+ readonly comment: {
3834
+ readonly kind: "Shacl";
3835
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3836
+ readonly type: {
3837
+ readonly kind: "Option";
3838
+ readonly itemType: {
3839
+ readonly kind: "String";
3840
+ };
3841
+ };
3842
+ };
3843
+ readonly datatype: {
3844
+ readonly kind: "Shacl";
3845
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
3846
+ readonly type: {
3847
+ readonly kind: "Option";
3848
+ readonly itemType: {
3849
+ readonly kind: "Iri";
3850
+ };
3851
+ };
3852
+ };
3853
+ readonly deactivated: {
3854
+ readonly kind: "Shacl";
3855
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
3856
+ readonly type: {
3857
+ readonly kind: "Option";
3858
+ readonly itemType: {
3859
+ readonly kind: "Boolean";
3860
+ };
3861
+ };
3862
+ };
3863
+ readonly defaultValue: {
3864
+ readonly kind: "Shacl";
3865
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
3866
+ readonly type: {
3867
+ readonly kind: "Option";
3868
+ readonly itemType: {
3869
+ readonly kind: "Term";
3870
+ readonly types: readonly ["NamedNode", "Literal"];
3871
+ };
3872
+ };
3873
+ };
3874
+ readonly description: {
3875
+ readonly kind: "Shacl";
3876
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#description">;
3877
+ readonly type: {
3878
+ readonly kind: "Option";
3879
+ readonly itemType: {
3880
+ readonly kind: "String";
3881
+ };
3882
+ };
3883
+ };
3884
+ readonly disjoint: {
3885
+ readonly kind: "Shacl";
3886
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#disjoint">;
3887
+ readonly type: {
3888
+ readonly kind: "Set";
3889
+ readonly itemType: {
3890
+ readonly kind: "Iri";
3891
+ };
3892
+ };
3893
+ };
3894
+ readonly display: {
3895
+ readonly kind: "Shacl";
3896
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#display">;
3897
+ readonly type: {
3898
+ readonly kind: "DefaultValue";
3899
+ readonly itemType: {
3900
+ readonly kind: "Boolean";
3901
+ };
3902
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
3903
+ };
3904
+ };
3905
+ readonly equals: {
3906
+ readonly kind: "Shacl";
3907
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#equals">;
3908
+ readonly type: {
3909
+ readonly kind: "Set";
3910
+ readonly itemType: {
3911
+ readonly kind: "Iri";
3912
+ };
3913
+ };
3914
+ };
3915
+ readonly flags: {
3916
+ readonly kind: "Shacl";
3917
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
3918
+ readonly type: {
3919
+ readonly kind: "Option";
3920
+ readonly itemType: {
3921
+ readonly kind: "String";
3922
+ };
3923
+ };
3924
+ };
3925
+ readonly groups: {
3926
+ readonly kind: "Shacl";
3927
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#group">;
3928
+ readonly type: {
3929
+ readonly kind: "Set";
3930
+ readonly itemType: {
3931
+ readonly kind: "Identifier";
3932
+ };
3933
+ };
3934
+ };
3935
+ readonly hasValues: {
3936
+ readonly kind: "Shacl";
3937
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
3938
+ readonly type: {
3939
+ readonly kind: "Set";
3940
+ readonly itemType: {
3941
+ readonly kind: "Term";
3942
+ readonly types: readonly ["NamedNode", "Literal"];
3943
+ };
3944
+ };
3945
+ };
3946
+ readonly ignore: {
3947
+ readonly kind: "Shacl";
3948
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
3949
+ readonly type: {
3950
+ readonly kind: "DefaultValue";
3951
+ readonly itemType: {
3952
+ readonly kind: "Boolean";
3953
+ };
3954
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
3955
+ };
3956
+ };
3957
+ readonly in_: {
3958
+ readonly kind: "Shacl";
3959
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
3960
+ readonly type: {
3961
+ readonly kind: "Option";
3962
+ readonly itemType: {
3963
+ readonly kind: "List";
3964
+ readonly itemType: {
3965
+ readonly kind: "Term";
3966
+ readonly types: readonly ["NamedNode", "Literal"];
3967
+ };
3968
+ };
3969
+ };
3970
+ };
3971
+ readonly isDefinedBy: {
3972
+ readonly kind: "Shacl";
3973
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
3974
+ readonly type: {
3975
+ readonly kind: "Option";
3976
+ readonly itemType: {
3977
+ readonly kind: "Identifier";
3978
+ };
3979
+ };
3980
+ };
3981
+ readonly label: {
3982
+ readonly kind: "Shacl";
3983
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3984
+ readonly type: {
3985
+ readonly kind: "Option";
3986
+ readonly itemType: {
3987
+ readonly kind: "String";
3988
+ };
3989
+ };
3990
+ };
3991
+ readonly languageIn: {
3992
+ readonly kind: "Shacl";
3993
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
3994
+ readonly type: {
3995
+ readonly kind: "Option";
3996
+ readonly itemType: {
3997
+ readonly kind: "List";
3998
+ readonly itemType: {
3999
+ readonly kind: "String";
4000
+ };
4001
+ };
4002
+ };
4003
+ };
4004
+ readonly lessThan: {
4005
+ readonly kind: "Shacl";
4006
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThan">;
4007
+ readonly type: {
4008
+ readonly kind: "Set";
4009
+ readonly itemType: {
4010
+ readonly kind: "Iri";
4011
+ };
4012
+ };
4013
+ };
4014
+ readonly lessThanOrEquals: {
4015
+ readonly kind: "Shacl";
4016
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThanOrEquals">;
4017
+ readonly type: {
4018
+ readonly kind: "Set";
4019
+ readonly itemType: {
4020
+ readonly kind: "Iri";
4021
+ };
4022
+ };
4023
+ };
4024
+ readonly maxCount: {
4025
+ readonly kind: "Shacl";
4026
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
4027
+ readonly type: {
4028
+ readonly kind: "Option";
4029
+ readonly itemType: {
4030
+ readonly kind: "BigInt";
4031
+ };
4032
+ };
4033
+ };
4034
+ readonly maxExclusive: {
4035
+ readonly kind: "Shacl";
4036
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
4037
+ readonly type: {
4038
+ readonly kind: "Option";
4039
+ readonly itemType: {
4040
+ readonly kind: "Literal";
4041
+ };
4042
+ };
4043
+ };
4044
+ readonly maxInclusive: {
4045
+ readonly kind: "Shacl";
4046
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
4047
+ readonly type: {
4048
+ readonly kind: "Option";
4049
+ readonly itemType: {
4050
+ readonly kind: "Literal";
4051
+ };
4052
+ };
4053
+ };
4054
+ readonly maxLength: {
4055
+ readonly kind: "Shacl";
4056
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
4057
+ readonly type: {
4058
+ readonly kind: "Option";
4059
+ readonly itemType: {
4060
+ readonly kind: "BigInt";
4061
+ };
4062
+ };
4063
+ };
4064
+ readonly message: {
4065
+ readonly kind: "Shacl";
4066
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
4067
+ readonly type: {
4068
+ readonly kind: "Option";
4069
+ readonly itemType: {
4070
+ readonly kind: "String";
4071
+ };
4072
+ };
4073
+ };
4074
+ readonly minCount: {
4075
+ readonly kind: "Shacl";
4076
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
4077
+ readonly type: {
4078
+ readonly kind: "Option";
4079
+ readonly itemType: {
4080
+ readonly kind: "BigInt";
4081
+ };
4082
+ };
4083
+ };
4084
+ readonly minExclusive: {
4085
+ readonly kind: "Shacl";
4086
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
4087
+ readonly type: {
4088
+ readonly kind: "Option";
4089
+ readonly itemType: {
4090
+ readonly kind: "Literal";
4091
+ };
4092
+ };
4093
+ };
4094
+ readonly minInclusive: {
4095
+ readonly kind: "Shacl";
4096
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
4097
+ readonly type: {
4098
+ readonly kind: "Option";
4099
+ readonly itemType: {
4100
+ readonly kind: "Literal";
4101
+ };
4102
+ };
4103
+ };
4104
+ readonly minLength: {
4105
+ readonly kind: "Shacl";
4106
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
4107
+ readonly type: {
4108
+ readonly kind: "Option";
4109
+ readonly itemType: {
4110
+ readonly kind: "BigInt";
4111
+ };
4112
+ };
4113
+ };
4114
+ readonly mutable: {
4115
+ readonly kind: "Shacl";
4116
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
4117
+ readonly type: {
4118
+ readonly kind: "Option";
4119
+ readonly itemType: {
4120
+ readonly kind: "Boolean";
4121
+ };
4122
+ };
4123
+ };
4124
+ readonly name: {
4125
+ readonly kind: "Shacl";
4126
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#name">;
4127
+ readonly type: {
4128
+ readonly kind: "Option";
4129
+ readonly itemType: {
4130
+ readonly kind: "String";
4131
+ };
4132
+ };
4133
+ };
4134
+ readonly node: {
4135
+ readonly kind: "Shacl";
4136
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
4137
+ readonly type: {
4138
+ readonly kind: "Option";
4139
+ readonly itemType: {
4140
+ readonly kind: "Identifier";
4141
+ };
4142
+ };
4143
+ };
4144
+ readonly nodeKind: {
4145
+ readonly kind: "Shacl";
4146
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
4147
+ readonly type: {
4148
+ readonly kind: "Option";
4149
+ readonly itemType: {
4150
+ readonly kind: "Iri";
4151
+ readonly in: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral">, import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">];
4152
+ };
4153
+ };
4154
+ };
4155
+ readonly not: {
4156
+ readonly kind: "Shacl";
4157
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
4158
+ readonly type: {
4159
+ readonly kind: "Set";
4160
+ readonly itemType: {
4161
+ readonly kind: "Identifier";
4162
+ };
4163
+ };
4164
+ };
4165
+ readonly or: {
4166
+ readonly kind: "Shacl";
4167
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
4168
+ readonly type: {
4169
+ readonly kind: "Option";
4170
+ readonly itemType: {
4171
+ readonly kind: "List";
4172
+ readonly itemType: {
4173
+ readonly kind: "Identifier";
4174
+ };
4175
+ };
4176
+ };
4177
+ };
4178
+ readonly order: {
4179
+ readonly kind: "Shacl";
4180
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#order">;
4181
+ readonly type: {
4182
+ readonly kind: "Option";
4183
+ readonly itemType: {
4184
+ readonly kind: "Float";
4185
+ };
4186
+ };
4187
+ };
4188
+ readonly path: {
4189
+ readonly kind: "Shacl";
4190
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
4191
+ readonly type: object;
4192
+ };
4193
+ readonly pattern: {
4194
+ readonly kind: "Shacl";
4195
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
4196
+ readonly type: {
4197
+ readonly kind: "Option";
4198
+ readonly itemType: {
4199
+ readonly kind: "String";
4200
+ };
4201
+ };
4202
+ };
4203
+ readonly qualifiedMaxCount: {
4204
+ readonly kind: "Shacl";
4205
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMaxCount">;
4206
+ readonly type: {
4207
+ readonly kind: "Option";
4208
+ readonly itemType: {
4209
+ readonly kind: "BigInt";
4210
+ };
4211
+ };
4212
+ };
4213
+ readonly qualifiedMinCount: {
4214
+ readonly kind: "Shacl";
4215
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMinCount">;
4216
+ readonly type: {
4217
+ readonly kind: "Option";
4218
+ readonly itemType: {
4219
+ readonly kind: "BigInt";
4220
+ };
4221
+ };
4222
+ };
4223
+ readonly qualifiedValueShape: {
4224
+ readonly kind: "Shacl";
4225
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShape">;
4226
+ readonly type: {
4227
+ readonly kind: "Option";
4228
+ readonly itemType: {
4229
+ readonly kind: "Identifier";
4230
+ };
4231
+ };
4232
+ };
4233
+ readonly qualifiedValueShapesDisjoint: {
4234
+ readonly kind: "Shacl";
4235
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint">;
4236
+ readonly type: {
4237
+ readonly kind: "Option";
4238
+ readonly itemType: {
4239
+ readonly kind: "Boolean";
4240
+ };
4241
+ };
4242
+ };
4243
+ readonly resolve: {
4244
+ readonly kind: "Shacl";
4245
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
4246
+ readonly type: {
4247
+ readonly kind: "Option";
4248
+ readonly itemType: {
4249
+ readonly kind: "Identifier";
4250
+ };
4251
+ };
4252
+ };
4253
+ readonly severity: {
4254
+ readonly kind: "Shacl";
4255
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
4256
+ readonly type: {
4257
+ kind: "Option";
4258
+ readonly itemType: {
4259
+ kind: "Iri";
4260
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
4261
+ };
4262
+ };
4263
+ };
4264
+ readonly shaclmateName: {
4265
+ readonly kind: "Shacl";
4266
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
4267
+ readonly type: {
4268
+ readonly kind: "Option";
4269
+ readonly itemType: {
4270
+ readonly kind: "String";
4271
+ };
4272
+ };
4273
+ };
4274
+ readonly targetClasses: {
4275
+ readonly kind: "Shacl";
4276
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
4277
+ readonly type: {
4278
+ readonly kind: "Set";
4279
+ readonly itemType: {
4280
+ readonly kind: "Iri";
4281
+ };
4282
+ };
4283
+ };
4284
+ readonly targetNodes: {
4285
+ readonly kind: "Shacl";
4286
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
4287
+ readonly type: {
4288
+ readonly kind: "Set";
4289
+ readonly itemType: {
4290
+ readonly kind: "Term";
4291
+ readonly types: readonly ["NamedNode", "Literal"];
4292
+ };
4293
+ };
4294
+ };
4295
+ readonly targetObjectsOf: {
4296
+ readonly kind: "Shacl";
4297
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
4298
+ readonly type: {
4299
+ readonly kind: "Set";
4300
+ readonly itemType: {
4301
+ readonly kind: "Iri";
4302
+ };
4303
+ };
4304
+ };
4305
+ readonly targetSubjectsOf: {
4306
+ readonly kind: "Shacl";
4307
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
4308
+ readonly type: {
4309
+ readonly kind: "Set";
4310
+ readonly itemType: {
4311
+ readonly kind: "Iri";
4312
+ };
4313
+ };
4314
+ };
4315
+ readonly uniqueLang: {
4316
+ readonly kind: "Shacl";
4317
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
4318
+ readonly type: {
4319
+ readonly kind: "Option";
4320
+ readonly itemType: {
4321
+ readonly kind: "Boolean";
4322
+ };
4323
+ };
4324
+ };
4325
+ readonly xone: {
4326
+ readonly kind: "Shacl";
4327
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
4328
+ readonly type: {
4329
+ readonly kind: "Option";
4330
+ readonly itemType: {
4331
+ readonly kind: "List";
4332
+ readonly itemType: {
4333
+ readonly kind: "Identifier";
4334
+ };
4335
+ };
4336
+ };
4337
+ };
4338
+ };
4339
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyShape">];
4340
+ };
4341
+ };
4342
+ readonly ValidationReport: {
4343
+ readonly discriminantValues: readonly ["ValidationReport"];
4344
+ readonly type: {
4345
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationReport">;
4346
+ readonly properties: {
4347
+ readonly $identifier: {
4348
+ readonly kind: "Identifier";
4349
+ readonly type: {
4350
+ readonly kind: "Identifier";
4351
+ };
4352
+ };
4353
+ readonly conforms: {
4354
+ readonly kind: "Shacl";
4355
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#conforms">;
4356
+ readonly type: {
4357
+ readonly kind: "Boolean";
4358
+ };
4359
+ };
4360
+ readonly results: {
4361
+ readonly kind: "Shacl";
4362
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#result">;
4363
+ readonly type: {
4364
+ kind: "Set";
4365
+ readonly itemType: {
4366
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationResult">;
4367
+ readonly properties: {
4368
+ readonly $identifier: {
4369
+ readonly kind: "Identifier";
4370
+ readonly type: {
4371
+ readonly kind: "Identifier";
4372
+ };
4373
+ };
4374
+ readonly details: {
4375
+ readonly kind: "Shacl";
4376
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#detail">;
4377
+ readonly type: {
4378
+ readonly kind: "Set";
4379
+ readonly itemType: {
4380
+ readonly kind: "Term";
4381
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
4382
+ };
4383
+ };
4384
+ };
4385
+ readonly focusNode: {
4386
+ readonly kind: "Shacl";
4387
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#focusNode">;
4388
+ readonly type: {
4389
+ readonly kind: "Term";
4390
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
4391
+ };
4392
+ };
4393
+ readonly message: {
4394
+ readonly kind: "Shacl";
4395
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultMessage">;
4396
+ readonly type: {
4397
+ readonly kind: "Option";
4398
+ readonly itemType: {
4399
+ readonly kind: "String";
4400
+ };
4401
+ };
4402
+ };
4403
+ readonly path: {
4404
+ readonly kind: "Shacl";
4405
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultPath">;
4406
+ readonly type: {
4407
+ kind: "Option";
4408
+ readonly itemType: object;
4409
+ };
4410
+ };
4411
+ readonly severity: {
4412
+ readonly kind: "Shacl";
4413
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultSeverity">;
4414
+ readonly type: {
4415
+ kind: "Iri";
4416
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
4417
+ };
4418
+ };
4419
+ readonly sourceConstraintComponent: {
4420
+ readonly kind: "Shacl";
4421
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#sourceConstraintComponent">;
4422
+ readonly type: {
4423
+ readonly kind: "Iri";
4424
+ };
4425
+ };
4426
+ readonly sourceShape: {
4427
+ readonly kind: "Shacl";
4428
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#sourceShape">;
4429
+ readonly type: {
4430
+ readonly kind: "Option";
4431
+ readonly itemType: {
4432
+ readonly kind: "Identifier";
4433
+ };
4434
+ };
4435
+ };
4436
+ readonly value: {
4437
+ readonly kind: "Shacl";
4438
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#value">;
4439
+ readonly type: {
4440
+ readonly kind: "Option";
4441
+ readonly itemType: {
4442
+ readonly kind: "Term";
4443
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
4444
+ };
4445
+ };
4446
+ };
4447
+ };
4448
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationResult">];
4449
+ };
4450
+ };
4451
+ };
4452
+ readonly shapesGraphWellFormed: {
4453
+ readonly kind: "Shacl";
4454
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#shapesGraphWellFormed">;
4455
+ readonly type: {
4456
+ readonly kind: "Option";
4457
+ readonly itemType: {
4458
+ readonly kind: "Boolean";
4459
+ };
4460
+ };
4461
+ };
4462
+ };
4463
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationReport">];
4464
+ };
4465
+ };
4466
+ readonly ValidationResult: {
4467
+ readonly discriminantValues: readonly ["ValidationResult"];
4468
+ readonly type: {
4469
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationResult">;
4470
+ readonly properties: {
4471
+ readonly $identifier: {
4472
+ readonly kind: "Identifier";
4473
+ readonly type: {
4474
+ readonly kind: "Identifier";
4475
+ };
4476
+ };
4477
+ readonly details: {
4478
+ readonly kind: "Shacl";
4479
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#detail">;
4480
+ readonly type: {
4481
+ readonly kind: "Set";
4482
+ readonly itemType: {
4483
+ readonly kind: "Term";
4484
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
4485
+ };
4486
+ };
4487
+ };
4488
+ readonly focusNode: {
4489
+ readonly kind: "Shacl";
4490
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#focusNode">;
4491
+ readonly type: {
4492
+ readonly kind: "Term";
4493
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
4494
+ };
4495
+ };
4496
+ readonly message: {
4497
+ readonly kind: "Shacl";
4498
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultMessage">;
4499
+ readonly type: {
4500
+ readonly kind: "Option";
4501
+ readonly itemType: {
4502
+ readonly kind: "String";
4503
+ };
4504
+ };
4505
+ };
4506
+ readonly path: {
4507
+ readonly kind: "Shacl";
4508
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultPath">;
4509
+ readonly type: {
4510
+ kind: "Option";
4511
+ readonly itemType: object;
4512
+ };
4513
+ };
4514
+ readonly severity: {
4515
+ readonly kind: "Shacl";
4516
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#resultSeverity">;
4517
+ readonly type: {
4518
+ kind: "Iri";
4519
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Info"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Warning"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Violation">)[];
4520
+ };
4521
+ };
4522
+ readonly sourceConstraintComponent: {
4523
+ readonly kind: "Shacl";
4524
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#sourceConstraintComponent">;
4525
+ readonly type: {
4526
+ readonly kind: "Iri";
4527
+ };
4528
+ };
4529
+ readonly sourceShape: {
4530
+ readonly kind: "Shacl";
4531
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#sourceShape">;
4532
+ readonly type: {
4533
+ readonly kind: "Option";
4534
+ readonly itemType: {
4535
+ readonly kind: "Identifier";
4536
+ };
4537
+ };
4538
+ };
4539
+ readonly value: {
4540
+ readonly kind: "Shacl";
4541
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#value">;
4542
+ readonly type: {
4543
+ readonly kind: "Option";
4544
+ readonly itemType: {
4545
+ readonly kind: "Term";
4546
+ readonly types: readonly ["BlankNode", "NamedNode", "Literal"];
4547
+ };
4548
+ };
4549
+ };
4550
+ };
4551
+ readonly toRdfTypes: readonly [import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ValidationResult">];
4552
+ };
4553
+ };
4554
+ };
4555
+ readonly properties: {};
4556
+ };
4557
+ const toRdfResource: $ToRdfResourceFunction<$Object>;
4558
+ const toRdfResourceValues: (value: $Object, _options: {
4559
+ graph?: Exclude<Quad_Graph, Variable>;
4560
+ ignoreRdfType?: boolean;
4561
+ propertyPath: $PropertyPath;
4562
+ resource: Resource;
4563
+ resourceSet: ResourceSet;
4564
+ }) => (BlankNode | NamedNode)[];
4565
+ }
4566
+ export {};
4567
+ //# sourceMappingURL=input.shaclmate.d.ts.map