@twin.org/standards-w3c-dcat 0.0.3-next.3 → 0.0.3-next.30

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 (102) hide show
  1. package/dist/es/dataTypes/dcatDataTypes.js +54 -57
  2. package/dist/es/dataTypes/dcatDataTypes.js.map +1 -1
  3. package/dist/es/index.js +10 -9
  4. package/dist/es/index.js.map +1 -1
  5. package/dist/es/models/IDcatCatalog.js +2 -0
  6. package/dist/es/models/IDcatCatalog.js.map +1 -0
  7. package/dist/es/models/IDcatCatalogRecord.js +2 -0
  8. package/dist/es/models/IDcatCatalogRecord.js.map +1 -0
  9. package/dist/es/models/IDcatDataService.js +2 -0
  10. package/dist/es/models/IDcatDataService.js.map +1 -0
  11. package/dist/es/models/IDcatDataset.js +2 -0
  12. package/dist/es/models/IDcatDataset.js.map +1 -0
  13. package/dist/es/models/IDcatDatasetSeries.js +2 -0
  14. package/dist/es/models/IDcatDatasetSeries.js.map +1 -0
  15. package/dist/es/models/IDcatDistribution.js +2 -0
  16. package/dist/es/models/IDcatDistribution.js.map +1 -0
  17. package/dist/es/models/IDcatRelationship.js +2 -0
  18. package/dist/es/models/IDcatRelationship.js.map +1 -0
  19. package/dist/es/models/IDcatResource.js +2 -0
  20. package/dist/es/models/IDcatResource.js.map +1 -0
  21. package/dist/es/models/IDcatRole.js +2 -0
  22. package/dist/es/models/IDcatRole.js.map +1 -0
  23. package/dist/es/models/dcatClasses.js +9 -9
  24. package/dist/es/models/dcatClasses.js.map +1 -1
  25. package/dist/es/models/dcatContextType.js.map +1 -1
  26. package/dist/es/models/dcatContexts.js +16 -16
  27. package/dist/es/models/dcatContexts.js.map +1 -1
  28. package/dist/es/models/types/dcatContextFreeTypes.js +4 -0
  29. package/dist/es/models/types/dcatContextFreeTypes.js.map +1 -0
  30. package/dist/es/models/types/dcatPropertyTypes.js.map +1 -1
  31. package/dist/es/schemas/{Catalog.json → DcatCatalog.json} +37 -28
  32. package/dist/es/schemas/{CatalogRecord.json → DcatCatalogRecord.json} +16 -7
  33. package/dist/es/schemas/{DataService.json → DcatDataService.json} +20 -11
  34. package/dist/es/schemas/{Dataset.json → DcatDataset.json} +27 -18
  35. package/dist/es/schemas/{DatasetSeries.json → DcatDatasetSeries.json} +25 -16
  36. package/dist/es/schemas/{Distribution.json → DcatDistribution.json} +18 -9
  37. package/dist/es/schemas/{Relationship.json → DcatRelationship.json} +11 -3
  38. package/dist/es/schemas/{Resource.json → DcatResource.json} +24 -15
  39. package/dist/es/schemas/{Role.json → DcatRole.json} +12 -3
  40. package/dist/types/index.d.ts +10 -9
  41. package/dist/types/models/{ICatalog.d.ts → IDcatCatalog.d.ts} +10 -11
  42. package/dist/types/models/{ICatalogRecord.d.ts → IDcatCatalogRecord.d.ts} +9 -9
  43. package/dist/types/models/{IDataService.d.ts → IDcatDataService.d.ts} +2 -2
  44. package/dist/types/models/{IDataset.d.ts → IDcatDataset.d.ts} +9 -9
  45. package/dist/types/models/{IDatasetSeries.d.ts → IDcatDatasetSeries.d.ts} +2 -2
  46. package/dist/types/models/{IDistribution.d.ts → IDcatDistribution.d.ts} +10 -10
  47. package/dist/types/models/{IRelationship.d.ts → IDcatRelationship.d.ts} +3 -3
  48. package/dist/types/models/{IResource.d.ts → IDcatResource.d.ts} +14 -14
  49. package/dist/types/models/{IRole.d.ts → IDcatRole.d.ts} +4 -4
  50. package/dist/types/models/dcatClasses.d.ts +9 -9
  51. package/dist/types/models/dcatContextType.d.ts +6 -2
  52. package/dist/types/models/dcatContexts.d.ts +16 -16
  53. package/dist/types/models/types/dcatContextFreeTypes.d.ts +40 -0
  54. package/dist/types/models/types/dcatPropertyTypes.d.ts +6 -6
  55. package/docs/changelog.md +464 -0
  56. package/docs/reference/index.md +20 -15
  57. package/docs/reference/interfaces/{ICatalog.md → IDcatCatalog.md} +49 -49
  58. package/docs/reference/interfaces/{ICatalogRecord.md → IDcatCatalogRecord.md} +7 -7
  59. package/docs/reference/interfaces/{IDataService.md → IDcatDataService.md} +33 -33
  60. package/docs/reference/interfaces/{IDataset.md → IDcatDataset.md} +37 -37
  61. package/docs/reference/interfaces/{IDatasetSeries.md → IDcatDatasetSeries.md} +43 -43
  62. package/docs/reference/interfaces/{IDistribution.md → IDcatDistribution.md} +6 -6
  63. package/docs/reference/interfaces/{IRelationship.md → IDcatRelationship.md} +3 -3
  64. package/docs/reference/interfaces/{IResource.md → IDcatResource.md} +13 -13
  65. package/docs/reference/interfaces/{IRole.md → IDcatRole.md} +5 -5
  66. package/docs/reference/type-aliases/CatalogOptionalContext.md +11 -0
  67. package/docs/reference/type-aliases/CatalogRecordOptionalContext.md +11 -0
  68. package/docs/reference/type-aliases/DataServiceOptionalContext.md +11 -0
  69. package/docs/reference/type-aliases/DatasetOptionalContext.md +11 -0
  70. package/docs/reference/type-aliases/DcatContextType.md +10 -2
  71. package/docs/reference/type-aliases/{DateTimeType.md → DcatDateTimeType.md} +2 -2
  72. package/docs/reference/type-aliases/DcatDecimalType.md +5 -0
  73. package/docs/reference/type-aliases/DcatDurationType.md +5 -0
  74. package/docs/reference/type-aliases/DcatIriType.md +5 -0
  75. package/docs/reference/type-aliases/{LiteralType.md → DcatLiteralType.md} +2 -2
  76. package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +5 -0
  77. package/docs/reference/type-aliases/DistributionOptionalContext.md +11 -0
  78. package/docs/reference/variables/DcatClasses.md +9 -9
  79. package/docs/reference/variables/DcatContexts.md +22 -28
  80. package/package.json +5 -5
  81. package/dist/es/models/ICatalog.js +0 -2
  82. package/dist/es/models/ICatalog.js.map +0 -1
  83. package/dist/es/models/ICatalogRecord.js +0 -2
  84. package/dist/es/models/ICatalogRecord.js.map +0 -1
  85. package/dist/es/models/IDataService.js +0 -2
  86. package/dist/es/models/IDataService.js.map +0 -1
  87. package/dist/es/models/IDataset.js +0 -2
  88. package/dist/es/models/IDataset.js.map +0 -1
  89. package/dist/es/models/IDatasetSeries.js +0 -2
  90. package/dist/es/models/IDatasetSeries.js.map +0 -1
  91. package/dist/es/models/IDistribution.js +0 -2
  92. package/dist/es/models/IDistribution.js.map +0 -1
  93. package/dist/es/models/IRelationship.js +0 -2
  94. package/dist/es/models/IRelationship.js.map +0 -1
  95. package/dist/es/models/IResource.js +0 -2
  96. package/dist/es/models/IResource.js.map +0 -1
  97. package/dist/es/models/IRole.js +0 -2
  98. package/dist/es/models/IRole.js.map +0 -1
  99. package/docs/reference/type-aliases/DecimalType.md +0 -5
  100. package/docs/reference/type-aliases/DurationType.md +0 -5
  101. package/docs/reference/type-aliases/IriType.md +0 -5
  102. package/docs/reference/type-aliases/NonNegativeIntegerType.md +0 -5
package/docs/changelog.md CHANGED
@@ -1,5 +1,469 @@
1
1
  # @twin.org/standards-w3c-dcat - Changelog
2
2
 
3
+ ## [0.0.3-next.30](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.29...standards-w3c-dcat-v0.0.3-next.30) (2026-02-04)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **standards-w3c-dcat:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.29 to 0.0.3-next.30
16
+ * @twin.org/standards-foaf bumped from 0.0.3-next.29 to 0.0.3-next.30
17
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.29 to 0.0.3-next.30
18
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.29 to 0.0.3-next.30
19
+
20
+ ## [0.0.3-next.29](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.28...standards-w3c-dcat-v0.0.3-next.29) (2026-02-03)
21
+
22
+
23
+ ### Miscellaneous Chores
24
+
25
+ * **standards-w3c-dcat:** Synchronize repo versions
26
+
27
+
28
+ ### Dependencies
29
+
30
+ * The following workspace dependencies were updated
31
+ * dependencies
32
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.28 to 0.0.3-next.29
33
+ * @twin.org/standards-foaf bumped from 0.0.3-next.28 to 0.0.3-next.29
34
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.28 to 0.0.3-next.29
35
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.28 to 0.0.3-next.29
36
+
37
+ ## [0.0.3-next.28](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.27...standards-w3c-dcat-v0.0.3-next.28) (2026-02-03)
38
+
39
+
40
+ ### Miscellaneous Chores
41
+
42
+ * **standards-w3c-dcat:** Synchronize repo versions
43
+
44
+
45
+ ### Dependencies
46
+
47
+ * The following workspace dependencies were updated
48
+ * dependencies
49
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.27 to 0.0.3-next.28
50
+ * @twin.org/standards-foaf bumped from 0.0.3-next.27 to 0.0.3-next.28
51
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.27 to 0.0.3-next.28
52
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.27 to 0.0.3-next.28
53
+
54
+ ## [0.0.3-next.27](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.26...standards-w3c-dcat-v0.0.3-next.27) (2026-02-03)
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.26 to 0.0.3-next.27
67
+ * @twin.org/standards-foaf bumped from 0.0.3-next.26 to 0.0.3-next.27
68
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.26 to 0.0.3-next.27
69
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.26 to 0.0.3-next.27
70
+
71
+ ## [0.0.3-next.26](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.25...standards-w3c-dcat-v0.0.3-next.26) (2026-02-02)
72
+
73
+
74
+ ### Miscellaneous Chores
75
+
76
+ * **standards-w3c-dcat:** Synchronize repo versions
77
+
78
+
79
+ ### Dependencies
80
+
81
+ * The following workspace dependencies were updated
82
+ * dependencies
83
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.25 to 0.0.3-next.26
84
+ * @twin.org/standards-foaf bumped from 0.0.3-next.25 to 0.0.3-next.26
85
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.25 to 0.0.3-next.26
86
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.25 to 0.0.3-next.26
87
+
88
+ ## [0.0.3-next.25](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.24...standards-w3c-dcat-v0.0.3-next.25) (2026-02-02)
89
+
90
+
91
+ ### Features
92
+
93
+ * register schemas at hosted location ([#128](https://github.com/twinfoundation/standards/issues/128)) ([ab35298](https://github.com/twinfoundation/standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
94
+
95
+
96
+ ### Dependencies
97
+
98
+ * The following workspace dependencies were updated
99
+ * dependencies
100
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.24 to 0.0.3-next.25
101
+ * @twin.org/standards-foaf bumped from 0.0.3-next.24 to 0.0.3-next.25
102
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.24 to 0.0.3-next.25
103
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.24 to 0.0.3-next.25
104
+
105
+ ## [0.0.3-next.24](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.23...standards-w3c-dcat-v0.0.3-next.24) (2026-01-30)
106
+
107
+
108
+ ### Miscellaneous Chores
109
+
110
+ * **standards-w3c-dcat:** Synchronize repo versions
111
+
112
+
113
+ ### Dependencies
114
+
115
+ * The following workspace dependencies were updated
116
+ * dependencies
117
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.23 to 0.0.3-next.24
118
+ * @twin.org/standards-foaf bumped from 0.0.3-next.23 to 0.0.3-next.24
119
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.23 to 0.0.3-next.24
120
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.23 to 0.0.3-next.24
121
+
122
+ ## [0.0.3-next.23](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.22...standards-w3c-dcat-v0.0.3-next.23) (2026-01-30)
123
+
124
+
125
+ ### Miscellaneous Chores
126
+
127
+ * **standards-w3c-dcat:** Synchronize repo versions
128
+
129
+
130
+ ### Dependencies
131
+
132
+ * The following workspace dependencies were updated
133
+ * dependencies
134
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.22 to 0.0.3-next.23
135
+ * @twin.org/standards-foaf bumped from 0.0.3-next.22 to 0.0.3-next.23
136
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.22 to 0.0.3-next.23
137
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.22 to 0.0.3-next.23
138
+
139
+ ## [0.0.3-next.22](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.21...standards-w3c-dcat-v0.0.3-next.22) (2026-01-29)
140
+
141
+
142
+ ### Miscellaneous Chores
143
+
144
+ * **standards-w3c-dcat:** Synchronize repo versions
145
+
146
+
147
+ ### Dependencies
148
+
149
+ * The following workspace dependencies were updated
150
+ * dependencies
151
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.21 to 0.0.3-next.22
152
+ * @twin.org/standards-foaf bumped from 0.0.3-next.21 to 0.0.3-next.22
153
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.21 to 0.0.3-next.22
154
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.21 to 0.0.3-next.22
155
+
156
+ ## [0.0.3-next.21](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.20...standards-w3c-dcat-v0.0.3-next.21) (2026-01-23)
157
+
158
+
159
+ ### Features
160
+
161
+ * update registrations ([dd3c92f](https://github.com/twinfoundation/standards/commit/dd3c92f52ff44679f61ff2a84b9fbc98bdc574d5))
162
+
163
+
164
+ ### Dependencies
165
+
166
+ * The following workspace dependencies were updated
167
+ * dependencies
168
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.20 to 0.0.3-next.21
169
+ * @twin.org/standards-foaf bumped from 0.0.3-next.20 to 0.0.3-next.21
170
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.20 to 0.0.3-next.21
171
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.20 to 0.0.3-next.21
172
+
173
+ ## [0.0.3-next.20](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.19...standards-w3c-dcat-v0.0.3-next.20) (2026-01-21)
174
+
175
+
176
+ ### Bug Fixes
177
+
178
+ * when a prefix is declared in an [@context](https://github.com/context) it should be Namespace and not Context ([#119](https://github.com/twinfoundation/standards/issues/119)) ([110cc50](https://github.com/twinfoundation/standards/commit/110cc5039394c7fcfada0e3ca001013cb503f31a))
179
+
180
+
181
+ ### Dependencies
182
+
183
+ * The following workspace dependencies were updated
184
+ * dependencies
185
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.19 to 0.0.3-next.20
186
+ * @twin.org/standards-foaf bumped from 0.0.3-next.19 to 0.0.3-next.20
187
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.19 to 0.0.3-next.20
188
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.19 to 0.0.3-next.20
189
+
190
+ ## [0.0.3-next.19](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.18...standards-w3c-dcat-v0.0.3-next.19) (2026-01-21)
191
+
192
+
193
+ ### Miscellaneous Chores
194
+
195
+ * **standards-w3c-dcat:** Synchronize repo versions
196
+
197
+
198
+ ### Dependencies
199
+
200
+ * The following workspace dependencies were updated
201
+ * dependencies
202
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.18 to 0.0.3-next.19
203
+ * @twin.org/standards-foaf bumped from 0.0.3-next.18 to 0.0.3-next.19
204
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.18 to 0.0.3-next.19
205
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.18 to 0.0.3-next.19
206
+
207
+ ## [0.0.3-next.18](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.17...standards-w3c-dcat-v0.0.3-next.18) (2026-01-21)
208
+
209
+
210
+ ### Miscellaneous Chores
211
+
212
+ * **standards-w3c-dcat:** Synchronize repo versions
213
+
214
+
215
+ ### Dependencies
216
+
217
+ * The following workspace dependencies were updated
218
+ * dependencies
219
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.17 to 0.0.3-next.18
220
+ * @twin.org/standards-foaf bumped from 0.0.3-next.17 to 0.0.3-next.18
221
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.17 to 0.0.3-next.18
222
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.17 to 0.0.3-next.18
223
+
224
+ ## [0.0.3-next.17](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.16...standards-w3c-dcat-v0.0.3-next.17) (2026-01-21)
225
+
226
+
227
+ ### Bug Fixes
228
+
229
+ * updating the missing packages ([#114](https://github.com/twinfoundation/standards/issues/114)) ([90b03f8](https://github.com/twinfoundation/standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
230
+
231
+
232
+ ### Dependencies
233
+
234
+ * The following workspace dependencies were updated
235
+ * dependencies
236
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.16 to 0.0.3-next.17
237
+ * @twin.org/standards-foaf bumped from 0.0.3-next.16 to 0.0.3-next.17
238
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.16 to 0.0.3-next.17
239
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.16 to 0.0.3-next.17
240
+
241
+ ## [0.0.3-next.16](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.15...standards-w3c-dcat-v0.0.3-next.16) (2026-01-19)
242
+
243
+
244
+ ### Miscellaneous Chores
245
+
246
+ * **standards-w3c-dcat:** Synchronize repo versions
247
+
248
+
249
+ ### Dependencies
250
+
251
+ * The following workspace dependencies were updated
252
+ * dependencies
253
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.15 to 0.0.3-next.16
254
+ * @twin.org/standards-foaf bumped from 0.0.3-next.15 to 0.0.3-next.16
255
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.15 to 0.0.3-next.16
256
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.15 to 0.0.3-next.16
257
+
258
+ ## [0.0.3-next.15](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.14...standards-w3c-dcat-v0.0.3-next.15) (2026-01-16)
259
+
260
+
261
+ ### Miscellaneous Chores
262
+
263
+ * **standards-w3c-dcat:** Synchronize repo versions
264
+
265
+
266
+ ### Dependencies
267
+
268
+ * The following workspace dependencies were updated
269
+ * dependencies
270
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.14 to 0.0.3-next.15
271
+ * @twin.org/standards-foaf bumped from 0.0.3-next.14 to 0.0.3-next.15
272
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.14 to 0.0.3-next.15
273
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.14 to 0.0.3-next.15
274
+
275
+ ## [0.0.3-next.14](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.13...standards-w3c-dcat-v0.0.3-next.14) (2026-01-15)
276
+
277
+
278
+ ### Miscellaneous Chores
279
+
280
+ * **standards-w3c-dcat:** Synchronize repo versions
281
+
282
+
283
+ ### Dependencies
284
+
285
+ * The following workspace dependencies were updated
286
+ * dependencies
287
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.13 to 0.0.3-next.14
288
+ * @twin.org/standards-foaf bumped from 0.0.3-next.13 to 0.0.3-next.14
289
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.13 to 0.0.3-next.14
290
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.13 to 0.0.3-next.14
291
+
292
+ ## [0.0.3-next.13](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.12...standards-w3c-dcat-v0.0.3-next.13) (2026-01-14)
293
+
294
+
295
+ ### Miscellaneous Chores
296
+
297
+ * **standards-w3c-dcat:** Synchronize repo versions
298
+
299
+
300
+ ### Dependencies
301
+
302
+ * The following workspace dependencies were updated
303
+ * dependencies
304
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.12 to 0.0.3-next.13
305
+ * @twin.org/standards-foaf bumped from 0.0.3-next.12 to 0.0.3-next.13
306
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.12 to 0.0.3-next.13
307
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.12 to 0.0.3-next.13
308
+
309
+ ## [0.0.3-next.12](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.11...standards-w3c-dcat-v0.0.3-next.12) (2026-01-14)
310
+
311
+
312
+ ### Miscellaneous Chores
313
+
314
+ * **standards-w3c-dcat:** Synchronize repo versions
315
+
316
+
317
+ ### Dependencies
318
+
319
+ * The following workspace dependencies were updated
320
+ * dependencies
321
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.11 to 0.0.3-next.12
322
+ * @twin.org/standards-foaf bumped from 0.0.3-next.11 to 0.0.3-next.12
323
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.11 to 0.0.3-next.12
324
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.11 to 0.0.3-next.12
325
+
326
+ ## [0.0.3-next.11](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.10...standards-w3c-dcat-v0.0.3-next.11) (2026-01-14)
327
+
328
+
329
+ ### Features
330
+
331
+ * improved namespaces and contexts ([#102](https://github.com/twinfoundation/standards/issues/102)) ([c74c370](https://github.com/twinfoundation/standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
332
+
333
+
334
+ ### Dependencies
335
+
336
+ * The following workspace dependencies were updated
337
+ * dependencies
338
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.10 to 0.0.3-next.11
339
+ * @twin.org/standards-foaf bumped from 0.0.3-next.10 to 0.0.3-next.11
340
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.10 to 0.0.3-next.11
341
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.10 to 0.0.3-next.11
342
+
343
+ ## [0.0.3-next.10](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.9...standards-w3c-dcat-v0.0.3-next.10) (2026-01-13)
344
+
345
+
346
+ ### Features
347
+
348
+ * naming fixing and usage ([#98](https://github.com/twinfoundation/standards/issues/98)) ([9e95344](https://github.com/twinfoundation/standards/commit/9e953440963c9bc028399be9cbea25d92922bd01))
349
+
350
+
351
+ ### Dependencies
352
+
353
+ * The following workspace dependencies were updated
354
+ * dependencies
355
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.9 to 0.0.3-next.10
356
+ * @twin.org/standards-foaf bumped from 0.0.3-next.9 to 0.0.3-next.10
357
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.9 to 0.0.3-next.10
358
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.9 to 0.0.3-next.10
359
+
360
+ ## [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)
361
+
362
+
363
+ ### Miscellaneous Chores
364
+
365
+ * **standards-w3c-dcat:** Synchronize repo versions
366
+
367
+
368
+ ### Dependencies
369
+
370
+ * The following workspace dependencies were updated
371
+ * dependencies
372
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.8 to 0.0.3-next.9
373
+ * @twin.org/standards-foaf bumped from 0.0.3-next.8 to 0.0.3-next.9
374
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.8 to 0.0.3-next.9
375
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.8 to 0.0.3-next.9
376
+
377
+ ## [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)
378
+
379
+
380
+ ### Features
381
+
382
+ * add ds protocol catalog dataset ([#86](https://github.com/twinfoundation/standards/issues/86)) ([45600e6](https://github.com/twinfoundation/standards/commit/45600e6cba212d85e250cb12cbdcb712d8db0e52))
383
+
384
+
385
+ ### Bug Fixes
386
+
387
+ * 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))
388
+
389
+
390
+ ### Dependencies
391
+
392
+ * The following workspace dependencies were updated
393
+ * dependencies
394
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.7 to 0.0.3-next.8
395
+ * @twin.org/standards-foaf bumped from 0.0.3-next.7 to 0.0.3-next.8
396
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.7 to 0.0.3-next.8
397
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.7 to 0.0.3-next.8
398
+
399
+ ## [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)
400
+
401
+
402
+ ### Miscellaneous Chores
403
+
404
+ * **standards-w3c-dcat:** Synchronize repo versions
405
+
406
+
407
+ ### Dependencies
408
+
409
+ * The following workspace dependencies were updated
410
+ * dependencies
411
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.6 to 0.0.3-next.7
412
+ * @twin.org/standards-foaf bumped from 0.0.3-next.6 to 0.0.3-next.7
413
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.6 to 0.0.3-next.7
414
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.6 to 0.0.3-next.7
415
+
416
+ ## [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)
417
+
418
+
419
+ ### Miscellaneous Chores
420
+
421
+ * **standards-w3c-dcat:** Synchronize repo versions
422
+
423
+
424
+ ### Dependencies
425
+
426
+ * The following workspace dependencies were updated
427
+ * dependencies
428
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.5 to 0.0.3-next.6
429
+ * @twin.org/standards-foaf bumped from 0.0.3-next.5 to 0.0.3-next.6
430
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.5 to 0.0.3-next.6
431
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.5 to 0.0.3-next.6
432
+
433
+ ## [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)
434
+
435
+
436
+ ### Miscellaneous Chores
437
+
438
+ * **standards-w3c-dcat:** Synchronize repo versions
439
+
440
+
441
+ ### Dependencies
442
+
443
+ * The following workspace dependencies were updated
444
+ * dependencies
445
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.4 to 0.0.3-next.5
446
+ * @twin.org/standards-foaf bumped from 0.0.3-next.4 to 0.0.3-next.5
447
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.4 to 0.0.3-next.5
448
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.4 to 0.0.3-next.5
449
+
450
+ ## [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)
451
+
452
+
453
+ ### Miscellaneous Chores
454
+
455
+ * **standards-w3c-dcat:** Synchronize repo versions
456
+
457
+
458
+ ### Dependencies
459
+
460
+ * The following workspace dependencies were updated
461
+ * dependencies
462
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.3 to 0.0.3-next.4
463
+ * @twin.org/standards-foaf bumped from 0.0.3-next.3 to 0.0.3-next.4
464
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.3 to 0.0.3-next.4
465
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.3 to 0.0.3-next.4
466
+
3
467
  ## [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)
4
468
 
5
469
 
@@ -6,15 +6,15 @@
6
6
 
7
7
  ## Interfaces
8
8
 
9
- - [ICatalog](interfaces/ICatalog.md)
10
- - [ICatalogRecord](interfaces/ICatalogRecord.md)
11
- - [IDataService](interfaces/IDataService.md)
12
- - [IDataset](interfaces/IDataset.md)
13
- - [IDatasetSeries](interfaces/IDatasetSeries.md)
14
- - [IDistribution](interfaces/IDistribution.md)
15
- - [IRelationship](interfaces/IRelationship.md)
16
- - [IResource](interfaces/IResource.md)
17
- - [IRole](interfaces/IRole.md)
9
+ - [IDcatCatalog](interfaces/IDcatCatalog.md)
10
+ - [IDcatCatalogRecord](interfaces/IDcatCatalogRecord.md)
11
+ - [IDcatDataService](interfaces/IDcatDataService.md)
12
+ - [IDcatDataset](interfaces/IDcatDataset.md)
13
+ - [IDcatDatasetSeries](interfaces/IDcatDatasetSeries.md)
14
+ - [IDcatDistribution](interfaces/IDcatDistribution.md)
15
+ - [IDcatRelationship](interfaces/IDcatRelationship.md)
16
+ - [IDcatResource](interfaces/IDcatResource.md)
17
+ - [IDcatRole](interfaces/IDcatRole.md)
18
18
 
19
19
  ## Type Aliases
20
20
 
@@ -22,12 +22,17 @@
22
22
  - [DcatContextType](type-aliases/DcatContextType.md)
23
23
  - [DcatContexts](type-aliases/DcatContexts.md)
24
24
  - [DcatRelationshipType](type-aliases/DcatRelationshipType.md)
25
- - [LiteralType](type-aliases/LiteralType.md)
26
- - [IriType](type-aliases/IriType.md)
27
- - [DateTimeType](type-aliases/DateTimeType.md)
28
- - [DurationType](type-aliases/DurationType.md)
29
- - [DecimalType](type-aliases/DecimalType.md)
30
- - [NonNegativeIntegerType](type-aliases/NonNegativeIntegerType.md)
25
+ - [DatasetOptionalContext](type-aliases/DatasetOptionalContext.md)
26
+ - [DataServiceOptionalContext](type-aliases/DataServiceOptionalContext.md)
27
+ - [CatalogOptionalContext](type-aliases/CatalogOptionalContext.md)
28
+ - [CatalogRecordOptionalContext](type-aliases/CatalogRecordOptionalContext.md)
29
+ - [DistributionOptionalContext](type-aliases/DistributionOptionalContext.md)
30
+ - [DcatLiteralType](type-aliases/DcatLiteralType.md)
31
+ - [DcatIriType](type-aliases/DcatIriType.md)
32
+ - [DcatDateTimeType](type-aliases/DcatDateTimeType.md)
33
+ - [DcatDurationType](type-aliases/DcatDurationType.md)
34
+ - [DcatDecimalType](type-aliases/DcatDecimalType.md)
35
+ - [DcatNonNegativeIntegerType](type-aliases/DcatNonNegativeIntegerType.md)
31
36
 
32
37
  ## Variables
33
38