@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.
Files changed (95) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +21 -0
  3. package/dist/es/dataTypes/dcatDataTypes.js +77 -0
  4. package/dist/es/dataTypes/dcatDataTypes.js.map +1 -0
  5. package/dist/es/index.js +19 -0
  6. package/dist/es/index.js.map +1 -0
  7. package/dist/es/models/IDcatCatalog.js +2 -0
  8. package/dist/es/models/IDcatCatalog.js.map +1 -0
  9. package/dist/es/models/IDcatCatalogRecord.js +2 -0
  10. package/dist/es/models/IDcatCatalogRecord.js.map +1 -0
  11. package/dist/es/models/IDcatDataService.js +2 -0
  12. package/dist/es/models/IDcatDataService.js.map +1 -0
  13. package/dist/es/models/IDcatDataset.js +2 -0
  14. package/dist/es/models/IDcatDataset.js.map +1 -0
  15. package/dist/es/models/IDcatDatasetSeries.js +2 -0
  16. package/dist/es/models/IDcatDatasetSeries.js.map +1 -0
  17. package/dist/es/models/IDcatDistribution.js +2 -0
  18. package/dist/es/models/IDcatDistribution.js.map +1 -0
  19. package/dist/es/models/IDcatRelationship.js +2 -0
  20. package/dist/es/models/IDcatRelationship.js.map +1 -0
  21. package/dist/es/models/IDcatResource.js +2 -0
  22. package/dist/es/models/IDcatResource.js.map +1 -0
  23. package/dist/es/models/IDcatRole.js +2 -0
  24. package/dist/es/models/IDcatRole.js.map +1 -0
  25. package/dist/es/models/dcatClasses.js +56 -0
  26. package/dist/es/models/dcatClasses.js.map +1 -0
  27. package/dist/es/models/dcatContextType.js +2 -0
  28. package/dist/es/models/dcatContextType.js.map +1 -0
  29. package/dist/es/models/dcatContexts.js +42 -0
  30. package/dist/es/models/dcatContexts.js.map +1 -0
  31. package/dist/es/models/dcatRelationshipTypes.js +57 -0
  32. package/dist/es/models/dcatRelationshipTypes.js.map +1 -0
  33. package/dist/es/models/types/dcatContextFreeTypes.js +4 -0
  34. package/dist/es/models/types/dcatContextFreeTypes.js.map +1 -0
  35. package/dist/es/models/types/dcatPropertyTypes.js +4 -0
  36. package/dist/es/models/types/dcatPropertyTypes.js.map +1 -0
  37. package/dist/es/schemas/DcatCatalog.json +500 -0
  38. package/dist/es/schemas/DcatCatalogRecord.json +221 -0
  39. package/dist/es/schemas/DcatDataService.json +367 -0
  40. package/dist/es/schemas/DcatDataset.json +416 -0
  41. package/dist/es/schemas/DcatDatasetSeries.json +434 -0
  42. package/dist/es/schemas/DcatDistribution.json +277 -0
  43. package/dist/es/schemas/DcatRelationship.json +195 -0
  44. package/dist/es/schemas/DcatResource.json +351 -0
  45. package/dist/es/schemas/DcatRole.json +191 -0
  46. package/dist/types/dataTypes/dcatDataTypes.d.ts +14 -0
  47. package/dist/types/index.d.ts +16 -0
  48. package/dist/types/models/IDcatCatalog.d.ts +52 -0
  49. package/dist/types/models/IDcatCatalogRecord.d.ts +52 -0
  50. package/dist/types/models/IDcatDataService.d.ts +31 -0
  51. package/dist/types/models/IDcatDataset.d.ts +60 -0
  52. package/dist/types/models/IDcatDatasetSeries.d.ts +30 -0
  53. package/dist/types/models/IDcatDistribution.d.ts +122 -0
  54. package/dist/types/models/IDcatRelationship.d.ts +30 -0
  55. package/dist/types/models/IDcatResource.d.ts +119 -0
  56. package/dist/types/models/IDcatRole.d.ts +25 -0
  57. package/dist/types/models/dcatClasses.d.ts +56 -0
  58. package/dist/types/models/dcatContextType.d.ts +15 -0
  59. package/dist/types/models/dcatContexts.d.ts +42 -0
  60. package/dist/types/models/dcatRelationshipTypes.d.ts +57 -0
  61. package/dist/types/models/types/dcatContextFreeTypes.d.ts +40 -0
  62. package/dist/types/models/types/dcatPropertyTypes.d.ts +29 -0
  63. package/docs/changelog.md +146 -0
  64. package/docs/examples.md +1 -0
  65. package/docs/reference/classes/DcatDataTypes.md +38 -0
  66. package/docs/reference/index.md +41 -0
  67. package/docs/reference/interfaces/IDcatCatalog.md +557 -0
  68. package/docs/reference/interfaces/IDcatCatalogRecord.md +113 -0
  69. package/docs/reference/interfaces/IDcatDataService.md +382 -0
  70. package/docs/reference/interfaces/IDcatDataset.md +447 -0
  71. package/docs/reference/interfaces/IDcatDatasetSeries.md +509 -0
  72. package/docs/reference/interfaces/IDcatDistribution.md +281 -0
  73. package/docs/reference/interfaces/IDcatRelationship.md +65 -0
  74. package/docs/reference/interfaces/IDcatResource.md +274 -0
  75. package/docs/reference/interfaces/IDcatRole.md +53 -0
  76. package/docs/reference/type-aliases/CatalogOptionalContext.md +11 -0
  77. package/docs/reference/type-aliases/CatalogRecordOptionalContext.md +11 -0
  78. package/docs/reference/type-aliases/DataServiceOptionalContext.md +11 -0
  79. package/docs/reference/type-aliases/DatasetOptionalContext.md +11 -0
  80. package/docs/reference/type-aliases/DcatClasses.md +5 -0
  81. package/docs/reference/type-aliases/DcatContextType.md +24 -0
  82. package/docs/reference/type-aliases/DcatContexts.md +5 -0
  83. package/docs/reference/type-aliases/DcatDateTimeType.md +6 -0
  84. package/docs/reference/type-aliases/DcatDecimalType.md +5 -0
  85. package/docs/reference/type-aliases/DcatDurationType.md +5 -0
  86. package/docs/reference/type-aliases/DcatIriType.md +5 -0
  87. package/docs/reference/type-aliases/DcatLiteralType.md +5 -0
  88. package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +5 -0
  89. package/docs/reference/type-aliases/DcatRelationshipType.md +5 -0
  90. package/docs/reference/type-aliases/DistributionOptionalContext.md +11 -0
  91. package/docs/reference/variables/DcatClasses.md +102 -0
  92. package/docs/reference/variables/DcatContexts.md +69 -0
  93. package/docs/reference/variables/DcatRelationshipType.md +103 -0
  94. package/locales/en.json +1 -0
  95. 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
@@ -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)