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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. package/README.md +1 -1
  2. package/dist/es/dataTypes/dcatDataTypes.js +80 -49
  3. package/dist/es/dataTypes/dcatDataTypes.js.map +1 -1
  4. package/dist/es/index.js +6 -2
  5. package/dist/es/index.js.map +1 -1
  6. package/dist/es/models/IDcatCatalog.js.map +1 -1
  7. package/dist/es/models/IDcatCatalogBase.js +2 -0
  8. package/dist/es/models/IDcatCatalogBase.js.map +1 -0
  9. package/dist/es/models/IDcatCatalogRecord.js.map +1 -1
  10. package/dist/es/models/IDcatCatalogRecordBase.js +2 -0
  11. package/dist/es/models/IDcatCatalogRecordBase.js.map +1 -0
  12. package/dist/es/models/IDcatDataService.js.map +1 -1
  13. package/dist/es/models/IDcatDataServiceBase.js +2 -0
  14. package/dist/es/models/IDcatDataServiceBase.js.map +1 -0
  15. package/dist/es/models/IDcatDataset.js.map +1 -1
  16. package/dist/es/models/IDcatDatasetBase.js +2 -0
  17. package/dist/es/models/IDcatDatasetBase.js.map +1 -0
  18. package/dist/es/models/IDcatDatasetSeries.js.map +1 -1
  19. package/dist/es/models/IDcatDistribution.js.map +1 -1
  20. package/dist/es/models/IDcatDistributionBase.js +2 -0
  21. package/dist/es/models/IDcatDistributionBase.js.map +1 -0
  22. package/dist/es/models/IDcatRelationship.js.map +1 -1
  23. package/dist/es/models/IDcatResource.js.map +1 -1
  24. package/dist/es/models/IDcatResourceBase.js +2 -0
  25. package/dist/es/models/IDcatResourceBase.js.map +1 -0
  26. package/dist/es/models/IDcatRole.js.map +1 -1
  27. package/dist/es/models/dcatContextType.js.map +1 -1
  28. package/dist/es/models/dcatContexts.js +15 -19
  29. package/dist/es/models/dcatContexts.js.map +1 -1
  30. package/dist/es/schemas/DcatCatalog.json +10 -489
  31. package/dist/es/schemas/DcatCatalogBase.json +109 -0
  32. package/dist/es/schemas/DcatCatalogRecord.json +10 -210
  33. package/dist/es/schemas/DcatCatalogRecordBase.json +76 -0
  34. package/dist/es/schemas/DcatContextType.json +30 -0
  35. package/dist/es/schemas/DcatDataService.json +10 -356
  36. package/dist/es/schemas/DcatDataServiceBase.json +43 -0
  37. package/dist/es/schemas/DcatDataset.json +10 -405
  38. package/dist/es/schemas/DcatDatasetBase.json +94 -0
  39. package/dist/es/schemas/DcatDatasetSeries.json +17 -394
  40. package/dist/es/schemas/DcatDistribution.json +10 -266
  41. package/dist/es/schemas/DcatDistributionBase.json +134 -0
  42. package/dist/es/schemas/DcatRelationship.json +11 -170
  43. package/dist/es/schemas/DcatResource.json +10 -340
  44. package/dist/es/schemas/DcatResourceBase.json +663 -0
  45. package/dist/es/schemas/DcatRole.json +15 -167
  46. package/dist/types/dataTypes/dcatDataTypes.d.ts +0 -1
  47. package/dist/types/index.d.ts +6 -2
  48. package/dist/types/models/IDcatCatalog.d.ts +5 -43
  49. package/dist/types/models/IDcatCatalogBase.d.ts +54 -0
  50. package/dist/types/models/IDcatCatalogRecord.d.ts +2 -40
  51. package/dist/types/models/IDcatCatalogRecordBase.d.ts +51 -0
  52. package/dist/types/models/IDcatDataService.d.ts +5 -22
  53. package/dist/types/models/IDcatDataServiceBase.d.ts +31 -0
  54. package/dist/types/models/IDcatDataset.d.ts +5 -51
  55. package/dist/types/models/IDcatDatasetBase.d.ts +60 -0
  56. package/dist/types/models/IDcatDatasetSeries.d.ts +6 -0
  57. package/dist/types/models/IDcatDistribution.d.ts +2 -110
  58. package/dist/types/models/IDcatDistributionBase.d.ts +123 -0
  59. package/dist/types/models/IDcatRelationship.d.ts +2 -2
  60. package/dist/types/models/IDcatResource.d.ts +3 -109
  61. package/dist/types/models/IDcatResourceBase.d.ts +120 -0
  62. package/dist/types/models/IDcatRole.d.ts +8 -5
  63. package/dist/types/models/dcatContextType.d.ts +4 -4
  64. package/dist/types/models/dcatContexts.d.ts +15 -19
  65. package/docs/changelog.md +1125 -11
  66. package/docs/examples.md +25 -1
  67. package/docs/reference/classes/DcatDataTypes.md +2 -3
  68. package/docs/reference/index.md +6 -11
  69. package/docs/reference/interfaces/IDcatCatalog.md +138 -106
  70. package/docs/reference/interfaces/IDcatCatalogBase.md +558 -0
  71. package/docs/reference/interfaces/IDcatCatalogRecord.md +53 -25
  72. package/docs/reference/interfaces/IDcatCatalogRecordBase.md +101 -0
  73. package/docs/reference/interfaces/IDcatDataService.md +90 -74
  74. package/docs/reference/interfaces/IDcatDataServiceBase.md +382 -0
  75. package/docs/reference/interfaces/IDcatDataset.md +120 -85
  76. package/docs/reference/interfaces/IDcatDatasetBase.md +443 -0
  77. package/docs/reference/interfaces/IDcatDatasetSeries.md +88 -68
  78. package/docs/reference/interfaces/IDcatDistribution.md +137 -53
  79. package/docs/reference/interfaces/IDcatDistributionBase.md +269 -0
  80. package/docs/reference/interfaces/IDcatRelationship.md +6 -22
  81. package/docs/reference/interfaces/IDcatResource.md +132 -57
  82. package/docs/reference/interfaces/IDcatResourceBase.md +260 -0
  83. package/docs/reference/interfaces/IDcatRole.md +11 -19
  84. package/docs/reference/type-aliases/DcatContextType.md +4 -4
  85. package/docs/reference/variables/DcatClasses.md +9 -9
  86. package/docs/reference/variables/DcatContexts.md +21 -33
  87. package/docs/reference/variables/DcatRelationshipType.md +9 -9
  88. package/package.json +10 -10
  89. package/dist/es/models/types/dcatContextFreeTypes.js +0 -4
  90. package/dist/es/models/types/dcatContextFreeTypes.js.map +0 -1
  91. package/dist/es/models/types/dcatPropertyTypes.js +0 -4
  92. package/dist/es/models/types/dcatPropertyTypes.js.map +0 -1
  93. package/dist/types/models/types/dcatContextFreeTypes.d.ts +0 -40
  94. package/dist/types/models/types/dcatPropertyTypes.d.ts +0 -29
  95. package/docs/reference/type-aliases/CatalogOptionalContext.md +0 -11
  96. package/docs/reference/type-aliases/CatalogRecordOptionalContext.md +0 -11
  97. package/docs/reference/type-aliases/DataServiceOptionalContext.md +0 -11
  98. package/docs/reference/type-aliases/DatasetOptionalContext.md +0 -11
  99. package/docs/reference/type-aliases/DcatDateTimeType.md +0 -6
  100. package/docs/reference/type-aliases/DcatDecimalType.md +0 -5
  101. package/docs/reference/type-aliases/DcatDurationType.md +0 -5
  102. package/docs/reference/type-aliases/DcatIriType.md +0 -5
  103. package/docs/reference/type-aliases/DcatLiteralType.md +0 -5
  104. package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +0 -5
  105. package/docs/reference/type-aliases/DistributionOptionalContext.md +0 -11
@@ -10,35 +10,38 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Dataset
10
10
 
11
11
  ## Extends
12
12
 
13
- - [`IDcatResource`](IDcatResource.md)
13
+ - [`IDcatDatasetBase`](IDcatDatasetBase.md)
14
14
 
15
15
  ## Extended by
16
16
 
17
- - [`IDcatCatalog`](IDcatCatalog.md)
18
17
  - [`IDcatDatasetSeries`](IDcatDatasetSeries.md)
19
18
 
20
- ## Indexable
19
+ ## Properties
21
20
 
22
- \[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
21
+ ### @context {#context}
23
22
 
24
- ## Properties
23
+ > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
25
24
 
26
- ### @type
25
+ The JSON-LD context for the resource.
26
+
27
+ ***
28
+
29
+ ### @type {#type}
27
30
 
28
31
  > **@type**: `"dcat:Catalog"` \| `"dcat:Dataset"` \| `"dcat:DatasetSeries"`
29
32
 
30
33
  The type identifier, typically "Dataset".
31
34
  Can also be "Catalog" or "DatasetSeries" for subclasses.
32
35
 
33
- #### Overrides
36
+ #### Inherited from
34
37
 
35
- [`IDcatResource`](IDcatResource.md).[`@type`](IDcatResource.md#type)
38
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`@type`](IDcatDatasetBase.md#type)
36
39
 
37
40
  ***
38
41
 
39
- ### dcat:distribution?
42
+ ### dcat:distribution? {#dcatdistribution}
40
43
 
41
- > `optional` **dcat:distribution**: `ObjectOrArray`\<[`DistributionOptionalContext`](../type-aliases/DistributionOptionalContext.md)\>
44
+ > `optional` **dcat:distribution?**: `ObjectOrArray`\<[`IDcatDistributionBase`](IDcatDistributionBase.md)\>
42
45
 
43
46
  An available distribution of the dataset.
44
47
 
@@ -46,11 +49,15 @@ An available distribution of the dataset.
46
49
 
47
50
  https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_distribution
48
51
 
52
+ #### Inherited from
53
+
54
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcat:distribution`](IDcatDatasetBase.md#dcatdistribution)
55
+
49
56
  ***
50
57
 
51
- ### dcterms:accrualPeriodicity?
58
+ ### dcterms:accrualPeriodicity? {#dctermsaccrualperiodicity}
52
59
 
53
- > `optional` **dcterms:accrualPeriodicity**: `string`
60
+ > `optional` **dcterms:accrualPeriodicity?**: `string`
54
61
 
55
62
  The frequency at which the dataset is published.
56
63
 
@@ -58,11 +65,15 @@ The frequency at which the dataset is published.
58
65
 
59
66
  https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_frequency
60
67
 
68
+ #### Inherited from
69
+
70
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:accrualPeriodicity`](IDcatDatasetBase.md#dctermsaccrualperiodicity)
71
+
61
72
  ***
62
73
 
63
- ### dcat:inSeries?
74
+ ### dcat:inSeries? {#dcatinseries}
64
75
 
65
- > `optional` **dcat:inSeries**: `string`
76
+ > `optional` **dcat:inSeries?**: `string`
66
77
 
67
78
  A dataset series of which the dataset is part.
68
79
 
@@ -70,11 +81,15 @@ A dataset series of which the dataset is part.
70
81
 
71
82
  https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_in_series
72
83
 
84
+ #### Inherited from
85
+
86
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcat:inSeries`](IDcatDatasetBase.md#dcatinseries)
87
+
73
88
  ***
74
89
 
75
- ### dcterms:spatial?
90
+ ### dcterms:spatial? {#dctermsspatial}
76
91
 
77
- > `optional` **dcterms:spatial**: `IJsonLdNodeObject` \| `ObjectOrArray`\<`string`\>
92
+ > `optional` **dcterms:spatial?**: `string` \| `string`[] \| `IJsonLdNodeObject`
78
93
 
79
94
  The geographical area covered by the dataset.
80
95
 
@@ -82,11 +97,15 @@ The geographical area covered by the dataset.
82
97
 
83
98
  https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial
84
99
 
100
+ #### Inherited from
101
+
102
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:spatial`](IDcatDatasetBase.md#dctermsspatial)
103
+
85
104
  ***
86
105
 
87
- ### dcat:spatialResolutionInMeters?
106
+ ### dcat:spatialResolutionInMeters? {#dcatspatialresolutioninmeters}
88
107
 
89
- > `optional` **dcat:spatialResolutionInMeters**: `number`
108
+ > `optional` **dcat:spatialResolutionInMeters?**: `number`
90
109
 
91
110
  Minimum spatial separation resolvable in a dataset, measured in meters.
92
111
 
@@ -94,11 +113,15 @@ Minimum spatial separation resolvable in a dataset, measured in meters.
94
113
 
95
114
  https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial_resolution
96
115
 
116
+ #### Inherited from
117
+
118
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcat:spatialResolutionInMeters`](IDcatDatasetBase.md#dcatspatialresolutioninmeters)
119
+
97
120
  ***
98
121
 
99
- ### dcterms:temporal?
122
+ ### dcterms:temporal? {#dctermstemporal}
100
123
 
101
- > `optional` **dcterms:temporal**: `IDublinCorePeriodOfTime`
124
+ > `optional` **dcterms:temporal?**: `IDublinCorePeriodOfTime`
102
125
 
103
126
  The temporal period that the dataset covers.
104
127
 
@@ -106,11 +129,15 @@ The temporal period that the dataset covers.
106
129
 
107
130
  https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal
108
131
 
132
+ #### Inherited from
133
+
134
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:temporal`](IDcatDatasetBase.md#dctermstemporal)
135
+
109
136
  ***
110
137
 
111
- ### dcat:temporalResolution?
138
+ ### dcat:temporalResolution? {#dcattemporalresolution}
112
139
 
113
- > `optional` **dcat:temporalResolution**: `string`
140
+ > `optional` **dcat:temporalResolution?**: `string`
114
141
 
115
142
  Minimum time period resolvable in the dataset.
116
143
 
@@ -118,11 +145,15 @@ Minimum time period resolvable in the dataset.
118
145
 
119
146
  https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal_resolution
120
147
 
148
+ #### Inherited from
149
+
150
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcat:temporalResolution`](IDcatDatasetBase.md#dcattemporalresolution)
151
+
121
152
  ***
122
153
 
123
- ### prov:wasGeneratedBy?
154
+ ### prov:wasGeneratedBy? {#provwasgeneratedby}
124
155
 
125
- > `optional` **prov:wasGeneratedBy**: `string` \| `IJsonLdNodeObject`
156
+ > `optional` **prov:wasGeneratedBy?**: `string` \| `IJsonLdNodeObject`
126
157
 
127
158
  An activity that generated, or provides the business context for, the creation of the dataset.
128
159
 
@@ -130,23 +161,27 @@ An activity that generated, or provides the business context for, the creation o
130
161
 
131
162
  https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_was_generated_by
132
163
 
164
+ #### Inherited from
165
+
166
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`prov:wasGeneratedBy`](IDcatDatasetBase.md#provwasgeneratedby)
167
+
133
168
  ***
134
169
 
135
- ### @context
170
+ ### @id? {#id}
136
171
 
137
- > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
172
+ > `optional` **@id?**: `string`
138
173
 
139
- The JSON-LD context for the resource.
174
+ The unique identifier for the resource.
140
175
 
141
176
  #### Inherited from
142
177
 
143
- [`IDcatResource`](IDcatResource.md).[`@context`](IDcatResource.md#context)
178
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`@id`](IDcatDatasetBase.md#id)
144
179
 
145
180
  ***
146
181
 
147
- ### dcterms:title?
182
+ ### dcterms:title? {#dctermstitle}
148
183
 
149
- > `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
184
+ > `optional` **dcterms:title?**: `ObjectOrArray`\<`string`\>
150
185
 
151
186
  A name given to the resource.
152
187
 
@@ -156,13 +191,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
156
191
 
157
192
  #### Inherited from
158
193
 
159
- [`IDcatResource`](IDcatResource.md).[`dcterms:title`](IDcatResource.md#dctermstitle)
194
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:title`](IDcatDatasetBase.md#dctermstitle)
160
195
 
161
196
  ***
162
197
 
163
- ### dcterms:description?
198
+ ### dcterms:description? {#dctermsdescription}
164
199
 
165
- > `optional` **dcterms:description**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
200
+ > `optional` **dcterms:description?**: `ObjectOrArray`\<`string`\>
166
201
 
167
202
  A free-text account of the resource.
168
203
 
@@ -172,13 +207,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
172
207
 
173
208
  #### Inherited from
174
209
 
175
- [`IDcatResource`](IDcatResource.md).[`dcterms:description`](IDcatResource.md#dctermsdescription)
210
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:description`](IDcatDatasetBase.md#dctermsdescription)
176
211
 
177
212
  ***
178
213
 
179
- ### dcterms:identifier?
214
+ ### dcterms:identifier? {#dctermsidentifier}
180
215
 
181
- > `optional` **dcterms:identifier**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
216
+ > `optional` **dcterms:identifier?**: `ObjectOrArray`\<`string`\>
182
217
 
183
218
  A unique identifier of the resource.
184
219
 
@@ -188,13 +223,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
188
223
 
189
224
  #### Inherited from
190
225
 
191
- [`IDcatResource`](IDcatResource.md).[`dcterms:identifier`](IDcatResource.md#dctermsidentifier)
226
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:identifier`](IDcatDatasetBase.md#dctermsidentifier)
192
227
 
193
228
  ***
194
229
 
195
- ### dcterms:issued?
230
+ ### dcterms:issued? {#dctermsissued}
196
231
 
197
- > `optional` **dcterms:issued**: `string`
232
+ > `optional` **dcterms:issued?**: `string`
198
233
 
199
234
  Date of formal issuance (publication) of the resource.
200
235
 
@@ -204,13 +239,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
204
239
 
205
240
  #### Inherited from
206
241
 
207
- [`IDcatResource`](IDcatResource.md).[`dcterms:issued`](IDcatResource.md#dctermsissued)
242
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:issued`](IDcatDatasetBase.md#dctermsissued)
208
243
 
209
244
  ***
210
245
 
211
- ### dcterms:modified?
246
+ ### dcterms:modified? {#dctermsmodified}
212
247
 
213
- > `optional` **dcterms:modified**: `string`
248
+ > `optional` **dcterms:modified?**: `string`
214
249
 
215
250
  Most recent date on which the resource was changed, updated or modified.
216
251
 
@@ -220,13 +255,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
220
255
 
221
256
  #### Inherited from
222
257
 
223
- [`IDcatResource`](IDcatResource.md).[`dcterms:modified`](IDcatResource.md#dctermsmodified)
258
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:modified`](IDcatDatasetBase.md#dctermsmodified)
224
259
 
225
260
  ***
226
261
 
227
- ### dcterms:language?
262
+ ### dcterms:language? {#dctermslanguage}
228
263
 
229
- > `optional` **dcterms:language**: `ObjectOrArray`\<`string`\>
264
+ > `optional` **dcterms:language?**: `ObjectOrArray`\<`string`\>
230
265
 
231
266
  A language of the resource.
232
267
 
@@ -236,13 +271,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
236
271
 
237
272
  #### Inherited from
238
273
 
239
- [`IDcatResource`](IDcatResource.md).[`dcterms:language`](IDcatResource.md#dctermslanguage)
274
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:language`](IDcatDatasetBase.md#dctermslanguage)
240
275
 
241
276
  ***
242
277
 
243
- ### dcterms:publisher?
278
+ ### dcterms:publisher? {#dctermspublisher}
244
279
 
245
- > `optional` **dcterms:publisher**: `string` \| `IFoafAgent`
280
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
246
281
 
247
282
  An entity responsible for making the resource available.
248
283
 
@@ -252,13 +287,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
252
287
 
253
288
  #### Inherited from
254
289
 
255
- [`IDcatResource`](IDcatResource.md).[`dcterms:publisher`](IDcatResource.md#dctermspublisher)
290
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:publisher`](IDcatDatasetBase.md#dctermspublisher)
256
291
 
257
292
  ***
258
293
 
259
- ### dcterms:creator?
294
+ ### dcterms:creator? {#dctermscreator}
260
295
 
261
- > `optional` **dcterms:creator**: `IFoafAgent`
296
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
262
297
 
263
298
  An entity responsible for producing the resource.
264
299
 
@@ -268,13 +303,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
268
303
 
269
304
  #### Inherited from
270
305
 
271
- [`IDcatResource`](IDcatResource.md).[`dcterms:creator`](IDcatResource.md#dctermscreator)
306
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:creator`](IDcatDatasetBase.md#dctermscreator)
272
307
 
273
308
  ***
274
309
 
275
- ### dcterms:accessRights?
310
+ ### dcterms:accessRights? {#dctermsaccessrights}
276
311
 
277
- > `optional` **dcterms:accessRights**: `string` \| `IJsonLdNodeObject`
312
+ > `optional` **dcterms:accessRights?**: `string` \| `IJsonLdNodeObject`
278
313
 
279
314
  Information about who can access the resource or an indication of its security status.
280
315
 
@@ -284,13 +319,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
284
319
 
285
320
  #### Inherited from
286
321
 
287
- [`IDcatResource`](IDcatResource.md).[`dcterms:accessRights`](IDcatResource.md#dctermsaccessrights)
322
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:accessRights`](IDcatDatasetBase.md#dctermsaccessrights)
288
323
 
289
324
  ***
290
325
 
291
- ### dcterms:license?
326
+ ### dcterms:license? {#dctermslicense}
292
327
 
293
- > `optional` **dcterms:license**: `string` \| `IJsonLdNodeObject`
328
+ > `optional` **dcterms:license?**: `string` \| `IJsonLdNodeObject`
294
329
 
295
330
  A legal document under which the resource is made available.
296
331
 
@@ -300,13 +335,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
300
335
 
301
336
  #### Inherited from
302
337
 
303
- [`IDcatResource`](IDcatResource.md).[`dcterms:license`](IDcatResource.md#dctermslicense)
338
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:license`](IDcatDatasetBase.md#dctermslicense)
304
339
 
305
340
  ***
306
341
 
307
- ### dcterms:rights?
342
+ ### dcterms:rights? {#dctermsrights}
308
343
 
309
- > `optional` **dcterms:rights**: `string` \| `IJsonLdNodeObject`
344
+ > `optional` **dcterms:rights?**: `string` \| `IJsonLdNodeObject`
310
345
 
311
346
  Information about rights held in and over the resource.
312
347
 
@@ -316,13 +351,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
316
351
 
317
352
  #### Inherited from
318
353
 
319
- [`IDcatResource`](IDcatResource.md).[`dcterms:rights`](IDcatResource.md#dctermsrights)
354
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:rights`](IDcatDatasetBase.md#dctermsrights)
320
355
 
321
356
  ***
322
357
 
323
- ### dcterms:conformsTo?
358
+ ### dcterms:conformsTo? {#dctermsconformsto}
324
359
 
325
- > `optional` **dcterms:conformsTo**: `ObjectOrArray`\<`string`\>
360
+ > `optional` **dcterms:conformsTo?**: `ObjectOrArray`\<`string`\>
326
361
 
327
362
  An established standard to which the resource conforms.
328
363
 
@@ -332,13 +367,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
332
367
 
333
368
  #### Inherited from
334
369
 
335
- [`IDcatResource`](IDcatResource.md).[`dcterms:conformsTo`](IDcatResource.md#dctermsconformsto)
370
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:conformsTo`](IDcatDatasetBase.md#dctermsconformsto)
336
371
 
337
372
  ***
338
373
 
339
- ### dcterms:type?
374
+ ### dcterms:type? {#dctermstype}
340
375
 
341
- > `optional` **dcterms:type**: `string`
376
+ > `optional` **dcterms:type?**: `string`
342
377
 
343
378
  The nature or genre of the resource.
344
379
 
@@ -348,13 +383,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
348
383
 
349
384
  #### Inherited from
350
385
 
351
- [`IDcatResource`](IDcatResource.md).[`dcterms:type`](IDcatResource.md#dctermstype)
386
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcterms:type`](IDcatDatasetBase.md#dctermstype)
352
387
 
353
388
  ***
354
389
 
355
- ### dcat:contactPoint?
390
+ ### dcat:contactPoint? {#dcatcontactpoint}
356
391
 
357
- > `optional` **dcat:contactPoint**: `string` \| `IJsonLdNodeObject`
392
+ > `optional` **dcat:contactPoint?**: `string` \| `IJsonLdNodeObject`
358
393
 
359
394
  Relevant contact information for the catalogued resource.
360
395
 
@@ -364,13 +399,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
364
399
 
365
400
  #### Inherited from
366
401
 
367
- [`IDcatResource`](IDcatResource.md).[`dcat:contactPoint`](IDcatResource.md#dcatcontactpoint)
402
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcat:contactPoint`](IDcatDatasetBase.md#dcatcontactpoint)
368
403
 
369
404
  ***
370
405
 
371
- ### dcat:keyword?
406
+ ### dcat:keyword? {#dcatkeyword}
372
407
 
373
- > `optional` **dcat:keyword**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
408
+ > `optional` **dcat:keyword?**: `ObjectOrArray`\<`string`\>
374
409
 
375
410
  A keyword or tag describing the resource.
376
411
 
@@ -380,13 +415,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
380
415
 
381
416
  #### Inherited from
382
417
 
383
- [`IDcatResource`](IDcatResource.md).[`dcat:keyword`](IDcatResource.md#dcatkeyword)
418
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcat:keyword`](IDcatDatasetBase.md#dcatkeyword)
384
419
 
385
420
  ***
386
421
 
387
- ### dcat:theme?
422
+ ### dcat:theme? {#dcattheme}
388
423
 
389
- > `optional` **dcat:theme**: `ObjectOrArray`\<`string`\>
424
+ > `optional` **dcat:theme?**: `ObjectOrArray`\<`string`\>
390
425
 
391
426
  A main category of the resource. A resource can have multiple themes.
392
427
 
@@ -396,13 +431,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
396
431
 
397
432
  #### Inherited from
398
433
 
399
- [`IDcatResource`](IDcatResource.md).[`dcat:theme`](IDcatResource.md#dcattheme)
434
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcat:theme`](IDcatDatasetBase.md#dcattheme)
400
435
 
401
436
  ***
402
437
 
403
- ### dcat:landingPage?
438
+ ### dcat:landingPage? {#dcatlandingpage}
404
439
 
405
- > `optional` **dcat:landingPage**: `ObjectOrArray`\<`string`\>
440
+ > `optional` **dcat:landingPage?**: `ObjectOrArray`\<`string`\>
406
441
 
407
442
  A Web page that can be navigated to gain access to the resource.
408
443
 
@@ -412,13 +447,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
412
447
 
413
448
  #### Inherited from
414
449
 
415
- [`IDcatResource`](IDcatResource.md).[`dcat:landingPage`](IDcatResource.md#dcatlandingpage)
450
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcat:landingPage`](IDcatDatasetBase.md#dcatlandingpage)
416
451
 
417
452
  ***
418
453
 
419
- ### dcat:qualifiedRelation?
454
+ ### dcat:qualifiedRelation? {#dcatqualifiedrelation}
420
455
 
421
- > `optional` **dcat:qualifiedRelation**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
456
+ > `optional` **dcat:qualifiedRelation?**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
422
457
 
423
458
  Link to a description of a relationship with another resource.
424
459
 
@@ -428,13 +463,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
428
463
 
429
464
  #### Inherited from
430
465
 
431
- [`IDcatResource`](IDcatResource.md).[`dcat:qualifiedRelation`](IDcatResource.md#dcatqualifiedrelation)
466
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`dcat:qualifiedRelation`](IDcatDatasetBase.md#dcatqualifiedrelation)
432
467
 
433
468
  ***
434
469
 
435
- ### odrl:hasPolicy?
470
+ ### odrl:hasPolicy? {#odrlhaspolicy}
436
471
 
437
- > `optional` **odrl:hasPolicy**: `IOdrlPolicy`
472
+ > `optional` **odrl:hasPolicy?**: `JsonLdObjectWithOptionalContext`\<`IOdrlPolicy`\>
438
473
 
439
474
  An ODRL conformant policy expressing the rights associated with the resource.
440
475
 
@@ -444,4 +479,4 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_has_policy
444
479
 
445
480
  #### Inherited from
446
481
 
447
- [`IDcatResource`](IDcatResource.md).[`odrl:hasPolicy`](IDcatResource.md#odrlhaspolicy)
482
+ [`IDcatDatasetBase`](IDcatDatasetBase.md).[`odrl:hasPolicy`](IDcatDatasetBase.md#odrlhaspolicy)