@twin.org/standards-w3c-dcat 0.0.3-next.3 → 0.0.3-next.31
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.
- package/dist/es/dataTypes/dcatDataTypes.js +54 -57
- package/dist/es/dataTypes/dcatDataTypes.js.map +1 -1
- package/dist/es/index.js +10 -9
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IDcatCatalog.js +2 -0
- package/dist/es/models/IDcatCatalog.js.map +1 -0
- package/dist/es/models/IDcatCatalogRecord.js +2 -0
- package/dist/es/models/IDcatCatalogRecord.js.map +1 -0
- package/dist/es/models/IDcatDataService.js +2 -0
- package/dist/es/models/IDcatDataService.js.map +1 -0
- package/dist/es/models/IDcatDataset.js +2 -0
- package/dist/es/models/IDcatDataset.js.map +1 -0
- package/dist/es/models/IDcatDatasetSeries.js +2 -0
- package/dist/es/models/IDcatDatasetSeries.js.map +1 -0
- package/dist/es/models/IDcatDistribution.js +2 -0
- package/dist/es/models/IDcatDistribution.js.map +1 -0
- package/dist/es/models/IDcatRelationship.js +2 -0
- package/dist/es/models/IDcatRelationship.js.map +1 -0
- package/dist/es/models/IDcatResource.js +2 -0
- package/dist/es/models/IDcatResource.js.map +1 -0
- package/dist/es/models/IDcatRole.js +2 -0
- package/dist/es/models/IDcatRole.js.map +1 -0
- package/dist/es/models/dcatClasses.js +9 -9
- package/dist/es/models/dcatClasses.js.map +1 -1
- package/dist/es/models/dcatContextType.js.map +1 -1
- package/dist/es/models/dcatContexts.js +16 -16
- package/dist/es/models/dcatContexts.js.map +1 -1
- package/dist/es/models/types/dcatContextFreeTypes.js +4 -0
- package/dist/es/models/types/dcatContextFreeTypes.js.map +1 -0
- package/dist/es/models/types/dcatPropertyTypes.js.map +1 -1
- package/dist/es/schemas/{Catalog.json → DcatCatalog.json} +37 -28
- package/dist/es/schemas/{CatalogRecord.json → DcatCatalogRecord.json} +16 -7
- package/dist/es/schemas/{DataService.json → DcatDataService.json} +20 -11
- package/dist/es/schemas/{Dataset.json → DcatDataset.json} +27 -18
- package/dist/es/schemas/{DatasetSeries.json → DcatDatasetSeries.json} +25 -16
- package/dist/es/schemas/{Distribution.json → DcatDistribution.json} +18 -9
- package/dist/es/schemas/{Relationship.json → DcatRelationship.json} +11 -3
- package/dist/es/schemas/{Resource.json → DcatResource.json} +24 -15
- package/dist/es/schemas/{Role.json → DcatRole.json} +12 -3
- package/dist/types/index.d.ts +10 -9
- package/dist/types/models/{ICatalog.d.ts → IDcatCatalog.d.ts} +10 -11
- package/dist/types/models/{ICatalogRecord.d.ts → IDcatCatalogRecord.d.ts} +9 -9
- package/dist/types/models/{IDataService.d.ts → IDcatDataService.d.ts} +2 -2
- package/dist/types/models/{IDataset.d.ts → IDcatDataset.d.ts} +9 -9
- package/dist/types/models/{IDatasetSeries.d.ts → IDcatDatasetSeries.d.ts} +2 -2
- package/dist/types/models/{IDistribution.d.ts → IDcatDistribution.d.ts} +10 -10
- package/dist/types/models/{IRelationship.d.ts → IDcatRelationship.d.ts} +3 -3
- package/dist/types/models/{IResource.d.ts → IDcatResource.d.ts} +14 -14
- package/dist/types/models/{IRole.d.ts → IDcatRole.d.ts} +4 -4
- package/dist/types/models/dcatClasses.d.ts +9 -9
- package/dist/types/models/dcatContextType.d.ts +6 -2
- package/dist/types/models/dcatContexts.d.ts +16 -16
- package/dist/types/models/types/dcatContextFreeTypes.d.ts +40 -0
- package/dist/types/models/types/dcatPropertyTypes.d.ts +6 -6
- package/docs/changelog.md +481 -0
- package/docs/reference/index.md +20 -15
- package/docs/reference/interfaces/{ICatalog.md → IDcatCatalog.md} +49 -49
- package/docs/reference/interfaces/{ICatalogRecord.md → IDcatCatalogRecord.md} +7 -7
- package/docs/reference/interfaces/{IDataService.md → IDcatDataService.md} +33 -33
- package/docs/reference/interfaces/{IDataset.md → IDcatDataset.md} +37 -37
- package/docs/reference/interfaces/{IDatasetSeries.md → IDcatDatasetSeries.md} +43 -43
- package/docs/reference/interfaces/{IDistribution.md → IDcatDistribution.md} +6 -6
- package/docs/reference/interfaces/{IRelationship.md → IDcatRelationship.md} +3 -3
- package/docs/reference/interfaces/{IResource.md → IDcatResource.md} +13 -13
- package/docs/reference/interfaces/{IRole.md → IDcatRole.md} +5 -5
- package/docs/reference/type-aliases/CatalogOptionalContext.md +11 -0
- package/docs/reference/type-aliases/CatalogRecordOptionalContext.md +11 -0
- package/docs/reference/type-aliases/DataServiceOptionalContext.md +11 -0
- package/docs/reference/type-aliases/DatasetOptionalContext.md +11 -0
- package/docs/reference/type-aliases/DcatContextType.md +10 -2
- package/docs/reference/type-aliases/{DateTimeType.md → DcatDateTimeType.md} +2 -2
- package/docs/reference/type-aliases/DcatDecimalType.md +5 -0
- package/docs/reference/type-aliases/DcatDurationType.md +5 -0
- package/docs/reference/type-aliases/DcatIriType.md +5 -0
- package/docs/reference/type-aliases/{LiteralType.md → DcatLiteralType.md} +2 -2
- package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +5 -0
- package/docs/reference/type-aliases/DistributionOptionalContext.md +11 -0
- package/docs/reference/variables/DcatClasses.md +9 -9
- package/docs/reference/variables/DcatContexts.md +22 -28
- package/package.json +5 -5
- package/dist/es/models/ICatalog.js +0 -2
- package/dist/es/models/ICatalog.js.map +0 -1
- package/dist/es/models/ICatalogRecord.js +0 -2
- package/dist/es/models/ICatalogRecord.js.map +0 -1
- package/dist/es/models/IDataService.js +0 -2
- package/dist/es/models/IDataService.js.map +0 -1
- package/dist/es/models/IDataset.js +0 -2
- package/dist/es/models/IDataset.js.map +0 -1
- package/dist/es/models/IDatasetSeries.js +0 -2
- package/dist/es/models/IDatasetSeries.js.map +0 -1
- package/dist/es/models/IDistribution.js +0 -2
- package/dist/es/models/IDistribution.js.map +0 -1
- package/dist/es/models/IRelationship.js +0 -2
- package/dist/es/models/IRelationship.js.map +0 -1
- package/dist/es/models/IResource.js +0 -2
- package/dist/es/models/IResource.js.map +0 -1
- package/dist/es/models/IRole.js +0 -2
- package/dist/es/models/IRole.js.map +0 -1
- package/docs/reference/type-aliases/DecimalType.md +0 -5
- package/docs/reference/type-aliases/DurationType.md +0 -5
- package/docs/reference/type-aliases/IriType.md +0 -5
- package/docs/reference/type-aliases/NonNegativeIntegerType.md +0 -5
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,486 @@
|
|
|
1
1
|
# @twin.org/standards-w3c-dcat - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.31](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.30...standards-w3c-dcat-v0.0.3-next.31) (2026-02-05)
|
|
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.30 to 0.0.3-next.31
|
|
16
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
17
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
18
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
19
|
+
|
|
20
|
+
## [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)
|
|
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.29 to 0.0.3-next.30
|
|
33
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
34
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
35
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
36
|
+
|
|
37
|
+
## [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)
|
|
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.28 to 0.0.3-next.29
|
|
50
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
51
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
52
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
53
|
+
|
|
54
|
+
## [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)
|
|
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.27 to 0.0.3-next.28
|
|
67
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
68
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
69
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
70
|
+
|
|
71
|
+
## [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)
|
|
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.26 to 0.0.3-next.27
|
|
84
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
85
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
86
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
87
|
+
|
|
88
|
+
## [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)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### Miscellaneous Chores
|
|
92
|
+
|
|
93
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
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.25 to 0.0.3-next.26
|
|
101
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
102
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
103
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
104
|
+
|
|
105
|
+
## [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)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### Features
|
|
109
|
+
|
|
110
|
+
* register schemas at hosted location ([#128](https://github.com/twinfoundation/standards/issues/128)) ([ab35298](https://github.com/twinfoundation/standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
|
|
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.24 to 0.0.3-next.25
|
|
118
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
119
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
120
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
121
|
+
|
|
122
|
+
## [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)
|
|
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.23 to 0.0.3-next.24
|
|
135
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
136
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
137
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
138
|
+
|
|
139
|
+
## [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)
|
|
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.22 to 0.0.3-next.23
|
|
152
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
153
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
154
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
155
|
+
|
|
156
|
+
## [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)
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
### Miscellaneous Chores
|
|
160
|
+
|
|
161
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
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.21 to 0.0.3-next.22
|
|
169
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
170
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
171
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
172
|
+
|
|
173
|
+
## [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)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### Features
|
|
177
|
+
|
|
178
|
+
* update registrations ([dd3c92f](https://github.com/twinfoundation/standards/commit/dd3c92f52ff44679f61ff2a84b9fbc98bdc574d5))
|
|
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.20 to 0.0.3-next.21
|
|
186
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
187
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
188
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
189
|
+
|
|
190
|
+
## [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)
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
### Bug Fixes
|
|
194
|
+
|
|
195
|
+
* 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))
|
|
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.19 to 0.0.3-next.20
|
|
203
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
204
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
205
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
206
|
+
|
|
207
|
+
## [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)
|
|
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.18 to 0.0.3-next.19
|
|
220
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
221
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
222
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
223
|
+
|
|
224
|
+
## [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)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
### Miscellaneous Chores
|
|
228
|
+
|
|
229
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
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.17 to 0.0.3-next.18
|
|
237
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
238
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
239
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
240
|
+
|
|
241
|
+
## [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)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
### Bug Fixes
|
|
245
|
+
|
|
246
|
+
* updating the missing packages ([#114](https://github.com/twinfoundation/standards/issues/114)) ([90b03f8](https://github.com/twinfoundation/standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
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.16 to 0.0.3-next.17
|
|
254
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
255
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
256
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
257
|
+
|
|
258
|
+
## [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)
|
|
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.15 to 0.0.3-next.16
|
|
271
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
272
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
273
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
274
|
+
|
|
275
|
+
## [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)
|
|
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.14 to 0.0.3-next.15
|
|
288
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
289
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
290
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
291
|
+
|
|
292
|
+
## [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)
|
|
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.13 to 0.0.3-next.14
|
|
305
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
306
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
307
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
308
|
+
|
|
309
|
+
## [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)
|
|
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.12 to 0.0.3-next.13
|
|
322
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
323
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
324
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
325
|
+
|
|
326
|
+
## [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)
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
### Miscellaneous Chores
|
|
330
|
+
|
|
331
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
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.11 to 0.0.3-next.12
|
|
339
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
340
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
341
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
342
|
+
|
|
343
|
+
## [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)
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
### Features
|
|
347
|
+
|
|
348
|
+
* improved namespaces and contexts ([#102](https://github.com/twinfoundation/standards/issues/102)) ([c74c370](https://github.com/twinfoundation/standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
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.10 to 0.0.3-next.11
|
|
356
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
357
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
358
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
359
|
+
|
|
360
|
+
## [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)
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
### Features
|
|
364
|
+
|
|
365
|
+
* naming fixing and usage ([#98](https://github.com/twinfoundation/standards/issues/98)) ([9e95344](https://github.com/twinfoundation/standards/commit/9e953440963c9bc028399be9cbea25d92922bd01))
|
|
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.9 to 0.0.3-next.10
|
|
373
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
374
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
375
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
376
|
+
|
|
377
|
+
## [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)
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
### Miscellaneous Chores
|
|
381
|
+
|
|
382
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
### Dependencies
|
|
386
|
+
|
|
387
|
+
* The following workspace dependencies were updated
|
|
388
|
+
* dependencies
|
|
389
|
+
* @twin.org/standards-dublin-core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
390
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
391
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
392
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
393
|
+
|
|
394
|
+
## [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)
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
### Features
|
|
398
|
+
|
|
399
|
+
* add ds protocol catalog dataset ([#86](https://github.com/twinfoundation/standards/issues/86)) ([45600e6](https://github.com/twinfoundation/standards/commit/45600e6cba212d85e250cb12cbdcb712d8db0e52))
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
### Bug Fixes
|
|
403
|
+
|
|
404
|
+
* 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))
|
|
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.7 to 0.0.3-next.8
|
|
412
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
413
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
414
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
415
|
+
|
|
416
|
+
## [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)
|
|
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.6 to 0.0.3-next.7
|
|
429
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
430
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
431
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
432
|
+
|
|
433
|
+
## [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)
|
|
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.5 to 0.0.3-next.6
|
|
446
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
447
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
448
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
449
|
+
|
|
450
|
+
## [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)
|
|
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.4 to 0.0.3-next.5
|
|
463
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
464
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
465
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
466
|
+
|
|
467
|
+
## [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)
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
### Miscellaneous Chores
|
|
471
|
+
|
|
472
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
### Dependencies
|
|
476
|
+
|
|
477
|
+
* The following workspace dependencies were updated
|
|
478
|
+
* dependencies
|
|
479
|
+
* @twin.org/standards-dublin-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
480
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
481
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
482
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
483
|
+
|
|
3
484
|
## [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
485
|
|
|
5
486
|
|
package/docs/reference/index.md
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
## Interfaces
|
|
8
8
|
|
|
9
|
-
- [
|
|
10
|
-
- [
|
|
11
|
-
- [
|
|
12
|
-
- [
|
|
13
|
-
- [
|
|
14
|
-
- [
|
|
15
|
-
- [
|
|
16
|
-
- [
|
|
17
|
-
- [
|
|
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
|
-
- [
|
|
26
|
-
- [
|
|
27
|
-
- [
|
|
28
|
-
- [
|
|
29
|
-
- [
|
|
30
|
-
- [
|
|
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
|
|