@twin.org/standards-w3c-dcat 0.0.3-next.10
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/LICENSE +201 -0
- package/README.md +21 -0
- package/dist/es/dataTypes/dcatDataTypes.js +77 -0
- package/dist/es/dataTypes/dcatDataTypes.js.map +1 -0
- package/dist/es/index.js +19 -0
- package/dist/es/index.js.map +1 -0
- 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 +56 -0
- package/dist/es/models/dcatClasses.js.map +1 -0
- package/dist/es/models/dcatContextType.js +2 -0
- package/dist/es/models/dcatContextType.js.map +1 -0
- package/dist/es/models/dcatContexts.js +42 -0
- package/dist/es/models/dcatContexts.js.map +1 -0
- package/dist/es/models/dcatRelationshipTypes.js +57 -0
- package/dist/es/models/dcatRelationshipTypes.js.map +1 -0
- 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 +4 -0
- package/dist/es/models/types/dcatPropertyTypes.js.map +1 -0
- package/dist/es/schemas/DcatCatalog.json +500 -0
- package/dist/es/schemas/DcatCatalogRecord.json +221 -0
- package/dist/es/schemas/DcatDataService.json +367 -0
- package/dist/es/schemas/DcatDataset.json +416 -0
- package/dist/es/schemas/DcatDatasetSeries.json +434 -0
- package/dist/es/schemas/DcatDistribution.json +277 -0
- package/dist/es/schemas/DcatRelationship.json +195 -0
- package/dist/es/schemas/DcatResource.json +351 -0
- package/dist/es/schemas/DcatRole.json +191 -0
- package/dist/types/dataTypes/dcatDataTypes.d.ts +14 -0
- package/dist/types/index.d.ts +16 -0
- package/dist/types/models/IDcatCatalog.d.ts +52 -0
- package/dist/types/models/IDcatCatalogRecord.d.ts +52 -0
- package/dist/types/models/IDcatDataService.d.ts +31 -0
- package/dist/types/models/IDcatDataset.d.ts +60 -0
- package/dist/types/models/IDcatDatasetSeries.d.ts +30 -0
- package/dist/types/models/IDcatDistribution.d.ts +122 -0
- package/dist/types/models/IDcatRelationship.d.ts +30 -0
- package/dist/types/models/IDcatResource.d.ts +119 -0
- package/dist/types/models/IDcatRole.d.ts +25 -0
- package/dist/types/models/dcatClasses.d.ts +56 -0
- package/dist/types/models/dcatContextType.d.ts +15 -0
- package/dist/types/models/dcatContexts.d.ts +42 -0
- package/dist/types/models/dcatRelationshipTypes.d.ts +57 -0
- package/dist/types/models/types/dcatContextFreeTypes.d.ts +40 -0
- package/dist/types/models/types/dcatPropertyTypes.d.ts +29 -0
- package/docs/changelog.md +146 -0
- package/docs/examples.md +1 -0
- package/docs/reference/classes/DcatDataTypes.md +38 -0
- package/docs/reference/index.md +41 -0
- package/docs/reference/interfaces/IDcatCatalog.md +557 -0
- package/docs/reference/interfaces/IDcatCatalogRecord.md +113 -0
- package/docs/reference/interfaces/IDcatDataService.md +382 -0
- package/docs/reference/interfaces/IDcatDataset.md +447 -0
- package/docs/reference/interfaces/IDcatDatasetSeries.md +509 -0
- package/docs/reference/interfaces/IDcatDistribution.md +281 -0
- package/docs/reference/interfaces/IDcatRelationship.md +65 -0
- package/docs/reference/interfaces/IDcatResource.md +274 -0
- package/docs/reference/interfaces/IDcatRole.md +53 -0
- 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/DcatClasses.md +5 -0
- package/docs/reference/type-aliases/DcatContextType.md +24 -0
- package/docs/reference/type-aliases/DcatContexts.md +5 -0
- package/docs/reference/type-aliases/DcatDateTimeType.md +6 -0
- 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/DcatLiteralType.md +5 -0
- package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +5 -0
- package/docs/reference/type-aliases/DcatRelationshipType.md +5 -0
- package/docs/reference/type-aliases/DistributionOptionalContext.md +11 -0
- package/docs/reference/variables/DcatClasses.md +102 -0
- package/docs/reference/variables/DcatContexts.md +69 -0
- package/docs/reference/variables/DcatRelationshipType.md +103 -0
- package/locales/en.json +1 -0
- package/package.json +57 -0
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
# @twin.org/standards-w3c-dcat - Changelog
|
|
2
|
+
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* naming fixing and usage ([#98](https://github.com/twinfoundation/standards/issues/98)) ([9e95344](https://github.com/twinfoundation/standards/commit/9e953440963c9bc028399be9cbea25d92922bd01))
|
|
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.9 to 0.0.3-next.10
|
|
16
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
17
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
18
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
19
|
+
|
|
20
|
+
## [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)
|
|
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.8 to 0.0.3-next.9
|
|
33
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
34
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
35
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
36
|
+
|
|
37
|
+
## [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)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Features
|
|
41
|
+
|
|
42
|
+
* add ds protocol catalog dataset ([#86](https://github.com/twinfoundation/standards/issues/86)) ([45600e6](https://github.com/twinfoundation/standards/commit/45600e6cba212d85e250cb12cbdcb712d8db0e52))
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### Bug Fixes
|
|
46
|
+
|
|
47
|
+
* 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))
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### Dependencies
|
|
51
|
+
|
|
52
|
+
* The following workspace dependencies were updated
|
|
53
|
+
* dependencies
|
|
54
|
+
* @twin.org/standards-dublin-core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
55
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
56
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
57
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
58
|
+
|
|
59
|
+
## [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)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Miscellaneous Chores
|
|
63
|
+
|
|
64
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Dependencies
|
|
68
|
+
|
|
69
|
+
* The following workspace dependencies were updated
|
|
70
|
+
* dependencies
|
|
71
|
+
* @twin.org/standards-dublin-core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
72
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
73
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
74
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
75
|
+
|
|
76
|
+
## [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)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
### Miscellaneous Chores
|
|
80
|
+
|
|
81
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
### Dependencies
|
|
85
|
+
|
|
86
|
+
* The following workspace dependencies were updated
|
|
87
|
+
* dependencies
|
|
88
|
+
* @twin.org/standards-dublin-core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
89
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
90
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
91
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
92
|
+
|
|
93
|
+
## [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)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Miscellaneous Chores
|
|
97
|
+
|
|
98
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Dependencies
|
|
102
|
+
|
|
103
|
+
* The following workspace dependencies were updated
|
|
104
|
+
* dependencies
|
|
105
|
+
* @twin.org/standards-dublin-core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
106
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
107
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
108
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
109
|
+
|
|
110
|
+
## [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)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
### Miscellaneous Chores
|
|
114
|
+
|
|
115
|
+
* **standards-w3c-dcat:** Synchronize repo versions
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Dependencies
|
|
119
|
+
|
|
120
|
+
* The following workspace dependencies were updated
|
|
121
|
+
* dependencies
|
|
122
|
+
* @twin.org/standards-dublin-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
123
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
124
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
125
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
126
|
+
|
|
127
|
+
## [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)
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Features
|
|
131
|
+
|
|
132
|
+
* add w3c dcat standards package ([#68](https://github.com/twinfoundation/standards/issues/68)) ([85746c6](https://github.com/twinfoundation/standards/commit/85746c673464498a52e9c30ce498fd88b81a7434))
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
### Dependencies
|
|
136
|
+
|
|
137
|
+
* The following workspace dependencies were updated
|
|
138
|
+
* dependencies
|
|
139
|
+
* @twin.org/standards-dublin-core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
140
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
141
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
142
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
143
|
+
|
|
144
|
+
## v0.0.3-next.1
|
|
145
|
+
|
|
146
|
+
- Initial Release
|
package/docs/examples.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# @twin.org/standards-w3c-dcat - Examples
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Class: DcatDataTypes
|
|
2
|
+
|
|
3
|
+
Class providing DCAT data type utilities and JSON-LD redirect registration.
|
|
4
|
+
|
|
5
|
+
## Constructors
|
|
6
|
+
|
|
7
|
+
### Constructor
|
|
8
|
+
|
|
9
|
+
> **new DcatDataTypes**(): `DcatDataTypes`
|
|
10
|
+
|
|
11
|
+
#### Returns
|
|
12
|
+
|
|
13
|
+
`DcatDataTypes`
|
|
14
|
+
|
|
15
|
+
## Methods
|
|
16
|
+
|
|
17
|
+
### registerRedirects()
|
|
18
|
+
|
|
19
|
+
> `static` **registerRedirects**(): `void`
|
|
20
|
+
|
|
21
|
+
Register redirects for DCAT namespace to enable offline JSON-LD processing.
|
|
22
|
+
This maps the W3C DCAT namespace to a local redirect URL for faster resolution.
|
|
23
|
+
|
|
24
|
+
#### Returns
|
|
25
|
+
|
|
26
|
+
`void`
|
|
27
|
+
|
|
28
|
+
***
|
|
29
|
+
|
|
30
|
+
### registerTypes()
|
|
31
|
+
|
|
32
|
+
> `static` **registerTypes**(): `void`
|
|
33
|
+
|
|
34
|
+
Register all the DCAT data types with their JSON schemas.
|
|
35
|
+
|
|
36
|
+
#### Returns
|
|
37
|
+
|
|
38
|
+
`void`
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# @twin.org/standards-w3c-dcat
|
|
2
|
+
|
|
3
|
+
## Classes
|
|
4
|
+
|
|
5
|
+
- [DcatDataTypes](classes/DcatDataTypes.md)
|
|
6
|
+
|
|
7
|
+
## Interfaces
|
|
8
|
+
|
|
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
|
+
|
|
19
|
+
## Type Aliases
|
|
20
|
+
|
|
21
|
+
- [DcatClasses](type-aliases/DcatClasses.md)
|
|
22
|
+
- [DcatContextType](type-aliases/DcatContextType.md)
|
|
23
|
+
- [DcatContexts](type-aliases/DcatContexts.md)
|
|
24
|
+
- [DcatRelationshipType](type-aliases/DcatRelationshipType.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)
|
|
36
|
+
|
|
37
|
+
## Variables
|
|
38
|
+
|
|
39
|
+
- [DcatClasses](variables/DcatClasses.md)
|
|
40
|
+
- [DcatContexts](variables/DcatContexts.md)
|
|
41
|
+
- [DcatRelationshipType](variables/DcatRelationshipType.md)
|