@twin.org/standards-w3c-dcat 0.0.3-next.9 → 0.9.0

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 (105) hide show
  1. package/README.md +1 -1
  2. package/dist/es/dataTypes/dcatDataTypes.js +80 -49
  3. package/dist/es/dataTypes/dcatDataTypes.js.map +1 -1
  4. package/dist/es/index.js +6 -2
  5. package/dist/es/index.js.map +1 -1
  6. package/dist/es/models/IDcatCatalog.js.map +1 -1
  7. package/dist/es/models/IDcatCatalogBase.js +2 -0
  8. package/dist/es/models/IDcatCatalogBase.js.map +1 -0
  9. package/dist/es/models/IDcatCatalogRecord.js.map +1 -1
  10. package/dist/es/models/IDcatCatalogRecordBase.js +2 -0
  11. package/dist/es/models/IDcatCatalogRecordBase.js.map +1 -0
  12. package/dist/es/models/IDcatDataService.js.map +1 -1
  13. package/dist/es/models/IDcatDataServiceBase.js +2 -0
  14. package/dist/es/models/IDcatDataServiceBase.js.map +1 -0
  15. package/dist/es/models/IDcatDataset.js.map +1 -1
  16. package/dist/es/models/IDcatDatasetBase.js +2 -0
  17. package/dist/es/models/IDcatDatasetBase.js.map +1 -0
  18. package/dist/es/models/IDcatDatasetSeries.js.map +1 -1
  19. package/dist/es/models/IDcatDistribution.js.map +1 -1
  20. package/dist/es/models/IDcatDistributionBase.js +2 -0
  21. package/dist/es/models/IDcatDistributionBase.js.map +1 -0
  22. package/dist/es/models/IDcatRelationship.js.map +1 -1
  23. package/dist/es/models/IDcatResource.js.map +1 -1
  24. package/dist/es/models/IDcatResourceBase.js +2 -0
  25. package/dist/es/models/IDcatResourceBase.js.map +1 -0
  26. package/dist/es/models/IDcatRole.js.map +1 -1
  27. package/dist/es/models/dcatContextType.js.map +1 -1
  28. package/dist/es/models/dcatContexts.js +15 -19
  29. package/dist/es/models/dcatContexts.js.map +1 -1
  30. package/dist/es/schemas/DcatCatalog.json +10 -489
  31. package/dist/es/schemas/DcatCatalogBase.json +109 -0
  32. package/dist/es/schemas/DcatCatalogRecord.json +10 -210
  33. package/dist/es/schemas/DcatCatalogRecordBase.json +76 -0
  34. package/dist/es/schemas/DcatContextType.json +30 -0
  35. package/dist/es/schemas/DcatDataService.json +10 -356
  36. package/dist/es/schemas/DcatDataServiceBase.json +43 -0
  37. package/dist/es/schemas/DcatDataset.json +10 -405
  38. package/dist/es/schemas/DcatDatasetBase.json +94 -0
  39. package/dist/es/schemas/DcatDatasetSeries.json +17 -394
  40. package/dist/es/schemas/DcatDistribution.json +10 -266
  41. package/dist/es/schemas/DcatDistributionBase.json +134 -0
  42. package/dist/es/schemas/DcatRelationship.json +11 -170
  43. package/dist/es/schemas/DcatResource.json +10 -340
  44. package/dist/es/schemas/DcatResourceBase.json +663 -0
  45. package/dist/es/schemas/DcatRole.json +15 -167
  46. package/dist/types/dataTypes/dcatDataTypes.d.ts +0 -1
  47. package/dist/types/index.d.ts +6 -2
  48. package/dist/types/models/IDcatCatalog.d.ts +5 -43
  49. package/dist/types/models/IDcatCatalogBase.d.ts +54 -0
  50. package/dist/types/models/IDcatCatalogRecord.d.ts +2 -40
  51. package/dist/types/models/IDcatCatalogRecordBase.d.ts +51 -0
  52. package/dist/types/models/IDcatDataService.d.ts +5 -22
  53. package/dist/types/models/IDcatDataServiceBase.d.ts +31 -0
  54. package/dist/types/models/IDcatDataset.d.ts +5 -51
  55. package/dist/types/models/IDcatDatasetBase.d.ts +60 -0
  56. package/dist/types/models/IDcatDatasetSeries.d.ts +6 -0
  57. package/dist/types/models/IDcatDistribution.d.ts +2 -110
  58. package/dist/types/models/IDcatDistributionBase.d.ts +123 -0
  59. package/dist/types/models/IDcatRelationship.d.ts +2 -2
  60. package/dist/types/models/IDcatResource.d.ts +3 -109
  61. package/dist/types/models/IDcatResourceBase.d.ts +120 -0
  62. package/dist/types/models/IDcatRole.d.ts +8 -5
  63. package/dist/types/models/dcatContextType.d.ts +4 -4
  64. package/dist/types/models/dcatContexts.d.ts +15 -19
  65. package/docs/changelog.md +1125 -11
  66. package/docs/examples.md +25 -1
  67. package/docs/reference/classes/DcatDataTypes.md +2 -3
  68. package/docs/reference/index.md +6 -11
  69. package/docs/reference/interfaces/IDcatCatalog.md +138 -106
  70. package/docs/reference/interfaces/IDcatCatalogBase.md +558 -0
  71. package/docs/reference/interfaces/IDcatCatalogRecord.md +53 -25
  72. package/docs/reference/interfaces/IDcatCatalogRecordBase.md +101 -0
  73. package/docs/reference/interfaces/IDcatDataService.md +90 -74
  74. package/docs/reference/interfaces/IDcatDataServiceBase.md +382 -0
  75. package/docs/reference/interfaces/IDcatDataset.md +120 -85
  76. package/docs/reference/interfaces/IDcatDatasetBase.md +443 -0
  77. package/docs/reference/interfaces/IDcatDatasetSeries.md +88 -68
  78. package/docs/reference/interfaces/IDcatDistribution.md +137 -53
  79. package/docs/reference/interfaces/IDcatDistributionBase.md +269 -0
  80. package/docs/reference/interfaces/IDcatRelationship.md +6 -22
  81. package/docs/reference/interfaces/IDcatResource.md +132 -57
  82. package/docs/reference/interfaces/IDcatResourceBase.md +260 -0
  83. package/docs/reference/interfaces/IDcatRole.md +11 -19
  84. package/docs/reference/type-aliases/DcatContextType.md +4 -4
  85. package/docs/reference/variables/DcatClasses.md +9 -9
  86. package/docs/reference/variables/DcatContexts.md +21 -33
  87. package/docs/reference/variables/DcatRelationshipType.md +9 -9
  88. package/package.json +10 -10
  89. package/dist/es/models/types/dcatContextFreeTypes.js +0 -4
  90. package/dist/es/models/types/dcatContextFreeTypes.js.map +0 -1
  91. package/dist/es/models/types/dcatPropertyTypes.js +0 -4
  92. package/dist/es/models/types/dcatPropertyTypes.js.map +0 -1
  93. package/dist/types/models/types/dcatContextFreeTypes.d.ts +0 -40
  94. package/dist/types/models/types/dcatPropertyTypes.d.ts +0 -29
  95. package/docs/reference/type-aliases/CatalogOptionalContext.md +0 -11
  96. package/docs/reference/type-aliases/CatalogRecordOptionalContext.md +0 -11
  97. package/docs/reference/type-aliases/DataServiceOptionalContext.md +0 -11
  98. package/docs/reference/type-aliases/DatasetOptionalContext.md +0 -11
  99. package/docs/reference/type-aliases/DcatDateTimeType.md +0 -6
  100. package/docs/reference/type-aliases/DcatDecimalType.md +0 -5
  101. package/docs/reference/type-aliases/DcatDurationType.md +0 -5
  102. package/docs/reference/type-aliases/DcatIriType.md +0 -5
  103. package/docs/reference/type-aliases/DcatLiteralType.md +0 -5
  104. package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +0 -5
  105. package/docs/reference/type-aliases/DistributionOptionalContext.md +0 -11
package/docs/changelog.md CHANGED
@@ -1,6 +1,1120 @@
1
- # @twin.org/standards-w3c-dcat - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.9](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.8...standards-w3c-dcat-v0.0.3-next.9) (2026-01-09)
3
+ ## [0.9.0](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.9.0...standards-w3c-dcat-v0.9.0) (2026-06-23)
4
+
5
+
6
+ ### Features
7
+
8
+ * release to production ([2ae4125](https://github.com/iotaledger/twin-standards/commit/2ae4125f305d4714b50036eb8a0bd47e4100a7be))
9
+ * release to production ([#246](https://github.com/iotaledger/twin-standards/issues/246)) ([6e6796b](https://github.com/iotaledger/twin-standards/commit/6e6796bd76aa70a9215eeb300ff479cde79368b8))
10
+
11
+ ## [0.9.0-next.1](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.9.0-next.0...standards-w3c-dcat-v0.9.0-next.1) (2026-06-23)
12
+
13
+
14
+ ### Features
15
+
16
+ * add ds protocol catalog dataset ([#86](https://github.com/iotaledger/twin-standards/issues/86)) ([45600e6](https://github.com/iotaledger/twin-standards/commit/45600e6cba212d85e250cb12cbdcb712d8db0e52))
17
+ * add w3c dcat standards package ([#68](https://github.com/iotaledger/twin-standards/issues/68)) ([85746c6](https://github.com/iotaledger/twin-standards/commit/85746c673464498a52e9c30ce498fd88b81a7434))
18
+ * fixes in dataspace and odrl ([9924f91](https://github.com/iotaledger/twin-standards/commit/9924f9135cb6e227e1040065ab017b1c7ef8347a))
19
+ * improve caching ([#196](https://github.com/iotaledger/twin-standards/issues/196)) ([968e61a](https://github.com/iotaledger/twin-standards/commit/968e61a04156a22cf5ffc3ba237a42a81ec2e0c1))
20
+ * improved namespaces and contexts ([#102](https://github.com/iotaledger/twin-standards/issues/102)) ([c74c370](https://github.com/iotaledger/twin-standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
21
+ * naming fixing and usage ([#98](https://github.com/iotaledger/twin-standards/issues/98)) ([9e95344](https://github.com/iotaledger/twin-standards/commit/9e953440963c9bc028399be9cbea25d92922bd01))
22
+ * register schemas at hosted location ([#128](https://github.com/iotaledger/twin-standards/issues/128)) ([ab35298](https://github.com/iotaledger/twin-standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
23
+ * remove IJsonLdNodeObject base interfaces ([#172](https://github.com/iotaledger/twin-standards/issues/172)) ([8ff8d7a](https://github.com/iotaledger/twin-standards/commit/8ff8d7a2892d626879b76ba5da912469ff899954))
24
+ * remove ObjectOrArray usage ([61fd52d](https://github.com/iotaledger/twin-standards/commit/61fd52da035356bbe5bcc315367089405b4d1386))
25
+ * typescript 6 update ([79bfb52](https://github.com/iotaledger/twin-standards/commit/79bfb52e3dcb24689cec7b201dde822bcee970c5))
26
+ * update dependencies ([e422ed3](https://github.com/iotaledger/twin-standards/commit/e422ed351fb09e2deea5ef741326c37b0802af3a))
27
+ * update ds and dcat generated schemas ([efc333e](https://github.com/iotaledger/twin-standards/commit/efc333e00bb7af828fd005484d0e28204776d948))
28
+ * update JsonSchemaHelper.validate usage ([fe08315](https://github.com/iotaledger/twin-standards/commit/fe0831571cc618465a4510b52c3032a750e6e149))
29
+ * update registrations ([dd3c92f](https://github.com/iotaledger/twin-standards/commit/dd3c92f52ff44679f61ff2a84b9fbc98bdc574d5))
30
+ * update schemas to support additional properties ([4679e21](https://github.com/iotaledger/twin-standards/commit/4679e21728a54cb587f120874841c3d1ed3771de))
31
+ * update to new ts-ts-schema and generic constructs ([4dff991](https://github.com/iotaledger/twin-standards/commit/4dff991fb70de4320668641ed94abf8e9b06acad))
32
+ * use local LD contexts in tests instead of remote ones ([#201](https://github.com/iotaledger/twin-standards/issues/201)) ([7d6c6ea](https://github.com/iotaledger/twin-standards/commit/7d6c6ea7b952fb9e2240ff252f8ce85c42d78985))
33
+
34
+
35
+ ### Bug Fixes
36
+
37
+ * dcat LD Context fix and aligned with DCAT prefixed models ([#85](https://github.com/iotaledger/twin-standards/issues/85)) ([4546167](https://github.com/iotaledger/twin-standards/commit/4546167b1f61dba85206a64a8b2535f468d74845))
38
+ * dcat resource optional context for policy ([#231](https://github.com/iotaledger/twin-standards/issues/231)) ([2dd5a55](https://github.com/iotaledger/twin-standards/commit/2dd5a553ec43f811bb9c4f65f0fff976d7074101))
39
+ * updating the missing packages ([#114](https://github.com/iotaledger/twin-standards/issues/114)) ([90b03f8](https://github.com/iotaledger/twin-standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
40
+ * when a prefix is declared in an [@context](https://github.com/context) it should be Namespace and not Context ([#119](https://github.com/iotaledger/twin-standards/issues/119)) ([110cc50](https://github.com/iotaledger/twin-standards/commit/110cc5039394c7fcfada0e3ca001013cb503f31a))
41
+
42
+
43
+ ### Dependencies
44
+
45
+ * The following workspace dependencies were updated
46
+ * dependencies
47
+ * @twin.org/standards-dublin-core bumped from 0.9.0-next.0 to 0.9.0-next.1
48
+ * @twin.org/standards-foaf bumped from 0.9.0-next.0 to 0.9.0-next.1
49
+ * @twin.org/standards-w3c-odrl bumped from 0.9.0-next.0 to 0.9.0-next.1
50
+ * @twin.org/standards-w3c-vcard bumped from 0.9.0-next.0 to 0.9.0-next.1
51
+ * devDependencies
52
+ * @twin.org/standards-ld-contexts bumped from 0.9.0-next.0 to 0.9.0-next.1
53
+
54
+ ## [0.0.3-next.69](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.68...standards-w3c-dcat-v0.0.3-next.69) (2026-06-22)
55
+
56
+
57
+ ### Miscellaneous Chores
58
+
59
+ * **standards-w3c-dcat:** Synchronize repo versions
60
+
61
+
62
+ ### Dependencies
63
+
64
+ * The following workspace dependencies were updated
65
+ * dependencies
66
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.68 to 0.0.3-next.69
67
+ * @twin.org/standards-foaf bumped from 0.0.3-next.68 to 0.0.3-next.69
68
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.68 to 0.0.3-next.69
69
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.68 to 0.0.3-next.69
70
+ * devDependencies
71
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.68 to 0.0.3-next.69
72
+
73
+ ## [0.0.3-next.68](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.67...standards-w3c-dcat-v0.0.3-next.68) (2026-06-22)
74
+
75
+
76
+ ### Miscellaneous Chores
77
+
78
+ * **standards-w3c-dcat:** Synchronize repo versions
79
+
80
+
81
+ ### Dependencies
82
+
83
+ * The following workspace dependencies were updated
84
+ * dependencies
85
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.67 to 0.0.3-next.68
86
+ * @twin.org/standards-foaf bumped from 0.0.3-next.67 to 0.0.3-next.68
87
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.67 to 0.0.3-next.68
88
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.67 to 0.0.3-next.68
89
+ * devDependencies
90
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.67 to 0.0.3-next.68
91
+
92
+ ## [0.0.3-next.67](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.66...standards-w3c-dcat-v0.0.3-next.67) (2026-06-12)
93
+
94
+
95
+ ### Features
96
+
97
+ * update ds and dcat generated schemas ([efc333e](https://github.com/iotaledger/twin-standards/commit/efc333e00bb7af828fd005484d0e28204776d948))
98
+
99
+
100
+ ### Dependencies
101
+
102
+ * The following workspace dependencies were updated
103
+ * dependencies
104
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.66 to 0.0.3-next.67
105
+ * @twin.org/standards-foaf bumped from 0.0.3-next.66 to 0.0.3-next.67
106
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.66 to 0.0.3-next.67
107
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.66 to 0.0.3-next.67
108
+ * devDependencies
109
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.66 to 0.0.3-next.67
110
+
111
+ ## [0.0.3-next.66](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.65...standards-w3c-dcat-v0.0.3-next.66) (2026-06-09)
112
+
113
+
114
+ ### Miscellaneous Chores
115
+
116
+ * **standards-w3c-dcat:** Synchronize repo versions
117
+
118
+
119
+ ### Dependencies
120
+
121
+ * The following workspace dependencies were updated
122
+ * dependencies
123
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.65 to 0.0.3-next.66
124
+ * @twin.org/standards-foaf bumped from 0.0.3-next.65 to 0.0.3-next.66
125
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.65 to 0.0.3-next.66
126
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.65 to 0.0.3-next.66
127
+ * devDependencies
128
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.65 to 0.0.3-next.66
129
+
130
+ ## [0.0.3-next.65](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.64...standards-w3c-dcat-v0.0.3-next.65) (2026-06-02)
131
+
132
+
133
+ ### Bug Fixes
134
+
135
+ * dcat resource optional context for policy ([#231](https://github.com/iotaledger/twin-standards/issues/231)) ([2dd5a55](https://github.com/iotaledger/twin-standards/commit/2dd5a553ec43f811bb9c4f65f0fff976d7074101))
136
+
137
+
138
+ ### Dependencies
139
+
140
+ * The following workspace dependencies were updated
141
+ * dependencies
142
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.64 to 0.0.3-next.65
143
+ * @twin.org/standards-foaf bumped from 0.0.3-next.64 to 0.0.3-next.65
144
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.64 to 0.0.3-next.65
145
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.64 to 0.0.3-next.65
146
+ * devDependencies
147
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.64 to 0.0.3-next.65
148
+
149
+ ## [0.0.3-next.64](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.63...standards-w3c-dcat-v0.0.3-next.64) (2026-06-01)
150
+
151
+
152
+ ### Miscellaneous Chores
153
+
154
+ * **standards-w3c-dcat:** Synchronize repo versions
155
+
156
+
157
+ ### Dependencies
158
+
159
+ * The following workspace dependencies were updated
160
+ * dependencies
161
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.63 to 0.0.3-next.64
162
+ * @twin.org/standards-foaf bumped from 0.0.3-next.63 to 0.0.3-next.64
163
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.63 to 0.0.3-next.64
164
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.63 to 0.0.3-next.64
165
+ * devDependencies
166
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.63 to 0.0.3-next.64
167
+
168
+ ## [0.0.3-next.63](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.62...standards-w3c-dcat-v0.0.3-next.63) (2026-05-19)
169
+
170
+
171
+ ### Features
172
+
173
+ * update dependencies ([e422ed3](https://github.com/iotaledger/twin-standards/commit/e422ed351fb09e2deea5ef741326c37b0802af3a))
174
+
175
+
176
+ ### Dependencies
177
+
178
+ * The following workspace dependencies were updated
179
+ * dependencies
180
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.62 to 0.0.3-next.63
181
+ * @twin.org/standards-foaf bumped from 0.0.3-next.62 to 0.0.3-next.63
182
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.62 to 0.0.3-next.63
183
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.62 to 0.0.3-next.63
184
+ * devDependencies
185
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.62 to 0.0.3-next.63
186
+
187
+ ## [0.0.3-next.62](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.61...standards-w3c-dcat-v0.0.3-next.62) (2026-05-18)
188
+
189
+
190
+ ### Miscellaneous Chores
191
+
192
+ * **standards-w3c-dcat:** Synchronize repo versions
193
+
194
+
195
+ ### Dependencies
196
+
197
+ * The following workspace dependencies were updated
198
+ * dependencies
199
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.61 to 0.0.3-next.62
200
+ * @twin.org/standards-foaf bumped from 0.0.3-next.61 to 0.0.3-next.62
201
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.61 to 0.0.3-next.62
202
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.61 to 0.0.3-next.62
203
+ * devDependencies
204
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.61 to 0.0.3-next.62
205
+
206
+ ## [0.0.3-next.61](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.60...standards-w3c-dcat-v0.0.3-next.61) (2026-05-11)
207
+
208
+
209
+ ### Features
210
+
211
+ * typescript 6 update ([79bfb52](https://github.com/iotaledger/twin-standards/commit/79bfb52e3dcb24689cec7b201dde822bcee970c5))
212
+
213
+
214
+ ### Dependencies
215
+
216
+ * The following workspace dependencies were updated
217
+ * dependencies
218
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.60 to 0.0.3-next.61
219
+ * @twin.org/standards-foaf bumped from 0.0.3-next.60 to 0.0.3-next.61
220
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.60 to 0.0.3-next.61
221
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.60 to 0.0.3-next.61
222
+ * devDependencies
223
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.60 to 0.0.3-next.61
224
+
225
+ ## [0.0.3-next.60](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.59...standards-w3c-dcat-v0.0.3-next.60) (2026-04-21)
226
+
227
+
228
+ ### Miscellaneous Chores
229
+
230
+ * **standards-w3c-dcat:** Synchronize repo versions
231
+
232
+
233
+ ### Dependencies
234
+
235
+ * The following workspace dependencies were updated
236
+ * dependencies
237
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.59 to 0.0.3-next.60
238
+ * @twin.org/standards-foaf bumped from 0.0.3-next.59 to 0.0.3-next.60
239
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.59 to 0.0.3-next.60
240
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.59 to 0.0.3-next.60
241
+ * devDependencies
242
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.59 to 0.0.3-next.60
243
+
244
+ ## [0.0.3-next.59](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.58...standards-w3c-dcat-v0.0.3-next.59) (2026-04-07)
245
+
246
+
247
+ ### Miscellaneous Chores
248
+
249
+ * **standards-w3c-dcat:** Synchronize repo versions
250
+
251
+
252
+ ### Dependencies
253
+
254
+ * The following workspace dependencies were updated
255
+ * dependencies
256
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.58 to 0.0.3-next.59
257
+ * @twin.org/standards-foaf bumped from 0.0.3-next.58 to 0.0.3-next.59
258
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.58 to 0.0.3-next.59
259
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.58 to 0.0.3-next.59
260
+ * devDependencies
261
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.58 to 0.0.3-next.59
262
+
263
+ ## [0.0.3-next.58](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.57...standards-w3c-dcat-v0.0.3-next.58) (2026-03-25)
264
+
265
+
266
+ ### Miscellaneous Chores
267
+
268
+ * **standards-w3c-dcat:** Synchronize repo versions
269
+
270
+
271
+ ### Dependencies
272
+
273
+ * The following workspace dependencies were updated
274
+ * dependencies
275
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.57 to 0.0.3-next.58
276
+ * @twin.org/standards-foaf bumped from 0.0.3-next.57 to 0.0.3-next.58
277
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.57 to 0.0.3-next.58
278
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.57 to 0.0.3-next.58
279
+ * devDependencies
280
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.57 to 0.0.3-next.58
281
+
282
+ ## [0.0.3-next.57](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.56...standards-w3c-dcat-v0.0.3-next.57) (2026-03-20)
283
+
284
+
285
+ ### Miscellaneous Chores
286
+
287
+ * **standards-w3c-dcat:** Synchronize repo versions
288
+
289
+
290
+ ### Dependencies
291
+
292
+ * The following workspace dependencies were updated
293
+ * dependencies
294
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.56 to 0.0.3-next.57
295
+ * @twin.org/standards-foaf bumped from 0.0.3-next.56 to 0.0.3-next.57
296
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.56 to 0.0.3-next.57
297
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.56 to 0.0.3-next.57
298
+ * devDependencies
299
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.56 to 0.0.3-next.57
300
+
301
+ ## [0.0.3-next.56](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.55...standards-w3c-dcat-v0.0.3-next.56) (2026-03-20)
302
+
303
+
304
+ ### Features
305
+
306
+ * fixes in dataspace and odrl ([9924f91](https://github.com/iotaledger/twin-standards/commit/9924f9135cb6e227e1040065ab017b1c7ef8347a))
307
+
308
+
309
+ ### Dependencies
310
+
311
+ * The following workspace dependencies were updated
312
+ * dependencies
313
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.55 to 0.0.3-next.56
314
+ * @twin.org/standards-foaf bumped from 0.0.3-next.55 to 0.0.3-next.56
315
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.55 to 0.0.3-next.56
316
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.55 to 0.0.3-next.56
317
+ * devDependencies
318
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.55 to 0.0.3-next.56
319
+
320
+ ## [0.0.3-next.55](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.54...standards-w3c-dcat-v0.0.3-next.55) (2026-03-19)
321
+
322
+
323
+ ### Features
324
+
325
+ * update to new ts-ts-schema and generic constructs ([4dff991](https://github.com/iotaledger/twin-standards/commit/4dff991fb70de4320668641ed94abf8e9b06acad))
326
+ * use local LD contexts in tests instead of remote ones ([#201](https://github.com/iotaledger/twin-standards/issues/201)) ([7d6c6ea](https://github.com/iotaledger/twin-standards/commit/7d6c6ea7b952fb9e2240ff252f8ce85c42d78985))
327
+
328
+
329
+ ### Dependencies
330
+
331
+ * The following workspace dependencies were updated
332
+ * dependencies
333
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.54 to 0.0.3-next.55
334
+ * @twin.org/standards-foaf bumped from 0.0.3-next.54 to 0.0.3-next.55
335
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.54 to 0.0.3-next.55
336
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.54 to 0.0.3-next.55
337
+ * devDependencies
338
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.54 to 0.0.3-next.55
339
+
340
+ ## [0.0.3-next.54](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.53...standards-w3c-dcat-v0.0.3-next.54) (2026-03-12)
341
+
342
+
343
+ ### Features
344
+
345
+ * update JsonSchemaHelper.validate usage ([fe08315](https://github.com/iotaledger/twin-standards/commit/fe0831571cc618465a4510b52c3032a750e6e149))
346
+
347
+
348
+ ### Dependencies
349
+
350
+ * The following workspace dependencies were updated
351
+ * dependencies
352
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.53 to 0.0.3-next.54
353
+ * @twin.org/standards-foaf bumped from 0.0.3-next.53 to 0.0.3-next.54
354
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.53 to 0.0.3-next.54
355
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.53 to 0.0.3-next.54
356
+
357
+ ## [0.0.3-next.53](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.52...standards-w3c-dcat-v0.0.3-next.53) (2026-03-11)
358
+
359
+
360
+ ### Features
361
+
362
+ * improve caching ([#196](https://github.com/iotaledger/twin-standards/issues/196)) ([968e61a](https://github.com/iotaledger/twin-standards/commit/968e61a04156a22cf5ffc3ba237a42a81ec2e0c1))
363
+
364
+
365
+ ### Dependencies
366
+
367
+ * The following workspace dependencies were updated
368
+ * dependencies
369
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.52 to 0.0.3-next.53
370
+ * @twin.org/standards-foaf bumped from 0.0.3-next.52 to 0.0.3-next.53
371
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.52 to 0.0.3-next.53
372
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.52 to 0.0.3-next.53
373
+
374
+ ## [0.0.3-next.52](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.51...standards-w3c-dcat-v0.0.3-next.52) (2026-03-10)
375
+
376
+
377
+ ### Miscellaneous Chores
378
+
379
+ * **standards-w3c-dcat:** Synchronize repo versions
380
+
381
+
382
+ ### Dependencies
383
+
384
+ * The following workspace dependencies were updated
385
+ * dependencies
386
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.51 to 0.0.3-next.52
387
+ * @twin.org/standards-foaf bumped from 0.0.3-next.51 to 0.0.3-next.52
388
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.51 to 0.0.3-next.52
389
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.51 to 0.0.3-next.52
390
+
391
+ ## [0.0.3-next.51](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.50...standards-w3c-dcat-v0.0.3-next.51) (2026-03-10)
392
+
393
+
394
+ ### Miscellaneous Chores
395
+
396
+ * **standards-w3c-dcat:** Synchronize repo versions
397
+
398
+
399
+ ### Dependencies
400
+
401
+ * The following workspace dependencies were updated
402
+ * dependencies
403
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.50 to 0.0.3-next.51
404
+ * @twin.org/standards-foaf bumped from 0.0.3-next.50 to 0.0.3-next.51
405
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.50 to 0.0.3-next.51
406
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.50 to 0.0.3-next.51
407
+
408
+ ## [0.0.3-next.50](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.49...standards-w3c-dcat-v0.0.3-next.50) (2026-03-09)
409
+
410
+
411
+ ### Features
412
+
413
+ * remove ObjectOrArray usage ([61fd52d](https://github.com/iotaledger/twin-standards/commit/61fd52da035356bbe5bcc315367089405b4d1386))
414
+
415
+
416
+ ### Dependencies
417
+
418
+ * The following workspace dependencies were updated
419
+ * dependencies
420
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.49 to 0.0.3-next.50
421
+ * @twin.org/standards-foaf bumped from 0.0.3-next.49 to 0.0.3-next.50
422
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.49 to 0.0.3-next.50
423
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.49 to 0.0.3-next.50
424
+
425
+ ## [0.0.3-next.49](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.48...standards-w3c-dcat-v0.0.3-next.49) (2026-03-06)
426
+
427
+
428
+ ### Miscellaneous Chores
429
+
430
+ * **standards-w3c-dcat:** Synchronize repo versions
431
+
432
+
433
+ ### Dependencies
434
+
435
+ * The following workspace dependencies were updated
436
+ * dependencies
437
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.48 to 0.0.3-next.49
438
+ * @twin.org/standards-foaf bumped from 0.0.3-next.48 to 0.0.3-next.49
439
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.48 to 0.0.3-next.49
440
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.48 to 0.0.3-next.49
441
+
442
+ ## [0.0.3-next.48](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.47...standards-w3c-dcat-v0.0.3-next.48) (2026-03-06)
443
+
444
+
445
+ ### Miscellaneous Chores
446
+
447
+ * **standards-w3c-dcat:** Synchronize repo versions
448
+
449
+
450
+ ### Dependencies
451
+
452
+ * The following workspace dependencies were updated
453
+ * dependencies
454
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.47 to 0.0.3-next.48
455
+ * @twin.org/standards-foaf bumped from 0.0.3-next.47 to 0.0.3-next.48
456
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.47 to 0.0.3-next.48
457
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.47 to 0.0.3-next.48
458
+
459
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.46...standards-w3c-dcat-v0.0.3-next.47) (2026-03-06)
460
+
461
+
462
+ ### Miscellaneous Chores
463
+
464
+ * **standards-w3c-dcat:** Synchronize repo versions
465
+
466
+
467
+ ### Dependencies
468
+
469
+ * The following workspace dependencies were updated
470
+ * dependencies
471
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.46 to 0.0.3-next.47
472
+ * @twin.org/standards-foaf bumped from 0.0.3-next.46 to 0.0.3-next.47
473
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.46 to 0.0.3-next.47
474
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.46 to 0.0.3-next.47
475
+
476
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.45...standards-w3c-dcat-v0.0.3-next.46) (2026-03-05)
477
+
478
+
479
+ ### Miscellaneous Chores
480
+
481
+ * **standards-w3c-dcat:** Synchronize repo versions
482
+
483
+
484
+ ### Dependencies
485
+
486
+ * The following workspace dependencies were updated
487
+ * dependencies
488
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.45 to 0.0.3-next.46
489
+ * @twin.org/standards-foaf bumped from 0.0.3-next.45 to 0.0.3-next.46
490
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.45 to 0.0.3-next.46
491
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.45 to 0.0.3-next.46
492
+
493
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.44...standards-w3c-dcat-v0.0.3-next.45) (2026-03-04)
494
+
495
+
496
+ ### Miscellaneous Chores
497
+
498
+ * **standards-w3c-dcat:** Synchronize repo versions
499
+
500
+
501
+ ### Dependencies
502
+
503
+ * The following workspace dependencies were updated
504
+ * dependencies
505
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.44 to 0.0.3-next.45
506
+ * @twin.org/standards-foaf bumped from 0.0.3-next.44 to 0.0.3-next.45
507
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.44 to 0.0.3-next.45
508
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.44 to 0.0.3-next.45
509
+
510
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.43...standards-w3c-dcat-v0.0.3-next.44) (2026-03-04)
511
+
512
+
513
+ ### Miscellaneous Chores
514
+
515
+ * **standards-w3c-dcat:** Synchronize repo versions
516
+
517
+
518
+ ### Dependencies
519
+
520
+ * The following workspace dependencies were updated
521
+ * dependencies
522
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.43 to 0.0.3-next.44
523
+ * @twin.org/standards-foaf bumped from 0.0.3-next.43 to 0.0.3-next.44
524
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.43 to 0.0.3-next.44
525
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.43 to 0.0.3-next.44
526
+
527
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.42...standards-w3c-dcat-v0.0.3-next.43) (2026-02-25)
528
+
529
+
530
+ ### Features
531
+
532
+ * update schemas to support additional properties ([4679e21](https://github.com/iotaledger/twin-standards/commit/4679e21728a54cb587f120874841c3d1ed3771de))
533
+
534
+
535
+ ### Dependencies
536
+
537
+ * The following workspace dependencies were updated
538
+ * dependencies
539
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.42 to 0.0.3-next.43
540
+ * @twin.org/standards-foaf bumped from 0.0.3-next.42 to 0.0.3-next.43
541
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.42 to 0.0.3-next.43
542
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.42 to 0.0.3-next.43
543
+
544
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.41...standards-w3c-dcat-v0.0.3-next.42) (2026-02-25)
545
+
546
+
547
+ ### Features
548
+
549
+ * remove IJsonLdNodeObject base interfaces ([#172](https://github.com/iotaledger/twin-standards/issues/172)) ([8ff8d7a](https://github.com/iotaledger/twin-standards/commit/8ff8d7a2892d626879b76ba5da912469ff899954))
550
+
551
+
552
+ ### Dependencies
553
+
554
+ * The following workspace dependencies were updated
555
+ * dependencies
556
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.41 to 0.0.3-next.42
557
+ * @twin.org/standards-foaf bumped from 0.0.3-next.41 to 0.0.3-next.42
558
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.41 to 0.0.3-next.42
559
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.41 to 0.0.3-next.42
560
+
561
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.40...standards-w3c-dcat-v0.0.3-next.41) (2026-02-23)
562
+
563
+
564
+ ### Miscellaneous Chores
565
+
566
+ * **standards-w3c-dcat:** Synchronize repo versions
567
+
568
+
569
+ ### Dependencies
570
+
571
+ * The following workspace dependencies were updated
572
+ * dependencies
573
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.40 to 0.0.3-next.41
574
+ * @twin.org/standards-foaf bumped from 0.0.3-next.40 to 0.0.3-next.41
575
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.40 to 0.0.3-next.41
576
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.40 to 0.0.3-next.41
577
+
578
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.39...standards-w3c-dcat-v0.0.3-next.40) (2026-02-18)
579
+
580
+
581
+ ### Miscellaneous Chores
582
+
583
+ * **standards-w3c-dcat:** Synchronize repo versions
584
+
585
+
586
+ ### Dependencies
587
+
588
+ * The following workspace dependencies were updated
589
+ * dependencies
590
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.39 to 0.0.3-next.40
591
+ * @twin.org/standards-foaf bumped from 0.0.3-next.39 to 0.0.3-next.40
592
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.39 to 0.0.3-next.40
593
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.39 to 0.0.3-next.40
594
+
595
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.38...standards-w3c-dcat-v0.0.3-next.39) (2026-02-13)
596
+
597
+
598
+ ### Miscellaneous Chores
599
+
600
+ * **standards-w3c-dcat:** Synchronize repo versions
601
+
602
+
603
+ ### Dependencies
604
+
605
+ * The following workspace dependencies were updated
606
+ * dependencies
607
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.38 to 0.0.3-next.39
608
+ * @twin.org/standards-foaf bumped from 0.0.3-next.38 to 0.0.3-next.39
609
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.38 to 0.0.3-next.39
610
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.38 to 0.0.3-next.39
611
+
612
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.37...standards-w3c-dcat-v0.0.3-next.38) (2026-02-13)
613
+
614
+
615
+ ### Miscellaneous Chores
616
+
617
+ * **standards-w3c-dcat:** Synchronize repo versions
618
+
619
+
620
+ ### Dependencies
621
+
622
+ * The following workspace dependencies were updated
623
+ * dependencies
624
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.37 to 0.0.3-next.38
625
+ * @twin.org/standards-foaf bumped from 0.0.3-next.37 to 0.0.3-next.38
626
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.37 to 0.0.3-next.38
627
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.37 to 0.0.3-next.38
628
+
629
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.36...standards-w3c-dcat-v0.0.3-next.37) (2026-02-12)
630
+
631
+
632
+ ### Miscellaneous Chores
633
+
634
+ * **standards-w3c-dcat:** Synchronize repo versions
635
+
636
+
637
+ ### Dependencies
638
+
639
+ * The following workspace dependencies were updated
640
+ * dependencies
641
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.36 to 0.0.3-next.37
642
+ * @twin.org/standards-foaf bumped from 0.0.3-next.36 to 0.0.3-next.37
643
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.36 to 0.0.3-next.37
644
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.36 to 0.0.3-next.37
645
+
646
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.35...standards-w3c-dcat-v0.0.3-next.36) (2026-02-11)
647
+
648
+
649
+ ### Miscellaneous Chores
650
+
651
+ * **standards-w3c-dcat:** Synchronize repo versions
652
+
653
+
654
+ ### Dependencies
655
+
656
+ * The following workspace dependencies were updated
657
+ * dependencies
658
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.35 to 0.0.3-next.36
659
+ * @twin.org/standards-foaf bumped from 0.0.3-next.35 to 0.0.3-next.36
660
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.35 to 0.0.3-next.36
661
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.35 to 0.0.3-next.36
662
+
663
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.34...standards-w3c-dcat-v0.0.3-next.35) (2026-02-10)
664
+
665
+
666
+ ### Miscellaneous Chores
667
+
668
+ * **standards-w3c-dcat:** Synchronize repo versions
669
+
670
+
671
+ ### Dependencies
672
+
673
+ * The following workspace dependencies were updated
674
+ * dependencies
675
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.34 to 0.0.3-next.35
676
+ * @twin.org/standards-foaf bumped from 0.0.3-next.34 to 0.0.3-next.35
677
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.34 to 0.0.3-next.35
678
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.34 to 0.0.3-next.35
679
+
680
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.33...standards-w3c-dcat-v0.0.3-next.34) (2026-02-10)
681
+
682
+
683
+ ### Miscellaneous Chores
684
+
685
+ * **standards-w3c-dcat:** Synchronize repo versions
686
+
687
+
688
+ ### Dependencies
689
+
690
+ * The following workspace dependencies were updated
691
+ * dependencies
692
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.33 to 0.0.3-next.34
693
+ * @twin.org/standards-foaf bumped from 0.0.3-next.33 to 0.0.3-next.34
694
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.33 to 0.0.3-next.34
695
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.33 to 0.0.3-next.34
696
+
697
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.32...standards-w3c-dcat-v0.0.3-next.33) (2026-02-06)
698
+
699
+
700
+ ### Features
701
+
702
+ * add ds protocol catalog dataset ([#86](https://github.com/iotaledger/twin-standards/issues/86)) ([45600e6](https://github.com/iotaledger/twin-standards/commit/45600e6cba212d85e250cb12cbdcb712d8db0e52))
703
+ * add w3c dcat standards package ([#68](https://github.com/iotaledger/twin-standards/issues/68)) ([85746c6](https://github.com/iotaledger/twin-standards/commit/85746c673464498a52e9c30ce498fd88b81a7434))
704
+ * improved namespaces and contexts ([#102](https://github.com/iotaledger/twin-standards/issues/102)) ([c74c370](https://github.com/iotaledger/twin-standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
705
+ * naming fixing and usage ([#98](https://github.com/iotaledger/twin-standards/issues/98)) ([9e95344](https://github.com/iotaledger/twin-standards/commit/9e953440963c9bc028399be9cbea25d92922bd01))
706
+ * register schemas at hosted location ([#128](https://github.com/iotaledger/twin-standards/issues/128)) ([ab35298](https://github.com/iotaledger/twin-standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
707
+ * update registrations ([dd3c92f](https://github.com/iotaledger/twin-standards/commit/dd3c92f52ff44679f61ff2a84b9fbc98bdc574d5))
708
+
709
+
710
+ ### Bug Fixes
711
+
712
+ * dcat LD Context fix and aligned with DCAT prefixed models ([#85](https://github.com/iotaledger/twin-standards/issues/85)) ([4546167](https://github.com/iotaledger/twin-standards/commit/4546167b1f61dba85206a64a8b2535f468d74845))
713
+ * updating the missing packages ([#114](https://github.com/iotaledger/twin-standards/issues/114)) ([90b03f8](https://github.com/iotaledger/twin-standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
714
+ * when a prefix is declared in an [@context](https://github.com/context) it should be Namespace and not Context ([#119](https://github.com/iotaledger/twin-standards/issues/119)) ([110cc50](https://github.com/iotaledger/twin-standards/commit/110cc5039394c7fcfada0e3ca001013cb503f31a))
715
+
716
+
717
+ ### Dependencies
718
+
719
+ * The following workspace dependencies were updated
720
+ * dependencies
721
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.32 to 0.0.3-next.33
722
+ * @twin.org/standards-foaf bumped from 0.0.3-next.32 to 0.0.3-next.33
723
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.32 to 0.0.3-next.33
724
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.32 to 0.0.3-next.33
725
+
726
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.31...standards-w3c-dcat-v0.0.3-next.32) (2026-02-06)
727
+
728
+
729
+ ### Miscellaneous Chores
730
+
731
+ * **standards-w3c-dcat:** Synchronize repo versions
732
+
733
+
734
+ ### Dependencies
735
+
736
+ * The following workspace dependencies were updated
737
+ * dependencies
738
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.31 to 0.0.3-next.32
739
+ * @twin.org/standards-foaf bumped from 0.0.3-next.31 to 0.0.3-next.32
740
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.31 to 0.0.3-next.32
741
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.31 to 0.0.3-next.32
742
+
743
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.30...standards-w3c-dcat-v0.0.3-next.31) (2026-02-05)
744
+
745
+
746
+ ### Miscellaneous Chores
747
+
748
+ * **standards-w3c-dcat:** Synchronize repo versions
749
+
750
+
751
+ ### Dependencies
752
+
753
+ * The following workspace dependencies were updated
754
+ * dependencies
755
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.30 to 0.0.3-next.31
756
+ * @twin.org/standards-foaf bumped from 0.0.3-next.30 to 0.0.3-next.31
757
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.30 to 0.0.3-next.31
758
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.30 to 0.0.3-next.31
759
+
760
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.29...standards-w3c-dcat-v0.0.3-next.30) (2026-02-04)
761
+
762
+
763
+ ### Miscellaneous Chores
764
+
765
+ * **standards-w3c-dcat:** Synchronize repo versions
766
+
767
+
768
+ ### Dependencies
769
+
770
+ * The following workspace dependencies were updated
771
+ * dependencies
772
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.29 to 0.0.3-next.30
773
+ * @twin.org/standards-foaf bumped from 0.0.3-next.29 to 0.0.3-next.30
774
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.29 to 0.0.3-next.30
775
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.29 to 0.0.3-next.30
776
+
777
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.28...standards-w3c-dcat-v0.0.3-next.29) (2026-02-03)
778
+
779
+
780
+ ### Miscellaneous Chores
781
+
782
+ * **standards-w3c-dcat:** Synchronize repo versions
783
+
784
+
785
+ ### Dependencies
786
+
787
+ * The following workspace dependencies were updated
788
+ * dependencies
789
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.28 to 0.0.3-next.29
790
+ * @twin.org/standards-foaf bumped from 0.0.3-next.28 to 0.0.3-next.29
791
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.28 to 0.0.3-next.29
792
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.28 to 0.0.3-next.29
793
+
794
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.27...standards-w3c-dcat-v0.0.3-next.28) (2026-02-03)
795
+
796
+
797
+ ### Miscellaneous Chores
798
+
799
+ * **standards-w3c-dcat:** Synchronize repo versions
800
+
801
+
802
+ ### Dependencies
803
+
804
+ * The following workspace dependencies were updated
805
+ * dependencies
806
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.27 to 0.0.3-next.28
807
+ * @twin.org/standards-foaf bumped from 0.0.3-next.27 to 0.0.3-next.28
808
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.27 to 0.0.3-next.28
809
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.27 to 0.0.3-next.28
810
+
811
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.26...standards-w3c-dcat-v0.0.3-next.27) (2026-02-03)
812
+
813
+
814
+ ### Miscellaneous Chores
815
+
816
+ * **standards-w3c-dcat:** Synchronize repo versions
817
+
818
+
819
+ ### Dependencies
820
+
821
+ * The following workspace dependencies were updated
822
+ * dependencies
823
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.26 to 0.0.3-next.27
824
+ * @twin.org/standards-foaf bumped from 0.0.3-next.26 to 0.0.3-next.27
825
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.26 to 0.0.3-next.27
826
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.26 to 0.0.3-next.27
827
+
828
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.25...standards-w3c-dcat-v0.0.3-next.26) (2026-02-02)
829
+
830
+
831
+ ### Miscellaneous Chores
832
+
833
+ * **standards-w3c-dcat:** Synchronize repo versions
834
+
835
+
836
+ ### Dependencies
837
+
838
+ * The following workspace dependencies were updated
839
+ * dependencies
840
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.25 to 0.0.3-next.26
841
+ * @twin.org/standards-foaf bumped from 0.0.3-next.25 to 0.0.3-next.26
842
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.25 to 0.0.3-next.26
843
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.25 to 0.0.3-next.26
844
+
845
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.24...standards-w3c-dcat-v0.0.3-next.25) (2026-02-02)
846
+
847
+
848
+ ### Features
849
+
850
+ * register schemas at hosted location ([#128](https://github.com/iotaledger/twin-standards/issues/128)) ([ab35298](https://github.com/iotaledger/twin-standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
851
+
852
+
853
+ ### Dependencies
854
+
855
+ * The following workspace dependencies were updated
856
+ * dependencies
857
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.24 to 0.0.3-next.25
858
+ * @twin.org/standards-foaf bumped from 0.0.3-next.24 to 0.0.3-next.25
859
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.24 to 0.0.3-next.25
860
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.24 to 0.0.3-next.25
861
+
862
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.23...standards-w3c-dcat-v0.0.3-next.24) (2026-01-30)
863
+
864
+
865
+ ### Miscellaneous Chores
866
+
867
+ * **standards-w3c-dcat:** Synchronize repo versions
868
+
869
+
870
+ ### Dependencies
871
+
872
+ * The following workspace dependencies were updated
873
+ * dependencies
874
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.23 to 0.0.3-next.24
875
+ * @twin.org/standards-foaf bumped from 0.0.3-next.23 to 0.0.3-next.24
876
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.23 to 0.0.3-next.24
877
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.23 to 0.0.3-next.24
878
+
879
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.22...standards-w3c-dcat-v0.0.3-next.23) (2026-01-30)
880
+
881
+
882
+ ### Miscellaneous Chores
883
+
884
+ * **standards-w3c-dcat:** Synchronize repo versions
885
+
886
+
887
+ ### Dependencies
888
+
889
+ * The following workspace dependencies were updated
890
+ * dependencies
891
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.22 to 0.0.3-next.23
892
+ * @twin.org/standards-foaf bumped from 0.0.3-next.22 to 0.0.3-next.23
893
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.22 to 0.0.3-next.23
894
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.22 to 0.0.3-next.23
895
+
896
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.21...standards-w3c-dcat-v0.0.3-next.22) (2026-01-29)
897
+
898
+
899
+ ### Miscellaneous Chores
900
+
901
+ * **standards-w3c-dcat:** Synchronize repo versions
902
+
903
+
904
+ ### Dependencies
905
+
906
+ * The following workspace dependencies were updated
907
+ * dependencies
908
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.21 to 0.0.3-next.22
909
+ * @twin.org/standards-foaf bumped from 0.0.3-next.21 to 0.0.3-next.22
910
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.21 to 0.0.3-next.22
911
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.21 to 0.0.3-next.22
912
+
913
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.20...standards-w3c-dcat-v0.0.3-next.21) (2026-01-23)
914
+
915
+
916
+ ### Features
917
+
918
+ * update registrations ([dd3c92f](https://github.com/iotaledger/twin-standards/commit/dd3c92f52ff44679f61ff2a84b9fbc98bdc574d5))
919
+
920
+
921
+ ### Dependencies
922
+
923
+ * The following workspace dependencies were updated
924
+ * dependencies
925
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.20 to 0.0.3-next.21
926
+ * @twin.org/standards-foaf bumped from 0.0.3-next.20 to 0.0.3-next.21
927
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.20 to 0.0.3-next.21
928
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.20 to 0.0.3-next.21
929
+
930
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.19...standards-w3c-dcat-v0.0.3-next.20) (2026-01-21)
931
+
932
+
933
+ ### Bug Fixes
934
+
935
+ * when a prefix is declared in an [@context](https://github.com/context) it should be Namespace and not Context ([#119](https://github.com/iotaledger/twin-standards/issues/119)) ([110cc50](https://github.com/iotaledger/twin-standards/commit/110cc5039394c7fcfada0e3ca001013cb503f31a))
936
+
937
+
938
+ ### Dependencies
939
+
940
+ * The following workspace dependencies were updated
941
+ * dependencies
942
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.19 to 0.0.3-next.20
943
+ * @twin.org/standards-foaf bumped from 0.0.3-next.19 to 0.0.3-next.20
944
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.19 to 0.0.3-next.20
945
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.19 to 0.0.3-next.20
946
+
947
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.18...standards-w3c-dcat-v0.0.3-next.19) (2026-01-21)
948
+
949
+
950
+ ### Miscellaneous Chores
951
+
952
+ * **standards-w3c-dcat:** Synchronize repo versions
953
+
954
+
955
+ ### Dependencies
956
+
957
+ * The following workspace dependencies were updated
958
+ * dependencies
959
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.18 to 0.0.3-next.19
960
+ * @twin.org/standards-foaf bumped from 0.0.3-next.18 to 0.0.3-next.19
961
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.18 to 0.0.3-next.19
962
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.18 to 0.0.3-next.19
963
+
964
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.17...standards-w3c-dcat-v0.0.3-next.18) (2026-01-21)
965
+
966
+
967
+ ### Miscellaneous Chores
968
+
969
+ * **standards-w3c-dcat:** Synchronize repo versions
970
+
971
+
972
+ ### Dependencies
973
+
974
+ * The following workspace dependencies were updated
975
+ * dependencies
976
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.17 to 0.0.3-next.18
977
+ * @twin.org/standards-foaf bumped from 0.0.3-next.17 to 0.0.3-next.18
978
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.17 to 0.0.3-next.18
979
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.17 to 0.0.3-next.18
980
+
981
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.16...standards-w3c-dcat-v0.0.3-next.17) (2026-01-21)
982
+
983
+
984
+ ### Bug Fixes
985
+
986
+ * updating the missing packages ([#114](https://github.com/iotaledger/twin-standards/issues/114)) ([90b03f8](https://github.com/iotaledger/twin-standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
987
+
988
+
989
+ ### Dependencies
990
+
991
+ * The following workspace dependencies were updated
992
+ * dependencies
993
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.16 to 0.0.3-next.17
994
+ * @twin.org/standards-foaf bumped from 0.0.3-next.16 to 0.0.3-next.17
995
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.16 to 0.0.3-next.17
996
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.16 to 0.0.3-next.17
997
+
998
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.15...standards-w3c-dcat-v0.0.3-next.16) (2026-01-19)
999
+
1000
+
1001
+ ### Miscellaneous Chores
1002
+
1003
+ * **standards-w3c-dcat:** Synchronize repo versions
1004
+
1005
+
1006
+ ### Dependencies
1007
+
1008
+ * The following workspace dependencies were updated
1009
+ * dependencies
1010
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.15 to 0.0.3-next.16
1011
+ * @twin.org/standards-foaf bumped from 0.0.3-next.15 to 0.0.3-next.16
1012
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.15 to 0.0.3-next.16
1013
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.15 to 0.0.3-next.16
1014
+
1015
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.14...standards-w3c-dcat-v0.0.3-next.15) (2026-01-16)
1016
+
1017
+
1018
+ ### Miscellaneous Chores
1019
+
1020
+ * **standards-w3c-dcat:** Synchronize repo versions
1021
+
1022
+
1023
+ ### Dependencies
1024
+
1025
+ * The following workspace dependencies were updated
1026
+ * dependencies
1027
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.14 to 0.0.3-next.15
1028
+ * @twin.org/standards-foaf bumped from 0.0.3-next.14 to 0.0.3-next.15
1029
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.14 to 0.0.3-next.15
1030
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.14 to 0.0.3-next.15
1031
+
1032
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.13...standards-w3c-dcat-v0.0.3-next.14) (2026-01-15)
1033
+
1034
+
1035
+ ### Miscellaneous Chores
1036
+
1037
+ * **standards-w3c-dcat:** Synchronize repo versions
1038
+
1039
+
1040
+ ### Dependencies
1041
+
1042
+ * The following workspace dependencies were updated
1043
+ * dependencies
1044
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.13 to 0.0.3-next.14
1045
+ * @twin.org/standards-foaf bumped from 0.0.3-next.13 to 0.0.3-next.14
1046
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.13 to 0.0.3-next.14
1047
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.13 to 0.0.3-next.14
1048
+
1049
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.12...standards-w3c-dcat-v0.0.3-next.13) (2026-01-14)
1050
+
1051
+
1052
+ ### Miscellaneous Chores
1053
+
1054
+ * **standards-w3c-dcat:** Synchronize repo versions
1055
+
1056
+
1057
+ ### Dependencies
1058
+
1059
+ * The following workspace dependencies were updated
1060
+ * dependencies
1061
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.12 to 0.0.3-next.13
1062
+ * @twin.org/standards-foaf bumped from 0.0.3-next.12 to 0.0.3-next.13
1063
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.12 to 0.0.3-next.13
1064
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.12 to 0.0.3-next.13
1065
+
1066
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.11...standards-w3c-dcat-v0.0.3-next.12) (2026-01-14)
1067
+
1068
+
1069
+ ### Miscellaneous Chores
1070
+
1071
+ * **standards-w3c-dcat:** Synchronize repo versions
1072
+
1073
+
1074
+ ### Dependencies
1075
+
1076
+ * The following workspace dependencies were updated
1077
+ * dependencies
1078
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.11 to 0.0.3-next.12
1079
+ * @twin.org/standards-foaf bumped from 0.0.3-next.11 to 0.0.3-next.12
1080
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.11 to 0.0.3-next.12
1081
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.11 to 0.0.3-next.12
1082
+
1083
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.10...standards-w3c-dcat-v0.0.3-next.11) (2026-01-14)
1084
+
1085
+
1086
+ ### Features
1087
+
1088
+ * improved namespaces and contexts ([#102](https://github.com/iotaledger/twin-standards/issues/102)) ([c74c370](https://github.com/iotaledger/twin-standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
1089
+
1090
+
1091
+ ### Dependencies
1092
+
1093
+ * The following workspace dependencies were updated
1094
+ * dependencies
1095
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.10 to 0.0.3-next.11
1096
+ * @twin.org/standards-foaf bumped from 0.0.3-next.10 to 0.0.3-next.11
1097
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.10 to 0.0.3-next.11
1098
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.10 to 0.0.3-next.11
1099
+
1100
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.9...standards-w3c-dcat-v0.0.3-next.10) (2026-01-13)
1101
+
1102
+
1103
+ ### Features
1104
+
1105
+ * naming fixing and usage ([#98](https://github.com/iotaledger/twin-standards/issues/98)) ([9e95344](https://github.com/iotaledger/twin-standards/commit/9e953440963c9bc028399be9cbea25d92922bd01))
1106
+
1107
+
1108
+ ### Dependencies
1109
+
1110
+ * The following workspace dependencies were updated
1111
+ * dependencies
1112
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.9 to 0.0.3-next.10
1113
+ * @twin.org/standards-foaf bumped from 0.0.3-next.9 to 0.0.3-next.10
1114
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.9 to 0.0.3-next.10
1115
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.9 to 0.0.3-next.10
1116
+
1117
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.8...standards-w3c-dcat-v0.0.3-next.9) (2026-01-09)
4
1118
 
5
1119
 
6
1120
  ### Miscellaneous Chores
@@ -17,17 +1131,17 @@
17
1131
  * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.8 to 0.0.3-next.9
18
1132
  * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.8 to 0.0.3-next.9
19
1133
 
20
- ## [0.0.3-next.8](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.7...standards-w3c-dcat-v0.0.3-next.8) (2026-01-08)
1134
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.7...standards-w3c-dcat-v0.0.3-next.8) (2026-01-08)
21
1135
 
22
1136
 
23
1137
  ### Features
24
1138
 
25
- * add ds protocol catalog dataset ([#86](https://github.com/twinfoundation/standards/issues/86)) ([45600e6](https://github.com/twinfoundation/standards/commit/45600e6cba212d85e250cb12cbdcb712d8db0e52))
1139
+ * add ds protocol catalog dataset ([#86](https://github.com/iotaledger/twin-standards/issues/86)) ([45600e6](https://github.com/iotaledger/twin-standards/commit/45600e6cba212d85e250cb12cbdcb712d8db0e52))
26
1140
 
27
1141
 
28
1142
  ### Bug Fixes
29
1143
 
30
- * dcat LD Context fix and aligned with DCAT prefixed models ([#85](https://github.com/twinfoundation/standards/issues/85)) ([4546167](https://github.com/twinfoundation/standards/commit/4546167b1f61dba85206a64a8b2535f468d74845))
1144
+ * dcat LD Context fix and aligned with DCAT prefixed models ([#85](https://github.com/iotaledger/twin-standards/issues/85)) ([4546167](https://github.com/iotaledger/twin-standards/commit/4546167b1f61dba85206a64a8b2535f468d74845))
31
1145
 
32
1146
 
33
1147
  ### Dependencies
@@ -39,7 +1153,7 @@
39
1153
  * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.7 to 0.0.3-next.8
40
1154
  * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.7 to 0.0.3-next.8
41
1155
 
42
- ## [0.0.3-next.7](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.6...standards-w3c-dcat-v0.0.3-next.7) (2026-01-06)
1156
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.6...standards-w3c-dcat-v0.0.3-next.7) (2026-01-06)
43
1157
 
44
1158
 
45
1159
  ### Miscellaneous Chores
@@ -56,7 +1170,7 @@
56
1170
  * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.6 to 0.0.3-next.7
57
1171
  * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.6 to 0.0.3-next.7
58
1172
 
59
- ## [0.0.3-next.6](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.5...standards-w3c-dcat-v0.0.3-next.6) (2025-12-03)
1173
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.5...standards-w3c-dcat-v0.0.3-next.6) (2025-12-03)
60
1174
 
61
1175
 
62
1176
  ### Miscellaneous Chores
@@ -73,7 +1187,7 @@
73
1187
  * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.5 to 0.0.3-next.6
74
1188
  * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.5 to 0.0.3-next.6
75
1189
 
76
- ## [0.0.3-next.5](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.4...standards-w3c-dcat-v0.0.3-next.5) (2025-11-28)
1190
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.4...standards-w3c-dcat-v0.0.3-next.5) (2025-11-28)
77
1191
 
78
1192
 
79
1193
  ### Miscellaneous Chores
@@ -90,7 +1204,7 @@
90
1204
  * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.4 to 0.0.3-next.5
91
1205
  * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.4 to 0.0.3-next.5
92
1206
 
93
- ## [0.0.3-next.4](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.3...standards-w3c-dcat-v0.0.3-next.4) (2025-11-18)
1207
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.3...standards-w3c-dcat-v0.0.3-next.4) (2025-11-18)
94
1208
 
95
1209
 
96
1210
  ### Miscellaneous Chores
@@ -107,12 +1221,12 @@
107
1221
  * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.3 to 0.0.3-next.4
108
1222
  * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.3 to 0.0.3-next.4
109
1223
 
110
- ## [0.0.3-next.3](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.2...standards-w3c-dcat-v0.0.3-next.3) (2025-11-18)
1224
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.2...standards-w3c-dcat-v0.0.3-next.3) (2025-11-18)
111
1225
 
112
1226
 
113
1227
  ### Features
114
1228
 
115
- * add w3c dcat standards package ([#68](https://github.com/twinfoundation/standards/issues/68)) ([85746c6](https://github.com/twinfoundation/standards/commit/85746c673464498a52e9c30ce498fd88b81a7434))
1229
+ * add w3c dcat standards package ([#68](https://github.com/iotaledger/twin-standards/issues/68)) ([85746c6](https://github.com/iotaledger/twin-standards/commit/85746c673464498a52e9c30ce498fd88b81a7434))
116
1230
 
117
1231
 
118
1232
  ### Dependencies