@shaclmate/compiler 4.0.40 → 4.0.42

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 (344) hide show
  1. package/dist/ShapesGraphToAstTransformer.d.ts +1 -8
  2. package/dist/ShapesGraphToAstTransformer.js +11 -126
  3. package/dist/_ShapesGraphToAstTransformer/shapeNodeKinds.js +128 -160
  4. package/dist/_ShapesGraphToAstTransformer/transformPropertyShapeToAstStructTypeField.d.ts +17 -0
  5. package/dist/_ShapesGraphToAstTransformer/{transformPropertyShapeToAstObjectTypeProperty.js → transformPropertyShapeToAstStructTypeField.js} +71 -48
  6. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstListType.d.ts +1 -1
  7. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstListType.js +29 -20
  8. package/dist/_ShapesGraphToAstTransformer/{transformShapeToAstObjectType.d.ts → transformShapeToAstStructType.d.ts} +3 -3
  9. package/dist/_ShapesGraphToAstTransformer/{transformShapeToAstObjectType.js → transformShapeToAstStructType.js} +35 -45
  10. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstTermType.js +2 -1
  11. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstType.d.ts +1 -1
  12. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstType.js +3 -3
  13. package/dist/ast/AbstractCompoundType.d.ts +3 -2
  14. package/dist/ast/AbstractCompoundType.js +5 -5
  15. package/dist/ast/AbstractContainerType.d.ts +2 -2
  16. package/dist/ast/AbstractContainerType.js +4 -4
  17. package/dist/ast/{AbstractLazyObjectType.d.ts → AbstractLazyType.d.ts} +10 -12
  18. package/dist/ast/{AbstractLazyObjectType.js → AbstractLazyType.js} +3 -3
  19. package/dist/ast/AbstractType.d.ts +1 -1
  20. package/dist/ast/AbstractType.js +3 -0
  21. package/dist/ast/Ast.d.ts +2 -6
  22. package/dist/ast/DefaultValueType.js +2 -1
  23. package/dist/ast/IntersectionType.d.ts +2 -2
  24. package/dist/ast/IntersectionType.js +3 -3
  25. package/dist/ast/LazyOptionType.d.ts +6 -0
  26. package/dist/ast/LazyOptionType.js +5 -0
  27. package/dist/ast/LazySetType.d.ts +6 -0
  28. package/dist/ast/LazySetType.js +5 -0
  29. package/dist/ast/LazyType.d.ts +5 -0
  30. package/dist/ast/LazyType.js +5 -0
  31. package/dist/ast/ListType.d.ts +2 -2
  32. package/dist/ast/ListType.js +5 -5
  33. package/dist/ast/OptionType.js +2 -1
  34. package/dist/ast/SetType.js +2 -1
  35. package/dist/ast/StructCompoundType.d.ts +12 -0
  36. package/dist/ast/{ObjectCompoundType.js → StructCompoundType.js} +18 -18
  37. package/dist/ast/StructIntersectionType.d.ts +4 -0
  38. package/dist/ast/StructIntersectionType.js +2 -0
  39. package/dist/ast/{ObjectType.d.ts → StructType.d.ts} +28 -39
  40. package/dist/ast/{ObjectType.js → StructType.js} +81 -156
  41. package/dist/ast/StructUnionType.d.ts +4 -0
  42. package/dist/ast/StructUnionType.js +2 -0
  43. package/dist/ast/Type.d.ts +5 -5
  44. package/dist/ast/Type.js +4 -4
  45. package/dist/ast/UnionType.d.ts +2 -2
  46. package/dist/ast/UnionType.js +3 -3
  47. package/dist/ast/index.d.ts +7 -7
  48. package/dist/ast/index.js +7 -7
  49. package/dist/generators/AstJsonGenerator.js +7 -3
  50. package/dist/generators/transformAstToLabeledPropertyGraph.js +59 -56
  51. package/dist/generators/ts/AbstractCollectionType.d.ts +4 -11
  52. package/dist/generators/ts/AbstractCollectionType.js +3 -62
  53. package/dist/generators/ts/AbstractContainerType.d.ts +1 -2
  54. package/dist/generators/ts/AbstractContainerType.js +7 -10
  55. package/dist/generators/ts/AbstractDateType.d.ts +5 -8
  56. package/dist/generators/ts/AbstractDateType.js +7 -12
  57. package/dist/generators/ts/AbstractIdentifierType.d.ts +4 -0
  58. package/dist/generators/ts/AbstractIdentifierType.js +3 -0
  59. package/dist/generators/ts/{AbstractLazyObjectType.d.ts → AbstractLazyType.d.ts} +8 -8
  60. package/dist/generators/ts/{AbstractLazyObjectType.js → AbstractLazyType.js} +30 -17
  61. package/dist/generators/ts/AbstractLiteralType.d.ts +3 -5
  62. package/dist/generators/ts/AbstractLiteralType.js +0 -21
  63. package/dist/generators/ts/AbstractNumericType.d.ts +1 -7
  64. package/dist/generators/ts/AbstractNumericType.js +17 -27
  65. package/dist/generators/ts/AbstractObjectSetType.d.ts +1 -1
  66. package/dist/generators/ts/AbstractObjectSetType.js +2 -2
  67. package/dist/generators/ts/AbstractPrimitiveType.d.ts +2 -1
  68. package/dist/generators/ts/AbstractPrimitiveType.js +1 -1
  69. package/dist/generators/ts/AbstractTermType.d.ts +7 -23
  70. package/dist/generators/ts/AbstractTermType.js +27 -58
  71. package/dist/generators/ts/AbstractType.d.ts +86 -63
  72. package/dist/generators/ts/AbstractType.js +48 -22
  73. package/dist/generators/ts/BigDecimalType.d.ts +7 -3
  74. package/dist/generators/ts/BigDecimalType.js +7 -9
  75. package/dist/generators/ts/BigIntType.d.ts +5 -3
  76. package/dist/generators/ts/BigIntType.js +8 -5
  77. package/dist/generators/ts/BlankNodeType.d.ts +2 -7
  78. package/dist/generators/ts/BlankNodeType.js +4 -9
  79. package/dist/generators/ts/BooleanType.d.ts +6 -4
  80. package/dist/generators/ts/BooleanType.js +13 -15
  81. package/dist/generators/ts/DateTimeType.d.ts +2 -2
  82. package/dist/generators/ts/DateTimeType.js +14 -4
  83. package/dist/generators/ts/DateType.d.ts +2 -2
  84. package/dist/generators/ts/DateType.js +14 -4
  85. package/dist/generators/ts/DefaultValueType.d.ts +40 -2
  86. package/dist/generators/ts/DefaultValueType.js +15 -14
  87. package/dist/generators/ts/FloatType.d.ts +5 -3
  88. package/dist/generators/ts/FloatType.js +8 -5
  89. package/dist/generators/ts/GraphqlSchema.js +2 -2
  90. package/dist/generators/ts/IdentifierType.d.ts +2 -2
  91. package/dist/generators/ts/IdentifierType.js +8 -11
  92. package/dist/generators/ts/IntType.d.ts +5 -3
  93. package/dist/generators/ts/IntType.js +8 -5
  94. package/dist/generators/ts/IriType.d.ts +2 -2
  95. package/dist/generators/ts/IriType.js +16 -16
  96. package/dist/generators/ts/{LazyObjectOptionType.d.ts → LazyOptionType.d.ts} +13 -11
  97. package/dist/generators/ts/LazyOptionType.js +75 -0
  98. package/dist/generators/ts/LazySetType.d.ts +20 -0
  99. package/dist/generators/ts/LazySetType.js +76 -0
  100. package/dist/generators/ts/LazyType.d.ts +19 -0
  101. package/dist/generators/ts/LazyType.js +65 -0
  102. package/dist/generators/ts/ListType.d.ts +11 -2
  103. package/dist/generators/ts/ListType.js +53 -26
  104. package/dist/generators/ts/LiteralType.d.ts +7 -2
  105. package/dist/generators/ts/LiteralType.js +12 -5
  106. package/dist/generators/ts/ObjectType.d.ts +24 -25
  107. package/dist/generators/ts/ObjectType.js +303 -161
  108. package/dist/generators/ts/ObjectUnionType.js +42 -42
  109. package/dist/generators/ts/OptionType.d.ts +6 -2
  110. package/dist/generators/ts/OptionType.js +16 -9
  111. package/dist/generators/ts/RdfjsDatasetObjectSetType.js +1 -4
  112. package/dist/generators/ts/SetType.d.ts +17 -2
  113. package/dist/generators/ts/SetType.js +85 -9
  114. package/dist/generators/ts/Snippets.d.ts +29 -9
  115. package/dist/generators/ts/Snippets.js +179 -39
  116. package/dist/generators/ts/StringType.d.ts +7 -4
  117. package/dist/generators/ts/StringType.js +23 -12
  118. package/dist/generators/ts/TermType.d.ts +9 -3
  119. package/dist/generators/ts/TermType.js +29 -7
  120. package/dist/generators/ts/TsGenerator.d.ts +1 -1
  121. package/dist/generators/ts/TsGenerator.js +62 -32
  122. package/dist/generators/ts/Type.d.ts +4 -4
  123. package/dist/generators/ts/TypeFactory.d.ts +5 -5
  124. package/dist/generators/ts/TypeFactory.js +90 -82
  125. package/dist/generators/ts/UnionType.d.ts +25 -23
  126. package/dist/generators/ts/UnionType.js +254 -261
  127. package/dist/generators/ts/ZodGenerator.d.ts +1 -1
  128. package/dist/generators/ts/ZodGenerator.js +29 -14
  129. package/dist/generators/ts/_ObjectType/AbstractProperty.d.ts +28 -16
  130. package/dist/generators/ts/_ObjectType/AbstractProperty.js +1 -24
  131. package/dist/generators/ts/_ObjectType/DiscriminantProperty.d.ts +15 -17
  132. package/dist/generators/ts/_ObjectType/DiscriminantProperty.js +24 -54
  133. package/dist/generators/ts/_ObjectType/IdentifierProperty.d.ts +8 -2
  134. package/dist/generators/ts/_ObjectType/IdentifierProperty.js +48 -20
  135. package/dist/generators/ts/_ObjectType/ObjectType_createFunctionExpression.d.ts +4 -0
  136. package/dist/generators/ts/_ObjectType/ObjectType_createFunctionExpression.js +28 -0
  137. package/dist/generators/ts/_ObjectType/ObjectType_equalsFunctionExpression.d.ts +4 -0
  138. package/dist/generators/ts/_ObjectType/ObjectType_equalsFunctionExpression.js +15 -0
  139. package/dist/generators/ts/_ObjectType/ObjectType_filterFunctionExpression.d.ts +4 -0
  140. package/dist/generators/ts/_ObjectType/ObjectType_filterFunctionExpression.js +12 -0
  141. package/dist/generators/ts/_ObjectType/ObjectType_filterTypeExpression.d.ts +4 -0
  142. package/dist/generators/ts/_ObjectType/{ObjectType_filterTypeDeclaration.js → ObjectType_filterTypeExpression.js} +5 -10
  143. package/dist/generators/ts/_ObjectType/{ObjectType_focusSparqlConstructTriplesFunctionDeclaration.d.ts → ObjectType_focusSparqlConstructTriplesFunctionExpression.d.ts} +2 -3
  144. package/dist/generators/ts/_ObjectType/{ObjectType_focusSparqlConstructTriplesFunctionDeclaration.js → ObjectType_focusSparqlConstructTriplesFunctionExpression.js} +5 -13
  145. package/dist/generators/ts/_ObjectType/{ObjectType_focusSparqlWherePatternsFunctionDeclaration.d.ts → ObjectType_focusSparqlWherePatternsFunctionExpression.d.ts} +2 -3
  146. package/dist/generators/ts/_ObjectType/{ObjectType_focusSparqlWherePatternsFunctionDeclaration.js → ObjectType_focusSparqlWherePatternsFunctionExpression.js} +8 -31
  147. package/dist/generators/ts/_ObjectType/ObjectType_fromJsonFunctionExpression.d.ts +4 -0
  148. package/dist/generators/ts/_ObjectType/ObjectType_fromJsonFunctionExpression.js +12 -0
  149. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceFunctionExpression.d.ts +4 -0
  150. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceFunctionExpression.js +43 -0
  151. package/dist/generators/ts/_ObjectType/ObjectType_graphqlTypeExpression.d.ts +4 -0
  152. package/dist/generators/ts/_ObjectType/{ObjectType_graphqlTypeVariableStatement.js → ObjectType_graphqlTypeExpression.js} +6 -13
  153. package/dist/generators/ts/_ObjectType/ObjectType_hashFunctionExpression.d.ts +4 -0
  154. package/dist/generators/ts/_ObjectType/ObjectType_hashFunctionExpression.js +30 -0
  155. package/dist/generators/ts/_ObjectType/ObjectType_identifierTypeDeclarations.d.ts +4 -0
  156. package/dist/generators/ts/_ObjectType/ObjectType_identifierTypeDeclarations.js +13 -0
  157. package/dist/generators/ts/_ObjectType/ObjectType_isTypeFunctionDeclaration.js +11 -8
  158. package/dist/generators/ts/_ObjectType/ObjectType_jsonParseFunctionDeclaration.d.ts +1 -2
  159. package/dist/generators/ts/_ObjectType/ObjectType_jsonParseFunctionDeclaration.js +2 -6
  160. package/dist/generators/ts/_ObjectType/ObjectType_jsonSchemaExpression.d.ts +4 -0
  161. package/dist/generators/ts/_ObjectType/ObjectType_jsonSchemaExpression.js +18 -0
  162. package/dist/generators/ts/_ObjectType/ObjectType_jsonTypeExpression.d.ts +4 -0
  163. package/dist/generators/ts/_ObjectType/ObjectType_jsonTypeExpression.js +5 -0
  164. package/dist/generators/ts/_ObjectType/ObjectType_jsonUiSchemaFunctionExpression.d.ts +4 -0
  165. package/dist/generators/ts/_ObjectType/ObjectType_jsonUiSchemaFunctionExpression.js +17 -0
  166. package/dist/generators/ts/_ObjectType/ObjectType_objectSetMethodNames.d.ts +1 -1
  167. package/dist/generators/ts/_ObjectType/ObjectType_objectSetMethodNames.js +2 -2
  168. package/dist/generators/ts/_ObjectType/ObjectType_schemaExpression.d.ts +4 -0
  169. package/dist/generators/ts/_ObjectType/ObjectType_schemaExpression.js +18 -0
  170. package/dist/generators/ts/_ObjectType/ObjectType_schemaTypeExpression.d.ts +4 -0
  171. package/dist/generators/ts/_ObjectType/ObjectType_schemaTypeExpression.js +18 -0
  172. package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryFunctionDeclaration.d.ts +2 -3
  173. package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryFunctionDeclaration.js +5 -9
  174. package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryStringFunctionDeclaration.d.ts +2 -3
  175. package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryStringFunctionDeclaration.js +4 -8
  176. package/dist/generators/ts/_ObjectType/ObjectType_toJsonFunctionExpression.d.ts +4 -0
  177. package/dist/generators/ts/_ObjectType/ObjectType_toJsonFunctionExpression.js +14 -0
  178. package/dist/generators/ts/_ObjectType/ObjectType_toRdfResourceFunctionExpression.d.ts +4 -0
  179. package/dist/generators/ts/_ObjectType/{ObjectType_toRdfResourceFunctionDeclaration.js → ObjectType_toRdfResourceFunctionExpression.js} +7 -13
  180. package/dist/generators/ts/_ObjectType/ObjectType_toStringFunctionExpression.d.ts +4 -0
  181. package/dist/generators/ts/_ObjectType/ObjectType_toStringFunctionExpression.js +7 -0
  182. package/dist/generators/ts/_ObjectType/ObjectType_toStringRecordFunctionExpression.d.ts +4 -0
  183. package/dist/generators/ts/_ObjectType/ObjectType_toStringRecordFunctionExpression.js +5 -0
  184. package/dist/generators/ts/_ObjectType/{ObjectType_valueSparqlConstructTriplesFunctionDeclaration.d.ts → ObjectType_valueSparqlConstructTriplesFunctionExpression.d.ts} +2 -3
  185. package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlConstructTriplesFunctionExpression.js +8 -0
  186. package/dist/generators/ts/_ObjectType/{ObjectType_valueSparqlWherePatternsFunctionDeclaration.d.ts → ObjectType_valueSparqlWherePatternsFunctionExpression.d.ts} +2 -3
  187. package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlWherePatternsFunctionExpression.js +10 -0
  188. package/dist/generators/ts/_ObjectType/ShaclProperty.d.ts +9 -2
  189. package/dist/generators/ts/_ObjectType/ShaclProperty.js +70 -38
  190. package/dist/generators/ts/_snippets/snippets_BooleanSchema.js +4 -3
  191. package/dist/generators/ts/_snippets/snippets_DateSchema.js +4 -3
  192. package/dist/generators/ts/_snippets/snippets_DefaultValueSchema.js +3 -3
  193. package/dist/generators/ts/_snippets/snippets_FromRdfResourceValuesFunction.js +6 -5
  194. package/dist/generators/ts/_snippets/snippets_IdentifierSchema.js +2 -1
  195. package/dist/generators/ts/_snippets/snippets_IriSchema.js +1 -0
  196. package/dist/generators/ts/_snippets/snippets_Lazy.d.ts +3 -0
  197. package/dist/generators/ts/_snippets/snippets_Lazy.js +22 -0
  198. package/dist/generators/ts/_snippets/snippets_LazyOption.d.ts +3 -0
  199. package/dist/generators/ts/_snippets/snippets_LazyOption.js +25 -0
  200. package/dist/generators/ts/_snippets/snippets_LazySet.d.ts +3 -0
  201. package/dist/generators/ts/_snippets/snippets_LazySet.js +40 -0
  202. package/dist/generators/ts/_snippets/snippets_LiteralFilter.js +1 -3
  203. package/dist/generators/ts/_snippets/snippets_LiteralSchema.js +1 -0
  204. package/dist/generators/ts/_snippets/snippets_NumericSchema.js +2 -1
  205. package/dist/generators/ts/_snippets/snippets_PropertyPath.js +6 -8
  206. package/dist/generators/ts/_snippets/snippets_RdfVocabularies.js +32 -32
  207. package/dist/generators/ts/_snippets/snippets_ShaclPropertySchema.js +1 -1
  208. package/dist/generators/ts/_snippets/snippets_StringSchema.js +5 -3
  209. package/dist/generators/ts/_snippets/snippets_TermFilter.js +3 -3
  210. package/dist/generators/ts/_snippets/snippets_TermSchema.js +4 -2
  211. package/dist/generators/ts/_snippets/snippets_bigDecimalFromRdfResourceValues.d.ts +3 -0
  212. package/dist/generators/ts/_snippets/snippets_bigDecimalFromRdfResourceValues.js +6 -0
  213. package/dist/generators/ts/_snippets/snippets_bigIntFromRdfResourceValues.d.ts +3 -0
  214. package/dist/generators/ts/_snippets/snippets_bigIntFromRdfResourceValues.js +6 -0
  215. package/dist/generators/ts/_snippets/snippets_blankNodeFromRdfResourceValues.d.ts +3 -0
  216. package/dist/generators/ts/_snippets/snippets_blankNodeFromRdfResourceValues.js +6 -0
  217. package/dist/generators/ts/_snippets/snippets_booleanFromRdfResourceValues.d.ts +3 -0
  218. package/dist/generators/ts/_snippets/snippets_booleanFromRdfResourceValues.js +6 -0
  219. package/dist/generators/ts/_snippets/snippets_convertToArraySet.d.ts +3 -0
  220. package/dist/generators/ts/_snippets/snippets_convertToArraySet.js +8 -0
  221. package/dist/generators/ts/_snippets/snippets_convertToLazy.d.ts +3 -0
  222. package/dist/generators/ts/_snippets/snippets_convertToLazy.js +15 -0
  223. package/dist/generators/ts/_snippets/snippets_convertToLazyOption.d.ts +3 -0
  224. package/dist/generators/ts/_snippets/snippets_convertToLazyOption.js +33 -0
  225. package/dist/generators/ts/_snippets/snippets_convertToLazySet.d.ts +3 -0
  226. package/dist/generators/ts/_snippets/snippets_convertToLazySet.js +27 -0
  227. package/dist/generators/ts/_snippets/snippets_convertToList.d.ts +3 -0
  228. package/dist/generators/ts/_snippets/snippets_convertToList.js +7 -0
  229. package/dist/generators/ts/_snippets/snippets_convertToScalarSet.d.ts +3 -0
  230. package/dist/generators/ts/_snippets/snippets_convertToScalarSet.js +15 -0
  231. package/dist/generators/ts/_snippets/snippets_dateFromRdfResourceValues.d.ts +3 -0
  232. package/dist/generators/ts/_snippets/snippets_dateFromRdfResourceValues.js +6 -0
  233. package/dist/generators/ts/_snippets/snippets_dateTimeFromRdfResourceValues.d.ts +3 -0
  234. package/dist/generators/ts/_snippets/snippets_dateTimeFromRdfResourceValues.js +6 -0
  235. package/dist/generators/ts/_snippets/snippets_defaultValueFromRdfResourceValues.d.ts +3 -0
  236. package/dist/generators/ts/_snippets/snippets_defaultValueFromRdfResourceValues.js +10 -0
  237. package/dist/generators/ts/_snippets/snippets_defaultValueSparqlWherePatterns.js +1 -1
  238. package/dist/generators/ts/_snippets/snippets_filterNumeric.js +1 -1
  239. package/dist/generators/ts/_snippets/snippets_filterTerm.js +1 -2
  240. package/dist/generators/ts/_snippets/snippets_floatFromRdfResourceValues.d.ts +3 -0
  241. package/dist/generators/ts/_snippets/snippets_floatFromRdfResourceValues.js +6 -0
  242. package/dist/generators/ts/_snippets/snippets_identifierFromRdfResourceValues.d.ts +3 -0
  243. package/dist/generators/ts/_snippets/snippets_identifierFromRdfResourceValues.js +6 -0
  244. package/dist/generators/ts/_snippets/snippets_intFromRdfResourceValues.d.ts +3 -0
  245. package/dist/generators/ts/_snippets/snippets_intFromRdfResourceValues.js +6 -0
  246. package/dist/generators/ts/_snippets/snippets_iriFromRdfResourceValues.d.ts +3 -0
  247. package/dist/generators/ts/_snippets/snippets_iriFromRdfResourceValues.js +6 -0
  248. package/dist/generators/ts/_snippets/snippets_listFromRdfResourceValues.d.ts +3 -0
  249. package/dist/generators/ts/_snippets/snippets_listFromRdfResourceValues.js +15 -0
  250. package/dist/generators/ts/_snippets/snippets_literalFromRdfResourceValues.d.ts +3 -0
  251. package/dist/generators/ts/_snippets/snippets_literalFromRdfResourceValues.js +6 -0
  252. package/dist/generators/ts/_snippets/snippets_maybeFromRdfResourceValues.d.ts +3 -0
  253. package/dist/generators/ts/_snippets/snippets_maybeFromRdfResourceValues.js +11 -0
  254. package/dist/generators/ts/_snippets/snippets_mutableListFromRdfResourceValues.d.ts +3 -0
  255. package/dist/generators/ts/_snippets/snippets_mutableListFromRdfResourceValues.js +8 -0
  256. package/dist/generators/ts/_snippets/snippets_mutableSetFromRdfResourceValues.d.ts +3 -0
  257. package/dist/generators/ts/_snippets/snippets_mutableSetFromRdfResourceValues.js +8 -0
  258. package/dist/generators/ts/_snippets/snippets_numericSparqlWherePatterns.js +1 -1
  259. package/dist/generators/ts/_snippets/snippets_setFromRdfResourceValues.d.ts +3 -0
  260. package/dist/generators/ts/_snippets/snippets_setFromRdfResourceValues.js +9 -0
  261. package/dist/generators/ts/_snippets/snippets_shaclPropertyFromRdf.js +13 -7
  262. package/dist/generators/ts/_snippets/snippets_stringFromRdfResourceValues.d.ts +3 -0
  263. package/dist/generators/ts/_snippets/snippets_stringFromRdfResourceValues.js +6 -0
  264. package/dist/generators/ts/_snippets/snippets_termFilterSparqlPatterns.js +1 -1
  265. package/dist/generators/ts/_snippets/snippets_termFromRdfResourceValues.d.ts +3 -0
  266. package/dist/generators/ts/_snippets/snippets_termFromRdfResourceValues.js +17 -0
  267. package/dist/generators/ts/_snippets/snippets_termLikeFromRdfResourceValues.d.ts +3 -0
  268. package/dist/generators/ts/_snippets/snippets_termLikeFromRdfResourceValues.js +60 -0
  269. package/dist/generators/ts/_snippets/snippets_termSparqlWherePatterns.js +2 -2
  270. package/dist/input/generated.d.ts +1116 -400
  271. package/dist/input/generated.js +1879 -1917
  272. package/package.json +2 -4
  273. package/dist/_ShapesGraphToAstTransformer/transformPropertyShapeToAstObjectTypeProperty.d.ts +0 -9
  274. package/dist/ast/LazyObjectOptionType.d.ts +0 -6
  275. package/dist/ast/LazyObjectOptionType.js +0 -5
  276. package/dist/ast/LazyObjectSetType.d.ts +0 -6
  277. package/dist/ast/LazyObjectSetType.js +0 -5
  278. package/dist/ast/LazyObjectType.d.ts +0 -5
  279. package/dist/ast/LazyObjectType.js +0 -5
  280. package/dist/ast/ObjectCompoundType.d.ts +0 -12
  281. package/dist/ast/ObjectIntersectionType.d.ts +0 -4
  282. package/dist/ast/ObjectIntersectionType.js +0 -2
  283. package/dist/ast/ObjectUnionType.d.ts +0 -4
  284. package/dist/ast/ObjectUnionType.js +0 -2
  285. package/dist/generators/ts/LazyObjectOptionType.js +0 -62
  286. package/dist/generators/ts/LazyObjectSetType.d.ts +0 -20
  287. package/dist/generators/ts/LazyObjectSetType.js +0 -61
  288. package/dist/generators/ts/LazyObjectType.d.ts +0 -19
  289. package/dist/generators/ts/LazyObjectType.js +0 -53
  290. package/dist/generators/ts/_ObjectType/ObjectType_createFunctionDeclaration.d.ts +0 -5
  291. package/dist/generators/ts/_ObjectType/ObjectType_createFunctionDeclaration.js +0 -65
  292. package/dist/generators/ts/_ObjectType/ObjectType_equalsFunctionDeclaration.d.ts +0 -5
  293. package/dist/generators/ts/_ObjectType/ObjectType_equalsFunctionDeclaration.js +0 -23
  294. package/dist/generators/ts/_ObjectType/ObjectType_filterFunctionDeclaration.d.ts +0 -5
  295. package/dist/generators/ts/_ObjectType/ObjectType_filterFunctionDeclaration.js +0 -24
  296. package/dist/generators/ts/_ObjectType/ObjectType_filterTypeDeclaration.d.ts +0 -5
  297. package/dist/generators/ts/_ObjectType/ObjectType_fromJsonFunctionDeclaration.d.ts +0 -5
  298. package/dist/generators/ts/_ObjectType/ObjectType_fromJsonFunctionDeclaration.js +0 -43
  299. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceFunctionDeclaration.d.ts +0 -5
  300. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceFunctionDeclaration.js +0 -80
  301. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceValuesFunctionDeclaration.d.ts +0 -5
  302. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceValuesFunctionDeclaration.js +0 -15
  303. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfTypeVariableStatement.d.ts +0 -5
  304. package/dist/generators/ts/_ObjectType/ObjectType_fromRdfTypeVariableStatement.js +0 -10
  305. package/dist/generators/ts/_ObjectType/ObjectType_graphqlTypeVariableStatement.d.ts +0 -5
  306. package/dist/generators/ts/_ObjectType/ObjectType_hashFunctionDeclarations.d.ts +0 -4
  307. package/dist/generators/ts/_ObjectType/ObjectType_hashFunctionDeclarations.js +0 -45
  308. package/dist/generators/ts/_ObjectType/ObjectType_interfaceDeclaration.d.ts +0 -4
  309. package/dist/generators/ts/_ObjectType/ObjectType_interfaceDeclaration.js +0 -16
  310. package/dist/generators/ts/_ObjectType/ObjectType_jsonSchemaFunctionDeclaration.d.ts +0 -5
  311. package/dist/generators/ts/_ObjectType/ObjectType_jsonSchemaFunctionDeclaration.js +0 -31
  312. package/dist/generators/ts/_ObjectType/ObjectType_jsonTypeAliasDeclaration.d.ts +0 -5
  313. package/dist/generators/ts/_ObjectType/ObjectType_jsonTypeAliasDeclaration.js +0 -16
  314. package/dist/generators/ts/_ObjectType/ObjectType_jsonUiSchemaFunctionDeclaration.d.ts +0 -5
  315. package/dist/generators/ts/_ObjectType/ObjectType_jsonUiSchemaFunctionDeclaration.js +0 -17
  316. package/dist/generators/ts/_ObjectType/ObjectType_schemaVariableStatement.d.ts +0 -5
  317. package/dist/generators/ts/_ObjectType/ObjectType_schemaVariableStatement.js +0 -14
  318. package/dist/generators/ts/_ObjectType/ObjectType_toJsonFunctionDeclaration.d.ts +0 -5
  319. package/dist/generators/ts/_ObjectType/ObjectType_toJsonFunctionDeclaration.js +0 -41
  320. package/dist/generators/ts/_ObjectType/ObjectType_toRdfResourceFunctionDeclaration.d.ts +0 -5
  321. package/dist/generators/ts/_ObjectType/ObjectType_toStringFunctionDeclarations.d.ts +0 -4
  322. package/dist/generators/ts/_ObjectType/ObjectType_toStringFunctionDeclarations.js +0 -36
  323. package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlConstructTriplesFunctionDeclaration.js +0 -11
  324. package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlWherePatternsFunctionDeclaration.js +0 -13
  325. package/dist/generators/ts/_ObjectType/identifierTypeDeclarations.d.ts +0 -4
  326. package/dist/generators/ts/_ObjectType/identifierTypeDeclarations.js +0 -27
  327. package/dist/generators/ts/_snippets/snippets_LazyObject.d.ts +0 -3
  328. package/dist/generators/ts/_snippets/snippets_LazyObject.js +0 -22
  329. package/dist/generators/ts/_snippets/snippets_LazyObjectOption.d.ts +0 -3
  330. package/dist/generators/ts/_snippets/snippets_LazyObjectOption.js +0 -25
  331. package/dist/generators/ts/_snippets/snippets_LazyObjectSet.d.ts +0 -3
  332. package/dist/generators/ts/_snippets/snippets_LazyObjectSet.js +0 -40
  333. package/dist/generators/ts/_snippets/snippets_convertToArray.d.ts +0 -3
  334. package/dist/generators/ts/_snippets/snippets_convertToArray.js +0 -8
  335. package/dist/generators/ts/_snippets/snippets_convertToLazyObject.d.ts +0 -3
  336. package/dist/generators/ts/_snippets/snippets_convertToLazyObject.js +0 -15
  337. package/dist/generators/ts/_snippets/snippets_convertToLazyObjectOption.d.ts +0 -3
  338. package/dist/generators/ts/_snippets/snippets_convertToLazyObjectOption.js +0 -31
  339. package/dist/generators/ts/_snippets/snippets_convertToLazyObjectSet.d.ts +0 -3
  340. package/dist/generators/ts/_snippets/snippets_convertToLazyObjectSet.js +0 -25
  341. package/dist/generators/ts/_snippets/snippets_fromRdfLanguageIn.d.ts +0 -3
  342. package/dist/generators/ts/_snippets/snippets_fromRdfLanguageIn.js +0 -15
  343. package/dist/generators/ts/_snippets/snippets_fromRdfPreferredLanguages.d.ts +0 -3
  344. package/dist/generators/ts/_snippets/snippets_fromRdfPreferredLanguages.js +0 -23
@@ -60,23 +60,25 @@ export type $FromRdfResourceFunction<T> = (resource: Resource, options?: {
60
60
  ignoreRdfType?: boolean;
61
61
  preferredLanguages?: readonly string[];
62
62
  }) => Either<Error, T>;
63
- export type $FromRdfResourceValuesFunction<T> = (resourceValues: Either<Error, Resource.Values>, options: {
63
+ export type $FromRdfResourceValuesFunction<ValueT, ValueSchemaT> = (resourceValues: Resource.Values, options: {
64
64
  context?: unknown;
65
65
  graph?: Exclude<Quad_Graph, Variable>;
66
+ focusResource: Resource;
66
67
  ignoreRdfType?: boolean;
67
68
  preferredLanguages?: readonly string[];
68
69
  propertyPath: $PropertyPath;
69
- resource: Resource;
70
- }) => Either<Error, Resource.Values<T>>;
70
+ schema: ValueSchemaT;
71
+ }) => Either<Error, Resource.Values<ValueT>>;
71
72
  export type $PropertyPath = RdfxResourcePropertyPath;
72
73
  export declare namespace $PropertyPath {
73
74
  const fromRdfResource: $FromRdfResourceFunction<$PropertyPath>;
74
- const fromRdfResourceValues: $FromRdfResourceValuesFunction<$PropertyPath>;
75
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<$PropertyPath, object>;
75
76
  const schema: Readonly<object>;
77
+ type Schema = typeof schema;
76
78
  const toRdfResource: $ToRdfResourceFunction<$PropertyPath>;
77
79
  const $toString: typeof RdfxResourcePropertyPath.toString;
78
80
  }
79
- export interface $ShaclPropertySchema<TypeSchemaT = object> {
81
+ export interface $ShaclPropertySchema<TypeSchemaT> {
80
82
  readonly kind: "Shacl";
81
83
  readonly path: $PropertyPath;
82
84
  readonly type: TypeSchemaT;
@@ -93,139 +95,154 @@ export type $ToRdfResourceValuesFunction<ValueT, ReturnT extends BlankNode | Lit
93
95
  resource: Resource;
94
96
  resourceSet: ResourceSet;
95
97
  }) => ReturnT[];
96
- export interface PropertyShape {
97
- readonly $identifier: () => PropertyShape.Identifier;
98
- readonly $type: "PropertyShape";
98
+ export type NodeShape = {
99
+ readonly $identifier: () => NodeShape.Identifier;
100
+ readonly $type: "NodeShape";
99
101
  readonly and: Maybe<readonly (BlankNode | NamedNode)[]>;
100
102
  readonly classes: readonly NamedNode[];
103
+ readonly closed: Maybe<boolean>;
101
104
  readonly comment: Maybe<string>;
102
105
  readonly datatype: Maybe<NamedNode>;
103
106
  readonly deactivated: Maybe<boolean>;
104
- readonly defaultValue: Maybe<NamedNode | Literal>;
105
- readonly description: Maybe<string>;
106
- /**
107
- * Whether to include this property in a toString()-type display, defaults to false
108
- */
109
- readonly display: boolean;
110
- readonly flags: readonly string[];
111
- readonly groups: readonly (BlankNode | NamedNode)[];
107
+ readonly discriminantValue: Maybe<string>;
108
+ readonly extern: Maybe<boolean>;
109
+ readonly flags: Maybe<string>;
110
+ readonly fromRdfType: Maybe<NamedNode>;
112
111
  readonly hasValues: readonly (NamedNode | Literal)[];
112
+ readonly ignoredProperties: Maybe<readonly NamedNode[]>;
113
113
  readonly in_: Maybe<readonly (NamedNode | Literal)[]>;
114
114
  readonly isDefinedBy: Maybe<BlankNode | NamedNode>;
115
115
  readonly label: Maybe<string>;
116
116
  readonly languageIn: Maybe<readonly string[]>;
117
- readonly maxCount: Maybe<bigint>;
118
117
  readonly maxExclusive: Maybe<Literal>;
119
118
  readonly maxInclusive: Maybe<Literal>;
120
119
  readonly maxLength: Maybe<bigint>;
121
- readonly minCount: Maybe<bigint>;
120
+ readonly message: Maybe<string>;
122
121
  readonly minExclusive: Maybe<Literal>;
123
122
  readonly minInclusive: Maybe<Literal>;
124
123
  readonly minLength: Maybe<bigint>;
125
124
  readonly mutable: Maybe<boolean>;
126
- readonly name: Maybe<string>;
127
125
  readonly node: Maybe<BlankNode | NamedNode>;
128
126
  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">>;
129
127
  readonly not: readonly (BlankNode | NamedNode)[];
130
128
  readonly or: Maybe<readonly (BlankNode | NamedNode)[]>;
131
- readonly order: Maybe<number>;
132
- readonly path: $PropertyPath;
133
- readonly patterns: readonly string[];
134
- readonly resolve: Maybe<BlankNode | NamedNode>;
129
+ readonly pattern: Maybe<string>;
130
+ readonly properties: readonly (BlankNode | NamedNode)[];
131
+ readonly rdfType: Maybe<NamedNode>;
132
+ readonly severity: Maybe<NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation">>;
135
133
  readonly shaclmateName: Maybe<string>;
136
- readonly uniqueLang: Maybe<boolean>;
134
+ readonly subClassOf: readonly NamedNode[];
135
+ readonly targetClasses: readonly NamedNode[];
136
+ readonly targetNodes: readonly (NamedNode | Literal)[];
137
+ readonly targetObjectsOf: readonly NamedNode[];
138
+ readonly targetSubjectsOf: readonly NamedNode[];
139
+ readonly toRdfTypes: readonly NamedNode[];
140
+ readonly tsImports: readonly string[];
141
+ readonly types: readonly NamedNode[];
137
142
  readonly xone: Maybe<readonly (BlankNode | NamedNode)[]>;
138
- }
139
- export declare namespace PropertyShape {
140
- function create(parameters: {
141
- readonly $identifier?: (() => PropertyShape.Identifier) | BlankNode | NamedNode | string;
143
+ };
144
+ export declare namespace NodeShape {
145
+ const create: (parameters?: {
146
+ readonly $identifier?: (() => NodeShape.Identifier) | BlankNode | NamedNode | string;
142
147
  readonly and?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
143
- readonly classes?: readonly (string | NamedNode)[];
148
+ readonly classes?: string | NamedNode | readonly (string | NamedNode)[];
149
+ readonly closed?: boolean | Maybe<boolean>;
144
150
  readonly comment?: string | Maybe<string>;
145
151
  readonly datatype?: string | NamedNode | Maybe<NamedNode>;
146
152
  readonly deactivated?: boolean | Maybe<boolean>;
147
- readonly defaultValue?: (NamedNode | Literal) | Maybe<NamedNode | Literal>;
148
- readonly description?: string | Maybe<string>;
149
- readonly display?: boolean;
150
- readonly flags?: readonly string[];
151
- readonly groups?: readonly (BlankNode | NamedNode | string | undefined)[];
152
- readonly hasValues?: readonly (NamedNode | Literal)[];
153
+ readonly discriminantValue?: string | Maybe<string>;
154
+ readonly extern?: boolean | Maybe<boolean>;
155
+ readonly flags?: string | Maybe<string>;
156
+ readonly fromRdfType?: string | NamedNode | Maybe<NamedNode>;
157
+ readonly hasValues?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
158
+ readonly ignoredProperties?: readonly (string | NamedNode)[] | Maybe<readonly NamedNode[]>;
153
159
  readonly in_?: readonly (NamedNode | Literal)[] | Maybe<readonly (NamedNode | Literal)[]>;
154
160
  readonly isDefinedBy?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
155
161
  readonly label?: string | Maybe<string>;
156
162
  readonly languageIn?: readonly string[] | Maybe<readonly string[]>;
157
- readonly maxCount?: bigint | Maybe<bigint>;
158
163
  readonly maxExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
159
164
  readonly maxInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
160
165
  readonly maxLength?: bigint | Maybe<bigint>;
161
- readonly minCount?: bigint | Maybe<bigint>;
166
+ readonly message?: string | Maybe<string>;
162
167
  readonly minExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
163
168
  readonly minInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
164
169
  readonly minLength?: bigint | Maybe<bigint>;
165
170
  readonly mutable?: boolean | Maybe<boolean>;
166
- readonly name?: string | Maybe<string>;
167
171
  readonly node?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
168
172
  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">>;
169
- readonly not?: readonly (BlankNode | NamedNode | string | undefined)[];
173
+ readonly not?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
170
174
  readonly or?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
171
- readonly order?: number | Maybe<number>;
172
- readonly path: $PropertyPath;
173
- readonly patterns?: readonly string[];
174
- readonly resolve?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
175
+ readonly pattern?: string | Maybe<string>;
176
+ readonly properties?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
177
+ readonly rdfType?: string | NamedNode | Maybe<NamedNode>;
178
+ readonly severity?: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation"> | Maybe<NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation">>;
175
179
  readonly shaclmateName?: string | Maybe<string>;
176
- readonly uniqueLang?: boolean | Maybe<boolean>;
180
+ readonly subClassOf?: string | NamedNode | readonly (string | NamedNode)[];
181
+ readonly targetClasses?: string | NamedNode | readonly (string | NamedNode)[];
182
+ readonly targetNodes?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
183
+ readonly targetObjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
184
+ readonly targetSubjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
185
+ readonly toRdfTypes?: string | NamedNode | readonly (string | NamedNode)[];
186
+ readonly tsImports?: string | readonly string[];
187
+ readonly types?: string | NamedNode | readonly (string | NamedNode)[];
177
188
  readonly xone?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
178
- }): Either<Error, PropertyShape>;
179
- function createUnsafe(parameters: {
180
- readonly $identifier?: (() => PropertyShape.Identifier) | BlankNode | NamedNode | string;
189
+ }) => Either<Error, NodeShape>;
190
+ function createUnsafe(parameters?: {
191
+ readonly $identifier?: (() => NodeShape.Identifier) | BlankNode | NamedNode | string;
181
192
  readonly and?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
182
- readonly classes?: readonly (string | NamedNode)[];
193
+ readonly classes?: string | NamedNode | readonly (string | NamedNode)[];
194
+ readonly closed?: boolean | Maybe<boolean>;
183
195
  readonly comment?: string | Maybe<string>;
184
196
  readonly datatype?: string | NamedNode | Maybe<NamedNode>;
185
197
  readonly deactivated?: boolean | Maybe<boolean>;
186
- readonly defaultValue?: (NamedNode | Literal) | Maybe<NamedNode | Literal>;
187
- readonly description?: string | Maybe<string>;
188
- readonly display?: boolean;
189
- readonly flags?: readonly string[];
190
- readonly groups?: readonly (BlankNode | NamedNode | string | undefined)[];
191
- readonly hasValues?: readonly (NamedNode | Literal)[];
198
+ readonly discriminantValue?: string | Maybe<string>;
199
+ readonly extern?: boolean | Maybe<boolean>;
200
+ readonly flags?: string | Maybe<string>;
201
+ readonly fromRdfType?: string | NamedNode | Maybe<NamedNode>;
202
+ readonly hasValues?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
203
+ readonly ignoredProperties?: readonly (string | NamedNode)[] | Maybe<readonly NamedNode[]>;
192
204
  readonly in_?: readonly (NamedNode | Literal)[] | Maybe<readonly (NamedNode | Literal)[]>;
193
205
  readonly isDefinedBy?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
194
206
  readonly label?: string | Maybe<string>;
195
207
  readonly languageIn?: readonly string[] | Maybe<readonly string[]>;
196
- readonly maxCount?: bigint | Maybe<bigint>;
197
208
  readonly maxExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
198
209
  readonly maxInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
199
210
  readonly maxLength?: bigint | Maybe<bigint>;
200
- readonly minCount?: bigint | Maybe<bigint>;
211
+ readonly message?: string | Maybe<string>;
201
212
  readonly minExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
202
213
  readonly minInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
203
214
  readonly minLength?: bigint | Maybe<bigint>;
204
215
  readonly mutable?: boolean | Maybe<boolean>;
205
- readonly name?: string | Maybe<string>;
206
216
  readonly node?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
207
217
  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">>;
208
- readonly not?: readonly (BlankNode | NamedNode | string | undefined)[];
218
+ readonly not?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
209
219
  readonly or?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
210
- readonly order?: number | Maybe<number>;
211
- readonly path: $PropertyPath;
212
- readonly patterns?: readonly string[];
213
- readonly resolve?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
220
+ readonly pattern?: string | Maybe<string>;
221
+ readonly properties?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
222
+ readonly rdfType?: string | NamedNode | Maybe<NamedNode>;
223
+ readonly severity?: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation"> | Maybe<NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation">>;
214
224
  readonly shaclmateName?: string | Maybe<string>;
215
- readonly uniqueLang?: boolean | Maybe<boolean>;
225
+ readonly subClassOf?: string | NamedNode | readonly (string | NamedNode)[];
226
+ readonly targetClasses?: string | NamedNode | readonly (string | NamedNode)[];
227
+ readonly targetNodes?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
228
+ readonly targetObjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
229
+ readonly targetSubjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
230
+ readonly toRdfTypes?: string | NamedNode | readonly (string | NamedNode)[];
231
+ readonly tsImports?: string | readonly string[];
232
+ readonly types?: string | NamedNode | readonly (string | NamedNode)[];
216
233
  readonly xone?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
217
- }): PropertyShape;
234
+ }): NodeShape;
235
+ const _fromRdfResource: $_FromRdfResourceFunction<NodeShape>;
236
+ const fromRdfResource: $FromRdfResourceFunction<NodeShape>;
237
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<NodeShape, NodeShape.Schema>;
218
238
  type Identifier = BlankNode | NamedNode;
219
239
  namespace Identifier {
220
240
  const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
221
241
  const stringify: typeof NTriplesTerm.stringify;
222
242
  }
223
- const _fromRdfResource: $_FromRdfResourceFunction<PropertyShape>;
224
- const fromRdfResource: $FromRdfResourceFunction<PropertyShape>;
225
- const fromRdfResourceValues: $FromRdfResourceValuesFunction<PropertyShape>;
226
- const fromRdfType: NamedNode<string>;
227
- function isPropertyShape(object: $Object): object is PropertyShape;
243
+ function isNodeShape(object: $Object): object is NodeShape;
228
244
  const schema: {
245
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#NodeShape">;
229
246
  readonly properties: {
230
247
  readonly $identifier: {
231
248
  readonly kind: "Identifier";
@@ -256,6 +273,16 @@ export declare namespace PropertyShape {
256
273
  };
257
274
  };
258
275
  };
276
+ readonly closed: {
277
+ readonly kind: "Shacl";
278
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#closed">;
279
+ readonly type: {
280
+ readonly kind: "Option";
281
+ readonly itemType: {
282
+ readonly kind: "Boolean";
283
+ };
284
+ };
285
+ };
259
286
  readonly comment: {
260
287
  readonly kind: "Shacl";
261
288
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
@@ -286,19 +313,9 @@ export declare namespace PropertyShape {
286
313
  };
287
314
  };
288
315
  };
289
- readonly defaultValue: {
290
- readonly kind: "Shacl";
291
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
292
- readonly type: {
293
- readonly kind: "Option";
294
- readonly itemType: {
295
- readonly kind: "Term";
296
- };
297
- };
298
- };
299
- readonly description: {
316
+ readonly discriminantValue: {
300
317
  readonly kind: "Shacl";
301
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#description">;
318
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
302
319
  readonly type: {
303
320
  readonly kind: "Option";
304
321
  readonly itemType: {
@@ -306,34 +323,33 @@ export declare namespace PropertyShape {
306
323
  };
307
324
  };
308
325
  };
309
- readonly display: {
326
+ readonly extern: {
310
327
  readonly kind: "Shacl";
311
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#display">;
328
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#extern">;
312
329
  readonly type: {
313
- readonly kind: "DefaultValue";
330
+ readonly kind: "Option";
314
331
  readonly itemType: {
315
332
  readonly kind: "Boolean";
316
333
  };
317
- readonly defaultValue: false;
318
334
  };
319
335
  };
320
336
  readonly flags: {
321
337
  readonly kind: "Shacl";
322
338
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
323
339
  readonly type: {
324
- readonly kind: "Set";
340
+ readonly kind: "Option";
325
341
  readonly itemType: {
326
342
  readonly kind: "String";
327
343
  };
328
344
  };
329
345
  };
330
- readonly groups: {
346
+ readonly fromRdfType: {
331
347
  readonly kind: "Shacl";
332
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#group">;
348
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
333
349
  readonly type: {
334
- readonly kind: "Set";
350
+ readonly kind: "Option";
335
351
  readonly itemType: {
336
- readonly kind: "Identifier";
352
+ readonly kind: "Iri";
337
353
  };
338
354
  };
339
355
  };
@@ -344,6 +360,20 @@ export declare namespace PropertyShape {
344
360
  readonly kind: "Set";
345
361
  readonly itemType: {
346
362
  readonly kind: "Term";
363
+ readonly types: readonly ["NamedNode", "Literal"];
364
+ };
365
+ };
366
+ };
367
+ readonly ignoredProperties: {
368
+ readonly kind: "Shacl";
369
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
370
+ readonly type: {
371
+ readonly kind: "Option";
372
+ readonly itemType: {
373
+ readonly kind: "List";
374
+ readonly itemType: {
375
+ readonly kind: "Iri";
376
+ };
347
377
  };
348
378
  };
349
379
  };
@@ -356,6 +386,7 @@ export declare namespace PropertyShape {
356
386
  readonly kind: "List";
357
387
  readonly itemType: {
358
388
  readonly kind: "Term";
389
+ readonly types: readonly ["NamedNode", "Literal"];
359
390
  };
360
391
  };
361
392
  };
@@ -393,16 +424,6 @@ export declare namespace PropertyShape {
393
424
  };
394
425
  };
395
426
  };
396
- readonly maxCount: {
397
- readonly kind: "Shacl";
398
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
399
- readonly type: {
400
- readonly kind: "Option";
401
- readonly itemType: {
402
- readonly kind: "BigInt";
403
- };
404
- };
405
- };
406
427
  readonly maxExclusive: {
407
428
  readonly kind: "Shacl";
408
429
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
@@ -433,13 +454,13 @@ export declare namespace PropertyShape {
433
454
  };
434
455
  };
435
456
  };
436
- readonly minCount: {
457
+ readonly message: {
437
458
  readonly kind: "Shacl";
438
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
459
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
439
460
  readonly type: {
440
461
  readonly kind: "Option";
441
462
  readonly itemType: {
442
- readonly kind: "BigInt";
463
+ readonly kind: "String";
443
464
  };
444
465
  };
445
466
  };
@@ -483,16 +504,6 @@ export declare namespace PropertyShape {
483
504
  };
484
505
  };
485
506
  };
486
- readonly name: {
487
- readonly kind: "Shacl";
488
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#name">;
489
- readonly type: {
490
- readonly kind: "Option";
491
- readonly itemType: {
492
- readonly kind: "String";
493
- };
494
- };
495
- };
496
507
  readonly node: {
497
508
  readonly kind: "Shacl";
498
509
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
@@ -537,38 +548,44 @@ export declare namespace PropertyShape {
537
548
  };
538
549
  };
539
550
  };
540
- readonly order: {
551
+ readonly pattern: {
541
552
  readonly kind: "Shacl";
542
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#order">;
553
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
543
554
  readonly type: {
544
555
  readonly kind: "Option";
545
556
  readonly itemType: {
546
- readonly kind: "Float";
557
+ readonly kind: "String";
547
558
  };
548
559
  };
549
560
  };
550
- readonly path: {
561
+ readonly properties: {
551
562
  readonly kind: "Shacl";
552
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
553
- readonly type: object;
563
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#property">;
564
+ readonly type: {
565
+ readonly kind: "Set";
566
+ readonly itemType: {
567
+ readonly kind: "Identifier";
568
+ };
569
+ };
554
570
  };
555
- readonly patterns: {
571
+ readonly rdfType: {
556
572
  readonly kind: "Shacl";
557
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
573
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
558
574
  readonly type: {
559
- readonly kind: "Set";
575
+ readonly kind: "Option";
560
576
  readonly itemType: {
561
- readonly kind: "String";
577
+ readonly kind: "Iri";
562
578
  };
563
579
  };
564
580
  };
565
- readonly resolve: {
581
+ readonly severity: {
566
582
  readonly kind: "Shacl";
567
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
583
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
568
584
  readonly type: {
569
585
  readonly kind: "Option";
570
586
  readonly itemType: {
571
- readonly kind: "Identifier";
587
+ readonly kind: "Iri";
588
+ readonly in: readonly [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">];
572
589
  };
573
590
  };
574
591
  };
@@ -582,126 +599,136 @@ export declare namespace PropertyShape {
582
599
  };
583
600
  };
584
601
  };
585
- readonly uniqueLang: {
602
+ readonly subClassOf: {
586
603
  readonly kind: "Shacl";
587
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
604
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
588
605
  readonly type: {
589
- readonly kind: "Option";
606
+ readonly kind: "Set";
590
607
  readonly itemType: {
591
- readonly kind: "Boolean";
608
+ readonly kind: "Iri";
592
609
  };
593
610
  };
594
611
  };
595
- readonly xone: {
612
+ readonly targetClasses: {
596
613
  readonly kind: "Shacl";
597
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
614
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
598
615
  readonly type: {
599
- readonly kind: "Option";
616
+ readonly kind: "Set";
600
617
  readonly itemType: {
601
- readonly kind: "List";
602
- readonly itemType: {
603
- readonly kind: "Identifier";
604
- };
618
+ readonly kind: "Iri";
605
619
  };
606
620
  };
607
621
  };
608
- };
609
- };
610
- const _toRdfResource: $_ToRdfResourceFunction<PropertyShape.Identifier, PropertyShape>;
611
- const toRdfResource: $ToRdfResourceFunction<PropertyShape, Identifier>;
612
- function _propertiesToStrings(_propertyShape: PropertyShape): Record<string, string>;
613
- function $toString(_propertyShape: PropertyShape): string;
614
- }
615
- export interface PropertyGroup {
616
- readonly $identifier: () => PropertyGroup.Identifier;
617
- readonly $type: "PropertyGroup";
618
- readonly comment: Maybe<string>;
619
- readonly label: Maybe<string>;
620
- }
621
- export declare namespace PropertyGroup {
622
- function create(parameters?: {
623
- readonly $identifier?: (() => PropertyGroup.Identifier) | BlankNode | NamedNode | string;
624
- readonly comment?: string | Maybe<string>;
625
- readonly label?: string | Maybe<string>;
626
- }): Either<Error, PropertyGroup>;
627
- function createUnsafe(parameters?: {
628
- readonly $identifier?: (() => PropertyGroup.Identifier) | BlankNode | NamedNode | string;
629
- readonly comment?: string | Maybe<string>;
630
- readonly label?: string | Maybe<string>;
631
- }): PropertyGroup;
632
- type Identifier = BlankNode | NamedNode;
633
- namespace Identifier {
634
- const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
635
- const stringify: typeof NTriplesTerm.stringify;
636
- }
637
- const _fromRdfResource: $_FromRdfResourceFunction<PropertyGroup>;
638
- const fromRdfResource: $FromRdfResourceFunction<PropertyGroup>;
639
- const fromRdfResourceValues: $FromRdfResourceValuesFunction<PropertyGroup>;
640
- const fromRdfType: NamedNode<string>;
641
- function isPropertyGroup(object: $Object): object is PropertyGroup;
642
- const schema: {
643
- readonly properties: {
644
- readonly $identifier: {
645
- readonly kind: "Identifier";
622
+ readonly targetNodes: {
623
+ readonly kind: "Shacl";
624
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
646
625
  readonly type: {
647
- readonly kind: "Identifier";
626
+ readonly kind: "Set";
627
+ readonly itemType: {
628
+ readonly kind: "Term";
629
+ readonly types: readonly ["NamedNode", "Literal"];
630
+ };
648
631
  };
649
632
  };
650
- readonly comment: {
633
+ readonly targetObjectsOf: {
651
634
  readonly kind: "Shacl";
652
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
635
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
653
636
  readonly type: {
654
- readonly kind: "Option";
637
+ readonly kind: "Set";
655
638
  readonly itemType: {
656
- readonly kind: "String";
639
+ readonly kind: "Iri";
657
640
  };
658
641
  };
659
642
  };
660
- readonly label: {
643
+ readonly targetSubjectsOf: {
661
644
  readonly kind: "Shacl";
662
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
645
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
663
646
  readonly type: {
664
- readonly kind: "Option";
647
+ readonly kind: "Set";
665
648
  readonly itemType: {
666
- readonly kind: "String";
649
+ readonly kind: "Iri";
667
650
  };
668
651
  };
669
652
  };
670
- };
671
- };
672
- const _toRdfResource: $_ToRdfResourceFunction<PropertyGroup.Identifier, PropertyGroup>;
673
- const toRdfResource: $ToRdfResourceFunction<PropertyGroup, Identifier>;
674
- function _propertiesToStrings(_propertyGroup: PropertyGroup): Record<string, string>;
675
- function $toString(_propertyGroup: PropertyGroup): string;
676
- }
677
- export interface Ontology {
678
- readonly $identifier: () => Ontology.Identifier;
679
- readonly $type: "Ontology";
653
+ readonly toRdfTypes: {
654
+ readonly kind: "Shacl";
655
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
656
+ readonly type: {
657
+ readonly kind: "Set";
658
+ readonly itemType: {
659
+ readonly kind: "Iri";
660
+ };
661
+ };
662
+ };
663
+ readonly tsImports: {
664
+ readonly kind: "Shacl";
665
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
666
+ readonly type: {
667
+ readonly kind: "Set";
668
+ readonly itemType: {
669
+ readonly kind: "String";
670
+ };
671
+ };
672
+ };
673
+ readonly types: {
674
+ readonly kind: "Shacl";
675
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
676
+ readonly type: {
677
+ readonly kind: "Set";
678
+ readonly itemType: {
679
+ readonly kind: "Iri";
680
+ };
681
+ };
682
+ };
683
+ readonly xone: {
684
+ readonly kind: "Shacl";
685
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
686
+ readonly type: {
687
+ readonly kind: "Option";
688
+ readonly itemType: {
689
+ readonly kind: "List";
690
+ readonly itemType: {
691
+ readonly kind: "Identifier";
692
+ };
693
+ };
694
+ };
695
+ };
696
+ };
697
+ };
698
+ type Schema = typeof schema;
699
+ const _toRdfResource: $_ToRdfResourceFunction<NodeShape.Identifier, NodeShape>;
700
+ const toRdfResource: $ToRdfResourceFunction<NodeShape, Identifier>;
701
+ const $toString: (_nodeShape: NodeShape) => string;
702
+ const toStringRecord: (_nodeShape: NodeShape) => Record<string, string>;
703
+ }
704
+ export type Ontology = {
705
+ readonly $identifier: () => Ontology.Identifier;
706
+ readonly $type: "Ontology";
680
707
  readonly comment: Maybe<string>;
681
708
  readonly label: Maybe<string>;
682
- }
709
+ };
683
710
  export declare namespace Ontology {
684
- function create(parameters?: {
711
+ const create: (parameters?: {
685
712
  readonly $identifier?: (() => Ontology.Identifier) | BlankNode | NamedNode | string;
686
713
  readonly comment?: string | Maybe<string>;
687
714
  readonly label?: string | Maybe<string>;
688
- }): Either<Error, Ontology>;
715
+ }) => Either<Error, Ontology>;
689
716
  function createUnsafe(parameters?: {
690
717
  readonly $identifier?: (() => Ontology.Identifier) | BlankNode | NamedNode | string;
691
718
  readonly comment?: string | Maybe<string>;
692
719
  readonly label?: string | Maybe<string>;
693
720
  }): Ontology;
721
+ const _fromRdfResource: $_FromRdfResourceFunction<Ontology>;
722
+ const fromRdfResource: $FromRdfResourceFunction<Ontology>;
723
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<Ontology, Ontology.Schema>;
694
724
  type Identifier = BlankNode | NamedNode;
695
725
  namespace Identifier {
696
726
  const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
697
727
  const stringify: typeof NTriplesTerm.stringify;
698
728
  }
699
- const _fromRdfResource: $_FromRdfResourceFunction<Ontology>;
700
- const fromRdfResource: $FromRdfResourceFunction<Ontology>;
701
- const fromRdfResourceValues: $FromRdfResourceValuesFunction<Ontology>;
702
- const fromRdfType: NamedNode<string>;
703
729
  function isOntology(object: $Object): object is Ontology;
704
730
  const schema: {
731
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2002/07/owl#Ontology">;
705
732
  readonly properties: {
706
733
  readonly $identifier: {
707
734
  readonly kind: "Identifier";
@@ -731,147 +758,256 @@ export declare namespace Ontology {
731
758
  };
732
759
  };
733
760
  };
761
+ type Schema = typeof schema;
734
762
  const _toRdfResource: $_ToRdfResourceFunction<Ontology.Identifier, Ontology>;
735
763
  const toRdfResource: $ToRdfResourceFunction<Ontology, Identifier>;
736
- function _propertiesToStrings(_ontology: Ontology): Record<string, string>;
737
- function $toString(_ontology: Ontology): string;
764
+ const $toString: (_ontology: Ontology) => string;
765
+ const toStringRecord: (_ontology: Ontology) => Record<string, string>;
738
766
  }
739
- export interface NodeShape {
740
- readonly $identifier: () => NodeShape.Identifier;
741
- readonly $type: "NodeShape";
767
+ export type PropertyGroup = {
768
+ readonly $identifier: () => PropertyGroup.Identifier;
769
+ readonly $type: "PropertyGroup";
770
+ readonly comment: Maybe<string>;
771
+ readonly label: Maybe<string>;
772
+ };
773
+ export declare namespace PropertyGroup {
774
+ const create: (parameters?: {
775
+ readonly $identifier?: (() => PropertyGroup.Identifier) | BlankNode | NamedNode | string;
776
+ readonly comment?: string | Maybe<string>;
777
+ readonly label?: string | Maybe<string>;
778
+ }) => Either<Error, PropertyGroup>;
779
+ function createUnsafe(parameters?: {
780
+ readonly $identifier?: (() => PropertyGroup.Identifier) | BlankNode | NamedNode | string;
781
+ readonly comment?: string | Maybe<string>;
782
+ readonly label?: string | Maybe<string>;
783
+ }): PropertyGroup;
784
+ const _fromRdfResource: $_FromRdfResourceFunction<PropertyGroup>;
785
+ const fromRdfResource: $FromRdfResourceFunction<PropertyGroup>;
786
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<PropertyGroup, PropertyGroup.Schema>;
787
+ type Identifier = BlankNode | NamedNode;
788
+ namespace Identifier {
789
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
790
+ const stringify: typeof NTriplesTerm.stringify;
791
+ }
792
+ function isPropertyGroup(object: $Object): object is PropertyGroup;
793
+ const schema: {
794
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyGroup">;
795
+ readonly properties: {
796
+ readonly $identifier: {
797
+ readonly kind: "Identifier";
798
+ readonly type: {
799
+ readonly kind: "Identifier";
800
+ };
801
+ };
802
+ readonly comment: {
803
+ readonly kind: "Shacl";
804
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
805
+ readonly type: {
806
+ readonly kind: "Option";
807
+ readonly itemType: {
808
+ readonly kind: "String";
809
+ };
810
+ };
811
+ };
812
+ readonly label: {
813
+ readonly kind: "Shacl";
814
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
815
+ readonly type: {
816
+ readonly kind: "Option";
817
+ readonly itemType: {
818
+ readonly kind: "String";
819
+ };
820
+ };
821
+ };
822
+ };
823
+ };
824
+ type Schema = typeof schema;
825
+ const _toRdfResource: $_ToRdfResourceFunction<PropertyGroup.Identifier, PropertyGroup>;
826
+ const toRdfResource: $ToRdfResourceFunction<PropertyGroup, Identifier>;
827
+ const $toString: (_propertyGroup: PropertyGroup) => string;
828
+ const toStringRecord: (_propertyGroup: PropertyGroup) => Record<string, string>;
829
+ }
830
+ export type PropertyShape = {
831
+ readonly $identifier: () => PropertyShape.Identifier;
832
+ readonly $type: "PropertyShape";
742
833
  readonly and: Maybe<readonly (BlankNode | NamedNode)[]>;
743
834
  readonly classes: readonly NamedNode[];
744
- readonly closed: Maybe<boolean>;
745
835
  readonly comment: Maybe<string>;
746
836
  readonly datatype: Maybe<NamedNode>;
747
837
  readonly deactivated: Maybe<boolean>;
748
- readonly discriminantValue: Maybe<string>;
749
- readonly extern: Maybe<boolean>;
750
- readonly flags: readonly string[];
751
- readonly fromRdfType: Maybe<NamedNode>;
838
+ readonly defaultValue: Maybe<NamedNode | Literal>;
839
+ readonly description: Maybe<string>;
840
+ readonly disjoint: readonly NamedNode[];
841
+ /**
842
+ * Whether to include this property in a toString()-type display, defaults to false
843
+ */
844
+ readonly display: boolean;
845
+ readonly equals: readonly NamedNode[];
846
+ readonly flags: Maybe<string>;
847
+ readonly groups: readonly (BlankNode | NamedNode)[];
752
848
  readonly hasValues: readonly (NamedNode | Literal)[];
753
- readonly ignoredProperties: Maybe<readonly NamedNode[]>;
849
+ /**
850
+ * Whether to ignore this property in code generation, defaults to false
851
+ */
852
+ readonly ignore: boolean;
754
853
  readonly in_: Maybe<readonly (NamedNode | Literal)[]>;
755
854
  readonly isDefinedBy: Maybe<BlankNode | NamedNode>;
756
855
  readonly label: Maybe<string>;
757
856
  readonly languageIn: Maybe<readonly string[]>;
857
+ readonly lessThan: readonly NamedNode[];
858
+ readonly lessThanOrEquals: readonly NamedNode[];
758
859
  readonly maxCount: Maybe<bigint>;
759
860
  readonly maxExclusive: Maybe<Literal>;
760
861
  readonly maxInclusive: Maybe<Literal>;
761
862
  readonly maxLength: Maybe<bigint>;
863
+ readonly message: Maybe<string>;
762
864
  readonly minCount: Maybe<bigint>;
763
865
  readonly minExclusive: Maybe<Literal>;
764
866
  readonly minInclusive: Maybe<Literal>;
765
867
  readonly minLength: Maybe<bigint>;
766
868
  readonly mutable: Maybe<boolean>;
869
+ readonly name: Maybe<string>;
767
870
  readonly node: Maybe<BlankNode | NamedNode>;
768
871
  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">>;
769
872
  readonly not: readonly (BlankNode | NamedNode)[];
770
873
  readonly or: Maybe<readonly (BlankNode | NamedNode)[]>;
771
- readonly patterns: readonly string[];
772
- readonly properties: readonly (BlankNode | NamedNode)[];
773
- readonly rdfType: Maybe<NamedNode>;
874
+ readonly order: Maybe<number>;
875
+ readonly path: $PropertyPath;
876
+ readonly pattern: Maybe<string>;
877
+ readonly qualifiedMaxCount: Maybe<bigint>;
878
+ readonly qualifiedMinCount: Maybe<bigint>;
879
+ readonly qualifiedValueShape: Maybe<BlankNode | NamedNode>;
880
+ readonly qualifiedValueShapesDisjoint: Maybe<boolean>;
881
+ readonly resolve: Maybe<BlankNode | NamedNode>;
882
+ readonly severity: Maybe<NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation">>;
774
883
  readonly shaclmateName: Maybe<string>;
775
- readonly subClassOf: readonly NamedNode[];
776
- readonly toRdfTypes: readonly NamedNode[];
777
- readonly tsImports: readonly string[];
778
- readonly types: readonly NamedNode[];
884
+ readonly targetClasses: readonly NamedNode[];
885
+ readonly targetNodes: readonly (NamedNode | Literal)[];
886
+ readonly targetObjectsOf: readonly NamedNode[];
887
+ readonly targetSubjectsOf: readonly NamedNode[];
888
+ readonly uniqueLang: Maybe<boolean>;
779
889
  readonly xone: Maybe<readonly (BlankNode | NamedNode)[]>;
780
- }
781
- export declare namespace NodeShape {
782
- function create(parameters?: {
783
- readonly $identifier?: (() => NodeShape.Identifier) | BlankNode | NamedNode | string;
890
+ };
891
+ export declare namespace PropertyShape {
892
+ const create: (parameters: {
893
+ readonly $identifier?: (() => PropertyShape.Identifier) | BlankNode | NamedNode | string;
784
894
  readonly and?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
785
- readonly classes?: readonly (string | NamedNode)[];
786
- readonly closed?: boolean | Maybe<boolean>;
895
+ readonly classes?: string | NamedNode | readonly (string | NamedNode)[];
787
896
  readonly comment?: string | Maybe<string>;
788
897
  readonly datatype?: string | NamedNode | Maybe<NamedNode>;
789
898
  readonly deactivated?: boolean | Maybe<boolean>;
790
- readonly discriminantValue?: string | Maybe<string>;
791
- readonly extern?: boolean | Maybe<boolean>;
792
- readonly flags?: readonly string[];
793
- readonly fromRdfType?: string | NamedNode | Maybe<NamedNode>;
794
- readonly hasValues?: readonly (NamedNode | Literal)[];
795
- readonly ignoredProperties?: readonly (string | NamedNode)[] | Maybe<readonly NamedNode[]>;
899
+ readonly defaultValue?: (NamedNode | Literal) | Maybe<NamedNode | Literal>;
900
+ readonly description?: string | Maybe<string>;
901
+ readonly disjoint?: string | NamedNode | readonly (string | NamedNode)[];
902
+ readonly display?: boolean;
903
+ readonly equals?: string | NamedNode | readonly (string | NamedNode)[];
904
+ readonly flags?: string | Maybe<string>;
905
+ readonly groups?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
906
+ readonly hasValues?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
907
+ readonly ignore?: boolean;
796
908
  readonly in_?: readonly (NamedNode | Literal)[] | Maybe<readonly (NamedNode | Literal)[]>;
797
909
  readonly isDefinedBy?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
798
910
  readonly label?: string | Maybe<string>;
799
911
  readonly languageIn?: readonly string[] | Maybe<readonly string[]>;
912
+ readonly lessThan?: string | NamedNode | readonly (string | NamedNode)[];
913
+ readonly lessThanOrEquals?: string | NamedNode | readonly (string | NamedNode)[];
800
914
  readonly maxCount?: bigint | Maybe<bigint>;
801
915
  readonly maxExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
802
916
  readonly maxInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
803
917
  readonly maxLength?: bigint | Maybe<bigint>;
918
+ readonly message?: string | Maybe<string>;
804
919
  readonly minCount?: bigint | Maybe<bigint>;
805
920
  readonly minExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
806
921
  readonly minInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
807
922
  readonly minLength?: bigint | Maybe<bigint>;
808
923
  readonly mutable?: boolean | Maybe<boolean>;
924
+ readonly name?: string | Maybe<string>;
809
925
  readonly node?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
810
926
  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">>;
811
- readonly not?: readonly (BlankNode | NamedNode | string | undefined)[];
927
+ readonly not?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
812
928
  readonly or?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
813
- readonly patterns?: readonly string[];
814
- readonly properties?: readonly (BlankNode | NamedNode | string | undefined)[];
815
- readonly rdfType?: string | NamedNode | Maybe<NamedNode>;
929
+ readonly order?: number | Maybe<number>;
930
+ readonly path: $PropertyPath;
931
+ readonly pattern?: string | Maybe<string>;
932
+ readonly qualifiedMaxCount?: bigint | Maybe<bigint>;
933
+ readonly qualifiedMinCount?: bigint | Maybe<bigint>;
934
+ readonly qualifiedValueShape?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
935
+ readonly qualifiedValueShapesDisjoint?: boolean | Maybe<boolean>;
936
+ readonly resolve?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
937
+ readonly severity?: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation"> | Maybe<NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation">>;
816
938
  readonly shaclmateName?: string | Maybe<string>;
817
- readonly subClassOf?: readonly (string | NamedNode)[];
818
- readonly toRdfTypes?: readonly (string | NamedNode)[];
819
- readonly tsImports?: readonly string[];
820
- readonly types?: readonly (string | NamedNode)[];
939
+ readonly targetClasses?: string | NamedNode | readonly (string | NamedNode)[];
940
+ readonly targetNodes?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
941
+ readonly targetObjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
942
+ readonly targetSubjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
943
+ readonly uniqueLang?: boolean | Maybe<boolean>;
821
944
  readonly xone?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
822
- }): Either<Error, NodeShape>;
823
- function createUnsafe(parameters?: {
824
- readonly $identifier?: (() => NodeShape.Identifier) | BlankNode | NamedNode | string;
945
+ }) => Either<Error, PropertyShape>;
946
+ function createUnsafe(parameters: {
947
+ readonly $identifier?: (() => PropertyShape.Identifier) | BlankNode | NamedNode | string;
825
948
  readonly and?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
826
- readonly classes?: readonly (string | NamedNode)[];
827
- readonly closed?: boolean | Maybe<boolean>;
949
+ readonly classes?: string | NamedNode | readonly (string | NamedNode)[];
828
950
  readonly comment?: string | Maybe<string>;
829
951
  readonly datatype?: string | NamedNode | Maybe<NamedNode>;
830
952
  readonly deactivated?: boolean | Maybe<boolean>;
831
- readonly discriminantValue?: string | Maybe<string>;
832
- readonly extern?: boolean | Maybe<boolean>;
833
- readonly flags?: readonly string[];
834
- readonly fromRdfType?: string | NamedNode | Maybe<NamedNode>;
835
- readonly hasValues?: readonly (NamedNode | Literal)[];
836
- readonly ignoredProperties?: readonly (string | NamedNode)[] | Maybe<readonly NamedNode[]>;
953
+ readonly defaultValue?: (NamedNode | Literal) | Maybe<NamedNode | Literal>;
954
+ readonly description?: string | Maybe<string>;
955
+ readonly disjoint?: string | NamedNode | readonly (string | NamedNode)[];
956
+ readonly display?: boolean;
957
+ readonly equals?: string | NamedNode | readonly (string | NamedNode)[];
958
+ readonly flags?: string | Maybe<string>;
959
+ readonly groups?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
960
+ readonly hasValues?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
961
+ readonly ignore?: boolean;
837
962
  readonly in_?: readonly (NamedNode | Literal)[] | Maybe<readonly (NamedNode | Literal)[]>;
838
963
  readonly isDefinedBy?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
839
964
  readonly label?: string | Maybe<string>;
840
965
  readonly languageIn?: readonly string[] | Maybe<readonly string[]>;
966
+ readonly lessThan?: string | NamedNode | readonly (string | NamedNode)[];
967
+ readonly lessThanOrEquals?: string | NamedNode | readonly (string | NamedNode)[];
841
968
  readonly maxCount?: bigint | Maybe<bigint>;
842
969
  readonly maxExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
843
970
  readonly maxInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
844
971
  readonly maxLength?: bigint | Maybe<bigint>;
972
+ readonly message?: string | Maybe<string>;
845
973
  readonly minCount?: bigint | Maybe<bigint>;
846
974
  readonly minExclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
847
975
  readonly minInclusive?: bigint | boolean | number | string | Date | Literal | Maybe<Literal>;
848
976
  readonly minLength?: bigint | Maybe<bigint>;
849
977
  readonly mutable?: boolean | Maybe<boolean>;
978
+ readonly name?: string | Maybe<string>;
850
979
  readonly node?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
851
980
  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">>;
852
- readonly not?: readonly (BlankNode | NamedNode | string | undefined)[];
981
+ readonly not?: BlankNode | NamedNode | string | readonly (BlankNode | NamedNode | string | undefined)[];
853
982
  readonly or?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
854
- readonly patterns?: readonly string[];
855
- readonly properties?: readonly (BlankNode | NamedNode | string | undefined)[];
856
- readonly rdfType?: string | NamedNode | Maybe<NamedNode>;
983
+ readonly order?: number | Maybe<number>;
984
+ readonly path: $PropertyPath;
985
+ readonly pattern?: string | Maybe<string>;
986
+ readonly qualifiedMaxCount?: bigint | Maybe<bigint>;
987
+ readonly qualifiedMinCount?: bigint | Maybe<bigint>;
988
+ readonly qualifiedValueShape?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
989
+ readonly qualifiedValueShapesDisjoint?: boolean | Maybe<boolean>;
990
+ readonly resolve?: BlankNode | NamedNode | string | Maybe<BlankNode | NamedNode>;
991
+ readonly severity?: ("http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation") | NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation"> | Maybe<NamedNode<"http://www.w3.org/ns/shacl#Info" | "http://www.w3.org/ns/shacl#Warning" | "http://www.w3.org/ns/shacl#Violation">>;
857
992
  readonly shaclmateName?: string | Maybe<string>;
858
- readonly subClassOf?: readonly (string | NamedNode)[];
859
- readonly toRdfTypes?: readonly (string | NamedNode)[];
860
- readonly tsImports?: readonly string[];
861
- readonly types?: readonly (string | NamedNode)[];
993
+ readonly targetClasses?: string | NamedNode | readonly (string | NamedNode)[];
994
+ readonly targetNodes?: (NamedNode | Literal) | readonly (NamedNode | Literal)[];
995
+ readonly targetObjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
996
+ readonly targetSubjectsOf?: string | NamedNode | readonly (string | NamedNode)[];
997
+ readonly uniqueLang?: boolean | Maybe<boolean>;
862
998
  readonly xone?: readonly (BlankNode | NamedNode | string | undefined)[] | Maybe<readonly (BlankNode | NamedNode)[]>;
863
- }): NodeShape;
999
+ }): PropertyShape;
1000
+ const _fromRdfResource: $_FromRdfResourceFunction<PropertyShape>;
1001
+ const fromRdfResource: $FromRdfResourceFunction<PropertyShape>;
1002
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<PropertyShape, PropertyShape.Schema>;
864
1003
  type Identifier = BlankNode | NamedNode;
865
1004
  namespace Identifier {
866
1005
  const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
867
1006
  const stringify: typeof NTriplesTerm.stringify;
868
1007
  }
869
- const _fromRdfResource: $_FromRdfResourceFunction<NodeShape>;
870
- const fromRdfResource: $FromRdfResourceFunction<NodeShape>;
871
- const fromRdfResourceValues: $FromRdfResourceValuesFunction<NodeShape>;
872
- const fromRdfType: NamedNode<string>;
873
- function isNodeShape(object: $Object): object is NodeShape;
1008
+ function isPropertyShape(object: $Object): object is PropertyShape;
874
1009
  const schema: {
1010
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyShape">;
875
1011
  readonly properties: {
876
1012
  readonly $identifier: {
877
1013
  readonly kind: "Identifier";
@@ -902,16 +1038,6 @@ export declare namespace NodeShape {
902
1038
  };
903
1039
  };
904
1040
  };
905
- readonly closed: {
906
- readonly kind: "Shacl";
907
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#closed">;
908
- readonly type: {
909
- readonly kind: "Option";
910
- readonly itemType: {
911
- readonly kind: "Boolean";
912
- };
913
- };
914
- };
915
1041
  readonly comment: {
916
1042
  readonly kind: "Shacl";
917
1043
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
@@ -942,43 +1068,75 @@ export declare namespace NodeShape {
942
1068
  };
943
1069
  };
944
1070
  };
945
- readonly discriminantValue: {
1071
+ readonly defaultValue: {
946
1072
  readonly kind: "Shacl";
947
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
1073
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
948
1074
  readonly type: {
949
1075
  readonly kind: "Option";
950
1076
  readonly itemType: {
951
- readonly kind: "String";
1077
+ readonly kind: "Term";
1078
+ readonly types: readonly ["NamedNode", "Literal"];
952
1079
  };
953
1080
  };
954
1081
  };
955
- readonly extern: {
1082
+ readonly description: {
956
1083
  readonly kind: "Shacl";
957
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#extern">;
1084
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#description">;
958
1085
  readonly type: {
959
1086
  readonly kind: "Option";
1087
+ readonly itemType: {
1088
+ readonly kind: "String";
1089
+ };
1090
+ };
1091
+ };
1092
+ readonly disjoint: {
1093
+ readonly kind: "Shacl";
1094
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#disjoint">;
1095
+ readonly type: {
1096
+ readonly kind: "Set";
1097
+ readonly itemType: {
1098
+ readonly kind: "Iri";
1099
+ };
1100
+ };
1101
+ };
1102
+ readonly display: {
1103
+ readonly kind: "Shacl";
1104
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#display">;
1105
+ readonly type: {
1106
+ readonly kind: "DefaultValue";
960
1107
  readonly itemType: {
961
1108
  readonly kind: "Boolean";
962
1109
  };
1110
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
1111
+ };
1112
+ };
1113
+ readonly equals: {
1114
+ readonly kind: "Shacl";
1115
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#equals">;
1116
+ readonly type: {
1117
+ readonly kind: "Set";
1118
+ readonly itemType: {
1119
+ readonly kind: "Iri";
1120
+ };
963
1121
  };
964
1122
  };
965
1123
  readonly flags: {
966
1124
  readonly kind: "Shacl";
967
1125
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
968
1126
  readonly type: {
969
- readonly kind: "Set";
1127
+ readonly kind: "Option";
970
1128
  readonly itemType: {
971
1129
  readonly kind: "String";
972
1130
  };
973
1131
  };
974
1132
  };
975
- readonly fromRdfType: {
1133
+ readonly groups: {
976
1134
  readonly kind: "Shacl";
977
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
1135
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#group">;
978
1136
  readonly type: {
979
- readonly kind: "Option";
1137
+ readonly kind: "Set";
980
1138
  readonly itemType: {
981
- readonly kind: "Iri";
1139
+ readonly kind: "Identifier";
982
1140
  };
983
1141
  };
984
1142
  };
@@ -989,20 +1147,19 @@ export declare namespace NodeShape {
989
1147
  readonly kind: "Set";
990
1148
  readonly itemType: {
991
1149
  readonly kind: "Term";
1150
+ readonly types: readonly ["NamedNode", "Literal"];
992
1151
  };
993
1152
  };
994
1153
  };
995
- readonly ignoredProperties: {
1154
+ readonly ignore: {
996
1155
  readonly kind: "Shacl";
997
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
1156
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
998
1157
  readonly type: {
999
- readonly kind: "Option";
1158
+ readonly kind: "DefaultValue";
1000
1159
  readonly itemType: {
1001
- readonly kind: "List";
1002
- readonly itemType: {
1003
- readonly kind: "Iri";
1004
- };
1160
+ readonly kind: "Boolean";
1005
1161
  };
1162
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
1006
1163
  };
1007
1164
  };
1008
1165
  readonly in_: {
@@ -1014,6 +1171,7 @@ export declare namespace NodeShape {
1014
1171
  readonly kind: "List";
1015
1172
  readonly itemType: {
1016
1173
  readonly kind: "Term";
1174
+ readonly types: readonly ["NamedNode", "Literal"];
1017
1175
  };
1018
1176
  };
1019
1177
  };
@@ -1051,6 +1209,26 @@ export declare namespace NodeShape {
1051
1209
  };
1052
1210
  };
1053
1211
  };
1212
+ readonly lessThan: {
1213
+ readonly kind: "Shacl";
1214
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThan">;
1215
+ readonly type: {
1216
+ readonly kind: "Set";
1217
+ readonly itemType: {
1218
+ readonly kind: "Iri";
1219
+ };
1220
+ };
1221
+ };
1222
+ readonly lessThanOrEquals: {
1223
+ readonly kind: "Shacl";
1224
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThanOrEquals">;
1225
+ readonly type: {
1226
+ readonly kind: "Set";
1227
+ readonly itemType: {
1228
+ readonly kind: "Iri";
1229
+ };
1230
+ };
1231
+ };
1054
1232
  readonly maxCount: {
1055
1233
  readonly kind: "Shacl";
1056
1234
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -1091,6 +1269,16 @@ export declare namespace NodeShape {
1091
1269
  };
1092
1270
  };
1093
1271
  };
1272
+ readonly message: {
1273
+ readonly kind: "Shacl";
1274
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
1275
+ readonly type: {
1276
+ readonly kind: "Option";
1277
+ readonly itemType: {
1278
+ readonly kind: "String";
1279
+ };
1280
+ };
1281
+ };
1094
1282
  readonly minCount: {
1095
1283
  readonly kind: "Shacl";
1096
1284
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -1133,85 +1321,151 @@ export declare namespace NodeShape {
1133
1321
  };
1134
1322
  readonly mutable: {
1135
1323
  readonly kind: "Shacl";
1136
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
1324
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
1325
+ readonly type: {
1326
+ readonly kind: "Option";
1327
+ readonly itemType: {
1328
+ readonly kind: "Boolean";
1329
+ };
1330
+ };
1331
+ };
1332
+ readonly name: {
1333
+ readonly kind: "Shacl";
1334
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#name">;
1335
+ readonly type: {
1336
+ readonly kind: "Option";
1337
+ readonly itemType: {
1338
+ readonly kind: "String";
1339
+ };
1340
+ };
1341
+ };
1342
+ readonly node: {
1343
+ readonly kind: "Shacl";
1344
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
1345
+ readonly type: {
1346
+ readonly kind: "Option";
1347
+ readonly itemType: {
1348
+ readonly kind: "Identifier";
1349
+ };
1350
+ };
1351
+ };
1352
+ readonly nodeKind: {
1353
+ readonly kind: "Shacl";
1354
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
1355
+ readonly type: {
1356
+ readonly kind: "Option";
1357
+ readonly itemType: {
1358
+ readonly kind: "Iri";
1359
+ 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">];
1360
+ };
1361
+ };
1362
+ };
1363
+ readonly not: {
1364
+ readonly kind: "Shacl";
1365
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
1366
+ readonly type: {
1367
+ readonly kind: "Set";
1368
+ readonly itemType: {
1369
+ readonly kind: "Identifier";
1370
+ };
1371
+ };
1372
+ };
1373
+ readonly or: {
1374
+ readonly kind: "Shacl";
1375
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
1376
+ readonly type: {
1377
+ readonly kind: "Option";
1378
+ readonly itemType: {
1379
+ readonly kind: "List";
1380
+ readonly itemType: {
1381
+ readonly kind: "Identifier";
1382
+ };
1383
+ };
1384
+ };
1385
+ };
1386
+ readonly order: {
1387
+ readonly kind: "Shacl";
1388
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#order">;
1137
1389
  readonly type: {
1138
1390
  readonly kind: "Option";
1139
1391
  readonly itemType: {
1140
- readonly kind: "Boolean";
1392
+ readonly kind: "Float";
1141
1393
  };
1142
1394
  };
1143
1395
  };
1144
- readonly node: {
1396
+ readonly path: {
1145
1397
  readonly kind: "Shacl";
1146
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
1398
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
1399
+ readonly type: object;
1400
+ };
1401
+ readonly pattern: {
1402
+ readonly kind: "Shacl";
1403
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
1147
1404
  readonly type: {
1148
1405
  readonly kind: "Option";
1149
1406
  readonly itemType: {
1150
- readonly kind: "Identifier";
1407
+ readonly kind: "String";
1151
1408
  };
1152
1409
  };
1153
1410
  };
1154
- readonly nodeKind: {
1411
+ readonly qualifiedMaxCount: {
1155
1412
  readonly kind: "Shacl";
1156
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
1413
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMaxCount">;
1157
1414
  readonly type: {
1158
1415
  readonly kind: "Option";
1159
1416
  readonly itemType: {
1160
- readonly kind: "Iri";
1161
- 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">];
1417
+ readonly kind: "BigInt";
1162
1418
  };
1163
1419
  };
1164
1420
  };
1165
- readonly not: {
1421
+ readonly qualifiedMinCount: {
1166
1422
  readonly kind: "Shacl";
1167
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
1423
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMinCount">;
1168
1424
  readonly type: {
1169
- readonly kind: "Set";
1425
+ readonly kind: "Option";
1170
1426
  readonly itemType: {
1171
- readonly kind: "Identifier";
1427
+ readonly kind: "BigInt";
1172
1428
  };
1173
1429
  };
1174
1430
  };
1175
- readonly or: {
1431
+ readonly qualifiedValueShape: {
1176
1432
  readonly kind: "Shacl";
1177
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
1433
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShape">;
1178
1434
  readonly type: {
1179
1435
  readonly kind: "Option";
1180
1436
  readonly itemType: {
1181
- readonly kind: "List";
1182
- readonly itemType: {
1183
- readonly kind: "Identifier";
1184
- };
1437
+ readonly kind: "Identifier";
1185
1438
  };
1186
1439
  };
1187
1440
  };
1188
- readonly patterns: {
1441
+ readonly qualifiedValueShapesDisjoint: {
1189
1442
  readonly kind: "Shacl";
1190
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
1443
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint">;
1191
1444
  readonly type: {
1192
- readonly kind: "Set";
1445
+ readonly kind: "Option";
1193
1446
  readonly itemType: {
1194
- readonly kind: "String";
1447
+ readonly kind: "Boolean";
1195
1448
  };
1196
1449
  };
1197
1450
  };
1198
- readonly properties: {
1451
+ readonly resolve: {
1199
1452
  readonly kind: "Shacl";
1200
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#property">;
1453
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
1201
1454
  readonly type: {
1202
- readonly kind: "Set";
1455
+ readonly kind: "Option";
1203
1456
  readonly itemType: {
1204
1457
  readonly kind: "Identifier";
1205
1458
  };
1206
1459
  };
1207
1460
  };
1208
- readonly rdfType: {
1461
+ readonly severity: {
1209
1462
  readonly kind: "Shacl";
1210
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
1463
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
1211
1464
  readonly type: {
1212
1465
  readonly kind: "Option";
1213
1466
  readonly itemType: {
1214
1467
  readonly kind: "Iri";
1468
+ readonly in: readonly [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">];
1215
1469
  };
1216
1470
  };
1217
1471
  };
@@ -1225,9 +1479,9 @@ export declare namespace NodeShape {
1225
1479
  };
1226
1480
  };
1227
1481
  };
1228
- readonly subClassOf: {
1482
+ readonly targetClasses: {
1229
1483
  readonly kind: "Shacl";
1230
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
1484
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
1231
1485
  readonly type: {
1232
1486
  readonly kind: "Set";
1233
1487
  readonly itemType: {
@@ -1235,29 +1489,30 @@ export declare namespace NodeShape {
1235
1489
  };
1236
1490
  };
1237
1491
  };
1238
- readonly toRdfTypes: {
1492
+ readonly targetNodes: {
1239
1493
  readonly kind: "Shacl";
1240
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
1494
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
1241
1495
  readonly type: {
1242
1496
  readonly kind: "Set";
1243
1497
  readonly itemType: {
1244
- readonly kind: "Iri";
1498
+ readonly kind: "Term";
1499
+ readonly types: readonly ["NamedNode", "Literal"];
1245
1500
  };
1246
1501
  };
1247
1502
  };
1248
- readonly tsImports: {
1503
+ readonly targetObjectsOf: {
1249
1504
  readonly kind: "Shacl";
1250
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
1505
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
1251
1506
  readonly type: {
1252
1507
  readonly kind: "Set";
1253
1508
  readonly itemType: {
1254
- readonly kind: "String";
1509
+ readonly kind: "Iri";
1255
1510
  };
1256
1511
  };
1257
1512
  };
1258
- readonly types: {
1513
+ readonly targetSubjectsOf: {
1259
1514
  readonly kind: "Shacl";
1260
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
1515
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
1261
1516
  readonly type: {
1262
1517
  readonly kind: "Set";
1263
1518
  readonly itemType: {
@@ -1265,6 +1520,16 @@ export declare namespace NodeShape {
1265
1520
  };
1266
1521
  };
1267
1522
  };
1523
+ readonly uniqueLang: {
1524
+ readonly kind: "Shacl";
1525
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
1526
+ readonly type: {
1527
+ readonly kind: "Option";
1528
+ readonly itemType: {
1529
+ readonly kind: "Boolean";
1530
+ };
1531
+ };
1532
+ };
1268
1533
  readonly xone: {
1269
1534
  readonly kind: "Shacl";
1270
1535
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
@@ -1280,16 +1545,17 @@ export declare namespace NodeShape {
1280
1545
  };
1281
1546
  };
1282
1547
  };
1283
- const _toRdfResource: $_ToRdfResourceFunction<NodeShape.Identifier, NodeShape>;
1284
- const toRdfResource: $ToRdfResourceFunction<NodeShape, Identifier>;
1285
- function _propertiesToStrings(_nodeShape: NodeShape): Record<string, string>;
1286
- function $toString(_nodeShape: NodeShape): string;
1548
+ type Schema = typeof schema;
1549
+ const _toRdfResource: $_ToRdfResourceFunction<PropertyShape.Identifier, PropertyShape>;
1550
+ const toRdfResource: $ToRdfResourceFunction<PropertyShape, Identifier>;
1551
+ const $toString: (_propertyShape: PropertyShape) => string;
1552
+ const toStringRecord: (_propertyShape: PropertyShape) => Record<string, string>;
1287
1553
  }
1288
1554
  export type Shape = NodeShape | PropertyShape;
1289
1555
  export declare namespace Shape {
1290
1556
  const $toString: (value: Shape) => string;
1291
1557
  const fromRdfResource: $FromRdfResourceFunction<Shape>;
1292
- const fromRdfResourceValues: $FromRdfResourceValuesFunction<Shape>;
1558
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<Shape, typeof Shape.schema>;
1293
1559
  type Identifier = BlankNode | NamedNode;
1294
1560
  namespace Identifier {
1295
1561
  const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
@@ -1302,6 +1568,7 @@ export declare namespace Shape {
1302
1568
  readonly NodeShape: {
1303
1569
  readonly discriminantValues: readonly ["NodeShape"];
1304
1570
  readonly type: {
1571
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#NodeShape">;
1305
1572
  readonly properties: {
1306
1573
  readonly $identifier: {
1307
1574
  readonly kind: "Identifier";
@@ -1396,7 +1663,7 @@ export declare namespace Shape {
1396
1663
  readonly kind: "Shacl";
1397
1664
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
1398
1665
  readonly type: {
1399
- readonly kind: "Set";
1666
+ readonly kind: "Option";
1400
1667
  readonly itemType: {
1401
1668
  readonly kind: "String";
1402
1669
  };
@@ -1419,6 +1686,7 @@ export declare namespace Shape {
1419
1686
  readonly kind: "Set";
1420
1687
  readonly itemType: {
1421
1688
  readonly kind: "Term";
1689
+ readonly types: readonly ["NamedNode", "Literal"];
1422
1690
  };
1423
1691
  };
1424
1692
  };
@@ -1444,6 +1712,7 @@ export declare namespace Shape {
1444
1712
  readonly kind: "List";
1445
1713
  readonly itemType: {
1446
1714
  readonly kind: "Term";
1715
+ readonly types: readonly ["NamedNode", "Literal"];
1447
1716
  };
1448
1717
  };
1449
1718
  };
@@ -1481,16 +1750,6 @@ export declare namespace Shape {
1481
1750
  };
1482
1751
  };
1483
1752
  };
1484
- readonly maxCount: {
1485
- readonly kind: "Shacl";
1486
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
1487
- readonly type: {
1488
- readonly kind: "Option";
1489
- readonly itemType: {
1490
- readonly kind: "BigInt";
1491
- };
1492
- };
1493
- };
1494
1753
  readonly maxExclusive: {
1495
1754
  readonly kind: "Shacl";
1496
1755
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
@@ -1521,13 +1780,13 @@ export declare namespace Shape {
1521
1780
  };
1522
1781
  };
1523
1782
  };
1524
- readonly minCount: {
1783
+ readonly message: {
1525
1784
  readonly kind: "Shacl";
1526
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
1785
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
1527
1786
  readonly type: {
1528
1787
  readonly kind: "Option";
1529
1788
  readonly itemType: {
1530
- readonly kind: "BigInt";
1789
+ readonly kind: "String";
1531
1790
  };
1532
1791
  };
1533
1792
  };
@@ -1615,11 +1874,11 @@ export declare namespace Shape {
1615
1874
  };
1616
1875
  };
1617
1876
  };
1618
- readonly patterns: {
1877
+ readonly pattern: {
1619
1878
  readonly kind: "Shacl";
1620
1879
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
1621
1880
  readonly type: {
1622
- readonly kind: "Set";
1881
+ readonly kind: "Option";
1623
1882
  readonly itemType: {
1624
1883
  readonly kind: "String";
1625
1884
  };
@@ -1645,6 +1904,17 @@ export declare namespace Shape {
1645
1904
  };
1646
1905
  };
1647
1906
  };
1907
+ readonly severity: {
1908
+ readonly kind: "Shacl";
1909
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
1910
+ readonly type: {
1911
+ readonly kind: "Option";
1912
+ readonly itemType: {
1913
+ readonly kind: "Iri";
1914
+ readonly in: readonly [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">];
1915
+ };
1916
+ };
1917
+ };
1648
1918
  readonly shaclmateName: {
1649
1919
  readonly kind: "Shacl";
1650
1920
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
@@ -1665,6 +1935,47 @@ export declare namespace Shape {
1665
1935
  };
1666
1936
  };
1667
1937
  };
1938
+ readonly targetClasses: {
1939
+ readonly kind: "Shacl";
1940
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
1941
+ readonly type: {
1942
+ readonly kind: "Set";
1943
+ readonly itemType: {
1944
+ readonly kind: "Iri";
1945
+ };
1946
+ };
1947
+ };
1948
+ readonly targetNodes: {
1949
+ readonly kind: "Shacl";
1950
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
1951
+ readonly type: {
1952
+ readonly kind: "Set";
1953
+ readonly itemType: {
1954
+ readonly kind: "Term";
1955
+ readonly types: readonly ["NamedNode", "Literal"];
1956
+ };
1957
+ };
1958
+ };
1959
+ readonly targetObjectsOf: {
1960
+ readonly kind: "Shacl";
1961
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
1962
+ readonly type: {
1963
+ readonly kind: "Set";
1964
+ readonly itemType: {
1965
+ readonly kind: "Iri";
1966
+ };
1967
+ };
1968
+ };
1969
+ readonly targetSubjectsOf: {
1970
+ readonly kind: "Shacl";
1971
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
1972
+ readonly type: {
1973
+ readonly kind: "Set";
1974
+ readonly itemType: {
1975
+ readonly kind: "Iri";
1976
+ };
1977
+ };
1978
+ };
1668
1979
  readonly toRdfTypes: {
1669
1980
  readonly kind: "Shacl";
1670
1981
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
@@ -1714,6 +2025,7 @@ export declare namespace Shape {
1714
2025
  readonly PropertyShape: {
1715
2026
  readonly discriminantValues: readonly ["PropertyShape"];
1716
2027
  readonly type: {
2028
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyShape">;
1717
2029
  readonly properties: {
1718
2030
  readonly $identifier: {
1719
2031
  readonly kind: "Identifier";
@@ -1781,6 +2093,7 @@ export declare namespace Shape {
1781
2093
  readonly kind: "Option";
1782
2094
  readonly itemType: {
1783
2095
  readonly kind: "Term";
2096
+ readonly types: readonly ["NamedNode", "Literal"];
1784
2097
  };
1785
2098
  };
1786
2099
  };
@@ -1794,6 +2107,16 @@ export declare namespace Shape {
1794
2107
  };
1795
2108
  };
1796
2109
  };
2110
+ readonly disjoint: {
2111
+ readonly kind: "Shacl";
2112
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#disjoint">;
2113
+ readonly type: {
2114
+ readonly kind: "Set";
2115
+ readonly itemType: {
2116
+ readonly kind: "Iri";
2117
+ };
2118
+ };
2119
+ };
1797
2120
  readonly display: {
1798
2121
  readonly kind: "Shacl";
1799
2122
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#display">;
@@ -1802,14 +2125,24 @@ export declare namespace Shape {
1802
2125
  readonly itemType: {
1803
2126
  readonly kind: "Boolean";
1804
2127
  };
1805
- readonly defaultValue: false;
2128
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
2129
+ };
2130
+ };
2131
+ readonly equals: {
2132
+ readonly kind: "Shacl";
2133
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#equals">;
2134
+ readonly type: {
2135
+ readonly kind: "Set";
2136
+ readonly itemType: {
2137
+ readonly kind: "Iri";
2138
+ };
1806
2139
  };
1807
2140
  };
1808
2141
  readonly flags: {
1809
2142
  readonly kind: "Shacl";
1810
2143
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
1811
2144
  readonly type: {
1812
- readonly kind: "Set";
2145
+ readonly kind: "Option";
1813
2146
  readonly itemType: {
1814
2147
  readonly kind: "String";
1815
2148
  };
@@ -1832,7 +2165,19 @@ export declare namespace Shape {
1832
2165
  readonly kind: "Set";
1833
2166
  readonly itemType: {
1834
2167
  readonly kind: "Term";
2168
+ readonly types: readonly ["NamedNode", "Literal"];
2169
+ };
2170
+ };
2171
+ };
2172
+ readonly ignore: {
2173
+ readonly kind: "Shacl";
2174
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
2175
+ readonly type: {
2176
+ readonly kind: "DefaultValue";
2177
+ readonly itemType: {
2178
+ readonly kind: "Boolean";
1835
2179
  };
2180
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
1836
2181
  };
1837
2182
  };
1838
2183
  readonly in_: {
@@ -1844,6 +2189,7 @@ export declare namespace Shape {
1844
2189
  readonly kind: "List";
1845
2190
  readonly itemType: {
1846
2191
  readonly kind: "Term";
2192
+ readonly types: readonly ["NamedNode", "Literal"];
1847
2193
  };
1848
2194
  };
1849
2195
  };
@@ -1881,6 +2227,26 @@ export declare namespace Shape {
1881
2227
  };
1882
2228
  };
1883
2229
  };
2230
+ readonly lessThan: {
2231
+ readonly kind: "Shacl";
2232
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThan">;
2233
+ readonly type: {
2234
+ readonly kind: "Set";
2235
+ readonly itemType: {
2236
+ readonly kind: "Iri";
2237
+ };
2238
+ };
2239
+ };
2240
+ readonly lessThanOrEquals: {
2241
+ readonly kind: "Shacl";
2242
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThanOrEquals">;
2243
+ readonly type: {
2244
+ readonly kind: "Set";
2245
+ readonly itemType: {
2246
+ readonly kind: "Iri";
2247
+ };
2248
+ };
2249
+ };
1884
2250
  readonly maxCount: {
1885
2251
  readonly kind: "Shacl";
1886
2252
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -1921,6 +2287,16 @@ export declare namespace Shape {
1921
2287
  };
1922
2288
  };
1923
2289
  };
2290
+ readonly message: {
2291
+ readonly kind: "Shacl";
2292
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
2293
+ readonly type: {
2294
+ readonly kind: "Option";
2295
+ readonly itemType: {
2296
+ readonly kind: "String";
2297
+ };
2298
+ };
2299
+ };
1924
2300
  readonly minCount: {
1925
2301
  readonly kind: "Shacl";
1926
2302
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -2040,33 +2416,125 @@ export declare namespace Shape {
2040
2416
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
2041
2417
  readonly type: object;
2042
2418
  };
2043
- readonly patterns: {
2419
+ readonly pattern: {
2420
+ readonly kind: "Shacl";
2421
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2422
+ readonly type: {
2423
+ readonly kind: "Option";
2424
+ readonly itemType: {
2425
+ readonly kind: "String";
2426
+ };
2427
+ };
2428
+ };
2429
+ readonly qualifiedMaxCount: {
2430
+ readonly kind: "Shacl";
2431
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMaxCount">;
2432
+ readonly type: {
2433
+ readonly kind: "Option";
2434
+ readonly itemType: {
2435
+ readonly kind: "BigInt";
2436
+ };
2437
+ };
2438
+ };
2439
+ readonly qualifiedMinCount: {
2440
+ readonly kind: "Shacl";
2441
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMinCount">;
2442
+ readonly type: {
2443
+ readonly kind: "Option";
2444
+ readonly itemType: {
2445
+ readonly kind: "BigInt";
2446
+ };
2447
+ };
2448
+ };
2449
+ readonly qualifiedValueShape: {
2450
+ readonly kind: "Shacl";
2451
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShape">;
2452
+ readonly type: {
2453
+ readonly kind: "Option";
2454
+ readonly itemType: {
2455
+ readonly kind: "Identifier";
2456
+ };
2457
+ };
2458
+ };
2459
+ readonly qualifiedValueShapesDisjoint: {
2460
+ readonly kind: "Shacl";
2461
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint">;
2462
+ readonly type: {
2463
+ readonly kind: "Option";
2464
+ readonly itemType: {
2465
+ readonly kind: "Boolean";
2466
+ };
2467
+ };
2468
+ };
2469
+ readonly resolve: {
2470
+ readonly kind: "Shacl";
2471
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
2472
+ readonly type: {
2473
+ readonly kind: "Option";
2474
+ readonly itemType: {
2475
+ readonly kind: "Identifier";
2476
+ };
2477
+ };
2478
+ };
2479
+ readonly severity: {
2480
+ readonly kind: "Shacl";
2481
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
2482
+ readonly type: {
2483
+ readonly kind: "Option";
2484
+ readonly itemType: {
2485
+ readonly kind: "Iri";
2486
+ readonly in: readonly [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">];
2487
+ };
2488
+ };
2489
+ };
2490
+ readonly shaclmateName: {
2491
+ readonly kind: "Shacl";
2492
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
2493
+ readonly type: {
2494
+ readonly kind: "Option";
2495
+ readonly itemType: {
2496
+ readonly kind: "String";
2497
+ };
2498
+ };
2499
+ };
2500
+ readonly targetClasses: {
2501
+ readonly kind: "Shacl";
2502
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
2503
+ readonly type: {
2504
+ readonly kind: "Set";
2505
+ readonly itemType: {
2506
+ readonly kind: "Iri";
2507
+ };
2508
+ };
2509
+ };
2510
+ readonly targetNodes: {
2044
2511
  readonly kind: "Shacl";
2045
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2512
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
2046
2513
  readonly type: {
2047
2514
  readonly kind: "Set";
2048
2515
  readonly itemType: {
2049
- readonly kind: "String";
2516
+ readonly kind: "Term";
2517
+ readonly types: readonly ["NamedNode", "Literal"];
2050
2518
  };
2051
2519
  };
2052
2520
  };
2053
- readonly resolve: {
2521
+ readonly targetObjectsOf: {
2054
2522
  readonly kind: "Shacl";
2055
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
2523
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
2056
2524
  readonly type: {
2057
- readonly kind: "Option";
2525
+ readonly kind: "Set";
2058
2526
  readonly itemType: {
2059
- readonly kind: "Identifier";
2527
+ readonly kind: "Iri";
2060
2528
  };
2061
2529
  };
2062
2530
  };
2063
- readonly shaclmateName: {
2531
+ readonly targetSubjectsOf: {
2064
2532
  readonly kind: "Shacl";
2065
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
2533
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
2066
2534
  readonly type: {
2067
- readonly kind: "Option";
2535
+ readonly kind: "Set";
2068
2536
  readonly itemType: {
2069
- readonly kind: "String";
2537
+ readonly kind: "Iri";
2070
2538
  };
2071
2539
  };
2072
2540
  };
@@ -2155,7 +2623,7 @@ export declare namespace Shape {
2155
2623
  readonly kind: "Shacl";
2156
2624
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
2157
2625
  readonly type: {
2158
- readonly kind: "Set";
2626
+ readonly kind: "Option";
2159
2627
  readonly itemType: {
2160
2628
  readonly kind: "String";
2161
2629
  };
@@ -2168,6 +2636,7 @@ export declare namespace Shape {
2168
2636
  readonly kind: "Set";
2169
2637
  readonly itemType: {
2170
2638
  readonly kind: "Term";
2639
+ readonly types: readonly ["NamedNode", "Literal"];
2171
2640
  };
2172
2641
  };
2173
2642
  };
@@ -2180,6 +2649,7 @@ export declare namespace Shape {
2180
2649
  readonly kind: "List";
2181
2650
  readonly itemType: {
2182
2651
  readonly kind: "Term";
2652
+ readonly types: readonly ["NamedNode", "Literal"];
2183
2653
  };
2184
2654
  };
2185
2655
  };
@@ -2217,16 +2687,6 @@ export declare namespace Shape {
2217
2687
  };
2218
2688
  };
2219
2689
  };
2220
- readonly maxCount: {
2221
- readonly kind: "Shacl";
2222
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
2223
- readonly type: {
2224
- readonly kind: "Option";
2225
- readonly itemType: {
2226
- readonly kind: "BigInt";
2227
- };
2228
- };
2229
- };
2230
2690
  readonly maxExclusive: {
2231
2691
  readonly kind: "Shacl";
2232
2692
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
@@ -2257,13 +2717,13 @@ export declare namespace Shape {
2257
2717
  };
2258
2718
  };
2259
2719
  };
2260
- readonly minCount: {
2720
+ readonly message: {
2261
2721
  readonly kind: "Shacl";
2262
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
2722
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
2263
2723
  readonly type: {
2264
2724
  readonly kind: "Option";
2265
2725
  readonly itemType: {
2266
- readonly kind: "BigInt";
2726
+ readonly kind: "String";
2267
2727
  };
2268
2728
  };
2269
2729
  };
@@ -2351,16 +2811,27 @@ export declare namespace Shape {
2351
2811
  };
2352
2812
  };
2353
2813
  };
2354
- readonly patterns: {
2814
+ readonly pattern: {
2355
2815
  readonly kind: "Shacl";
2356
2816
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2357
2817
  readonly type: {
2358
- readonly kind: "Set";
2818
+ readonly kind: "Option";
2359
2819
  readonly itemType: {
2360
2820
  readonly kind: "String";
2361
2821
  };
2362
2822
  };
2363
2823
  };
2824
+ readonly severity: {
2825
+ readonly kind: "Shacl";
2826
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
2827
+ readonly type: {
2828
+ readonly kind: "Option";
2829
+ readonly itemType: {
2830
+ readonly kind: "Iri";
2831
+ readonly in: readonly [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">];
2832
+ };
2833
+ };
2834
+ };
2364
2835
  readonly shaclmateName: {
2365
2836
  readonly kind: "Shacl";
2366
2837
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
@@ -2371,6 +2842,47 @@ export declare namespace Shape {
2371
2842
  };
2372
2843
  };
2373
2844
  };
2845
+ readonly targetClasses: {
2846
+ readonly kind: "Shacl";
2847
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
2848
+ readonly type: {
2849
+ readonly kind: "Set";
2850
+ readonly itemType: {
2851
+ readonly kind: "Iri";
2852
+ };
2853
+ };
2854
+ };
2855
+ readonly targetNodes: {
2856
+ readonly kind: "Shacl";
2857
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
2858
+ readonly type: {
2859
+ readonly kind: "Set";
2860
+ readonly itemType: {
2861
+ readonly kind: "Term";
2862
+ readonly types: readonly ["NamedNode", "Literal"];
2863
+ };
2864
+ };
2865
+ };
2866
+ readonly targetObjectsOf: {
2867
+ readonly kind: "Shacl";
2868
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
2869
+ readonly type: {
2870
+ readonly kind: "Set";
2871
+ readonly itemType: {
2872
+ readonly kind: "Iri";
2873
+ };
2874
+ };
2875
+ };
2876
+ readonly targetSubjectsOf: {
2877
+ readonly kind: "Shacl";
2878
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
2879
+ readonly type: {
2880
+ readonly kind: "Set";
2881
+ readonly itemType: {
2882
+ readonly kind: "Iri";
2883
+ };
2884
+ };
2885
+ };
2374
2886
  readonly xone: {
2375
2887
  readonly kind: "Shacl";
2376
2888
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
@@ -2399,7 +2911,7 @@ export type $Object = NodeShape | Ontology | PropertyGroup | PropertyShape;
2399
2911
  export declare namespace $Object {
2400
2912
  const $toString: (value: $Object) => string;
2401
2913
  const fromRdfResource: $FromRdfResourceFunction<$Object>;
2402
- const fromRdfResourceValues: $FromRdfResourceValuesFunction<$Object>;
2914
+ const fromRdfResourceValues: $FromRdfResourceValuesFunction<$Object, typeof $Object.schema>;
2403
2915
  type Identifier = BlankNode | NamedNode;
2404
2916
  namespace Identifier {
2405
2917
  const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
@@ -2411,6 +2923,7 @@ export declare namespace $Object {
2411
2923
  readonly NodeShape: {
2412
2924
  readonly discriminantValues: readonly ["NodeShape"];
2413
2925
  readonly type: {
2926
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#NodeShape">;
2414
2927
  readonly properties: {
2415
2928
  readonly $identifier: {
2416
2929
  readonly kind: "Identifier";
@@ -2505,7 +3018,7 @@ export declare namespace $Object {
2505
3018
  readonly kind: "Shacl";
2506
3019
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
2507
3020
  readonly type: {
2508
- readonly kind: "Set";
3021
+ readonly kind: "Option";
2509
3022
  readonly itemType: {
2510
3023
  readonly kind: "String";
2511
3024
  };
@@ -2528,6 +3041,7 @@ export declare namespace $Object {
2528
3041
  readonly kind: "Set";
2529
3042
  readonly itemType: {
2530
3043
  readonly kind: "Term";
3044
+ readonly types: readonly ["NamedNode", "Literal"];
2531
3045
  };
2532
3046
  };
2533
3047
  };
@@ -2553,6 +3067,7 @@ export declare namespace $Object {
2553
3067
  readonly kind: "List";
2554
3068
  readonly itemType: {
2555
3069
  readonly kind: "Term";
3070
+ readonly types: readonly ["NamedNode", "Literal"];
2556
3071
  };
2557
3072
  };
2558
3073
  };
@@ -2590,16 +3105,6 @@ export declare namespace $Object {
2590
3105
  };
2591
3106
  };
2592
3107
  };
2593
- readonly maxCount: {
2594
- readonly kind: "Shacl";
2595
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
2596
- readonly type: {
2597
- readonly kind: "Option";
2598
- readonly itemType: {
2599
- readonly kind: "BigInt";
2600
- };
2601
- };
2602
- };
2603
3108
  readonly maxExclusive: {
2604
3109
  readonly kind: "Shacl";
2605
3110
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
@@ -2630,13 +3135,13 @@ export declare namespace $Object {
2630
3135
  };
2631
3136
  };
2632
3137
  };
2633
- readonly minCount: {
3138
+ readonly message: {
2634
3139
  readonly kind: "Shacl";
2635
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
3140
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
2636
3141
  readonly type: {
2637
3142
  readonly kind: "Option";
2638
3143
  readonly itemType: {
2639
- readonly kind: "BigInt";
3144
+ readonly kind: "String";
2640
3145
  };
2641
3146
  };
2642
3147
  };
@@ -2724,11 +3229,11 @@ export declare namespace $Object {
2724
3229
  };
2725
3230
  };
2726
3231
  };
2727
- readonly patterns: {
3232
+ readonly pattern: {
2728
3233
  readonly kind: "Shacl";
2729
3234
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2730
3235
  readonly type: {
2731
- readonly kind: "Set";
3236
+ readonly kind: "Option";
2732
3237
  readonly itemType: {
2733
3238
  readonly kind: "String";
2734
3239
  };
@@ -2754,6 +3259,17 @@ export declare namespace $Object {
2754
3259
  };
2755
3260
  };
2756
3261
  };
3262
+ readonly severity: {
3263
+ readonly kind: "Shacl";
3264
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
3265
+ readonly type: {
3266
+ readonly kind: "Option";
3267
+ readonly itemType: {
3268
+ readonly kind: "Iri";
3269
+ readonly in: readonly [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">];
3270
+ };
3271
+ };
3272
+ };
2757
3273
  readonly shaclmateName: {
2758
3274
  readonly kind: "Shacl";
2759
3275
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
@@ -2774,6 +3290,47 @@ export declare namespace $Object {
2774
3290
  };
2775
3291
  };
2776
3292
  };
3293
+ readonly targetClasses: {
3294
+ readonly kind: "Shacl";
3295
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
3296
+ readonly type: {
3297
+ readonly kind: "Set";
3298
+ readonly itemType: {
3299
+ readonly kind: "Iri";
3300
+ };
3301
+ };
3302
+ };
3303
+ readonly targetNodes: {
3304
+ readonly kind: "Shacl";
3305
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
3306
+ readonly type: {
3307
+ readonly kind: "Set";
3308
+ readonly itemType: {
3309
+ readonly kind: "Term";
3310
+ readonly types: readonly ["NamedNode", "Literal"];
3311
+ };
3312
+ };
3313
+ };
3314
+ readonly targetObjectsOf: {
3315
+ readonly kind: "Shacl";
3316
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
3317
+ readonly type: {
3318
+ readonly kind: "Set";
3319
+ readonly itemType: {
3320
+ readonly kind: "Iri";
3321
+ };
3322
+ };
3323
+ };
3324
+ readonly targetSubjectsOf: {
3325
+ readonly kind: "Shacl";
3326
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
3327
+ readonly type: {
3328
+ readonly kind: "Set";
3329
+ readonly itemType: {
3330
+ readonly kind: "Iri";
3331
+ };
3332
+ };
3333
+ };
2777
3334
  readonly toRdfTypes: {
2778
3335
  readonly kind: "Shacl";
2779
3336
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
@@ -2823,6 +3380,7 @@ export declare namespace $Object {
2823
3380
  readonly Ontology: {
2824
3381
  readonly discriminantValues: readonly ["Ontology"];
2825
3382
  readonly type: {
3383
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2002/07/owl#Ontology">;
2826
3384
  readonly properties: {
2827
3385
  readonly $identifier: {
2828
3386
  readonly kind: "Identifier";
@@ -2856,6 +3414,7 @@ export declare namespace $Object {
2856
3414
  readonly PropertyGroup: {
2857
3415
  readonly discriminantValues: readonly ["PropertyGroup"];
2858
3416
  readonly type: {
3417
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyGroup">;
2859
3418
  readonly properties: {
2860
3419
  readonly $identifier: {
2861
3420
  readonly kind: "Identifier";
@@ -2889,6 +3448,7 @@ export declare namespace $Object {
2889
3448
  readonly PropertyShape: {
2890
3449
  readonly discriminantValues: readonly ["PropertyShape"];
2891
3450
  readonly type: {
3451
+ readonly fromRdfType: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#PropertyShape">;
2892
3452
  readonly properties: {
2893
3453
  readonly $identifier: {
2894
3454
  readonly kind: "Identifier";
@@ -2956,6 +3516,7 @@ export declare namespace $Object {
2956
3516
  readonly kind: "Option";
2957
3517
  readonly itemType: {
2958
3518
  readonly kind: "Term";
3519
+ readonly types: readonly ["NamedNode", "Literal"];
2959
3520
  };
2960
3521
  };
2961
3522
  };
@@ -2969,6 +3530,16 @@ export declare namespace $Object {
2969
3530
  };
2970
3531
  };
2971
3532
  };
3533
+ readonly disjoint: {
3534
+ readonly kind: "Shacl";
3535
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#disjoint">;
3536
+ readonly type: {
3537
+ readonly kind: "Set";
3538
+ readonly itemType: {
3539
+ readonly kind: "Iri";
3540
+ };
3541
+ };
3542
+ };
2972
3543
  readonly display: {
2973
3544
  readonly kind: "Shacl";
2974
3545
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#display">;
@@ -2977,14 +3548,24 @@ export declare namespace $Object {
2977
3548
  readonly itemType: {
2978
3549
  readonly kind: "Boolean";
2979
3550
  };
2980
- readonly defaultValue: false;
3551
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
3552
+ };
3553
+ };
3554
+ readonly equals: {
3555
+ readonly kind: "Shacl";
3556
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#equals">;
3557
+ readonly type: {
3558
+ readonly kind: "Set";
3559
+ readonly itemType: {
3560
+ readonly kind: "Iri";
3561
+ };
2981
3562
  };
2982
3563
  };
2983
3564
  readonly flags: {
2984
3565
  readonly kind: "Shacl";
2985
3566
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
2986
3567
  readonly type: {
2987
- readonly kind: "Set";
3568
+ readonly kind: "Option";
2988
3569
  readonly itemType: {
2989
3570
  readonly kind: "String";
2990
3571
  };
@@ -3007,7 +3588,19 @@ export declare namespace $Object {
3007
3588
  readonly kind: "Set";
3008
3589
  readonly itemType: {
3009
3590
  readonly kind: "Term";
3591
+ readonly types: readonly ["NamedNode", "Literal"];
3592
+ };
3593
+ };
3594
+ };
3595
+ readonly ignore: {
3596
+ readonly kind: "Shacl";
3597
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#ignore">;
3598
+ readonly type: {
3599
+ readonly kind: "DefaultValue";
3600
+ readonly itemType: {
3601
+ readonly kind: "Boolean";
3010
3602
  };
3603
+ readonly defaultValue: import("@rdfx/data-factory/dist/Literal.js").Literal;
3011
3604
  };
3012
3605
  };
3013
3606
  readonly in_: {
@@ -3019,6 +3612,7 @@ export declare namespace $Object {
3019
3612
  readonly kind: "List";
3020
3613
  readonly itemType: {
3021
3614
  readonly kind: "Term";
3615
+ readonly types: readonly ["NamedNode", "Literal"];
3022
3616
  };
3023
3617
  };
3024
3618
  };
@@ -3056,6 +3650,26 @@ export declare namespace $Object {
3056
3650
  };
3057
3651
  };
3058
3652
  };
3653
+ readonly lessThan: {
3654
+ readonly kind: "Shacl";
3655
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThan">;
3656
+ readonly type: {
3657
+ readonly kind: "Set";
3658
+ readonly itemType: {
3659
+ readonly kind: "Iri";
3660
+ };
3661
+ };
3662
+ };
3663
+ readonly lessThanOrEquals: {
3664
+ readonly kind: "Shacl";
3665
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#lessThanOrEquals">;
3666
+ readonly type: {
3667
+ readonly kind: "Set";
3668
+ readonly itemType: {
3669
+ readonly kind: "Iri";
3670
+ };
3671
+ };
3672
+ };
3059
3673
  readonly maxCount: {
3060
3674
  readonly kind: "Shacl";
3061
3675
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -3096,6 +3710,16 @@ export declare namespace $Object {
3096
3710
  };
3097
3711
  };
3098
3712
  };
3713
+ readonly message: {
3714
+ readonly kind: "Shacl";
3715
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#message">;
3716
+ readonly type: {
3717
+ readonly kind: "Option";
3718
+ readonly itemType: {
3719
+ readonly kind: "String";
3720
+ };
3721
+ };
3722
+ };
3099
3723
  readonly minCount: {
3100
3724
  readonly kind: "Shacl";
3101
3725
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -3215,16 +3839,56 @@ export declare namespace $Object {
3215
3839
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
3216
3840
  readonly type: object;
3217
3841
  };
3218
- readonly patterns: {
3842
+ readonly pattern: {
3219
3843
  readonly kind: "Shacl";
3220
3844
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
3221
3845
  readonly type: {
3222
- readonly kind: "Set";
3846
+ readonly kind: "Option";
3223
3847
  readonly itemType: {
3224
3848
  readonly kind: "String";
3225
3849
  };
3226
3850
  };
3227
3851
  };
3852
+ readonly qualifiedMaxCount: {
3853
+ readonly kind: "Shacl";
3854
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMaxCount">;
3855
+ readonly type: {
3856
+ readonly kind: "Option";
3857
+ readonly itemType: {
3858
+ readonly kind: "BigInt";
3859
+ };
3860
+ };
3861
+ };
3862
+ readonly qualifiedMinCount: {
3863
+ readonly kind: "Shacl";
3864
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedMinCount">;
3865
+ readonly type: {
3866
+ readonly kind: "Option";
3867
+ readonly itemType: {
3868
+ readonly kind: "BigInt";
3869
+ };
3870
+ };
3871
+ };
3872
+ readonly qualifiedValueShape: {
3873
+ readonly kind: "Shacl";
3874
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShape">;
3875
+ readonly type: {
3876
+ readonly kind: "Option";
3877
+ readonly itemType: {
3878
+ readonly kind: "Identifier";
3879
+ };
3880
+ };
3881
+ };
3882
+ readonly qualifiedValueShapesDisjoint: {
3883
+ readonly kind: "Shacl";
3884
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint">;
3885
+ readonly type: {
3886
+ readonly kind: "Option";
3887
+ readonly itemType: {
3888
+ readonly kind: "Boolean";
3889
+ };
3890
+ };
3891
+ };
3228
3892
  readonly resolve: {
3229
3893
  readonly kind: "Shacl";
3230
3894
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
@@ -3235,6 +3899,17 @@ export declare namespace $Object {
3235
3899
  };
3236
3900
  };
3237
3901
  };
3902
+ readonly severity: {
3903
+ readonly kind: "Shacl";
3904
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#severity">;
3905
+ readonly type: {
3906
+ readonly kind: "Option";
3907
+ readonly itemType: {
3908
+ readonly kind: "Iri";
3909
+ readonly in: readonly [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">];
3910
+ };
3911
+ };
3912
+ };
3238
3913
  readonly shaclmateName: {
3239
3914
  readonly kind: "Shacl";
3240
3915
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
@@ -3245,6 +3920,47 @@ export declare namespace $Object {
3245
3920
  };
3246
3921
  };
3247
3922
  };
3923
+ readonly targetClasses: {
3924
+ readonly kind: "Shacl";
3925
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetClass">;
3926
+ readonly type: {
3927
+ readonly kind: "Set";
3928
+ readonly itemType: {
3929
+ readonly kind: "Iri";
3930
+ };
3931
+ };
3932
+ };
3933
+ readonly targetNodes: {
3934
+ readonly kind: "Shacl";
3935
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetNode">;
3936
+ readonly type: {
3937
+ readonly kind: "Set";
3938
+ readonly itemType: {
3939
+ readonly kind: "Term";
3940
+ readonly types: readonly ["NamedNode", "Literal"];
3941
+ };
3942
+ };
3943
+ };
3944
+ readonly targetObjectsOf: {
3945
+ readonly kind: "Shacl";
3946
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetObjectsOf">;
3947
+ readonly type: {
3948
+ readonly kind: "Set";
3949
+ readonly itemType: {
3950
+ readonly kind: "Iri";
3951
+ };
3952
+ };
3953
+ };
3954
+ readonly targetSubjectsOf: {
3955
+ readonly kind: "Shacl";
3956
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#targetSubjectsOf">;
3957
+ readonly type: {
3958
+ readonly kind: "Set";
3959
+ readonly itemType: {
3960
+ readonly kind: "Iri";
3961
+ };
3962
+ };
3963
+ };
3248
3964
  readonly uniqueLang: {
3249
3965
  readonly kind: "Shacl";
3250
3966
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;