@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
@@ -12,15 +12,23 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Dataset_Series
12
12
 
13
13
  - [`IDcatDataset`](IDcatDataset.md)
14
14
 
15
- ## Indexable
15
+ ## Properties
16
16
 
17
- \[`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`
17
+ ### @context {#context}
18
18
 
19
- ## Properties
19
+ > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
20
+
21
+ The JSON-LD context for the resource.
22
+
23
+ #### Inherited from
24
+
25
+ [`IDcatDataset`](IDcatDataset.md).[`@context`](IDcatDataset.md#context)
20
26
 
21
- ### dcat:distribution?
27
+ ***
28
+
29
+ ### dcat:distribution? {#dcatdistribution}
22
30
 
23
- > `optional` **dcat:distribution**: `ObjectOrArray`\<[`DistributionOptionalContext`](../type-aliases/DistributionOptionalContext.md)\>
31
+ > `optional` **dcat:distribution?**: `ObjectOrArray`\<[`IDcatDistributionBase`](IDcatDistributionBase.md)\>
24
32
 
25
33
  An available distribution of the dataset.
26
34
 
@@ -34,9 +42,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_distribution
34
42
 
35
43
  ***
36
44
 
37
- ### dcterms:accrualPeriodicity?
45
+ ### dcterms:accrualPeriodicity? {#dctermsaccrualperiodicity}
38
46
 
39
- > `optional` **dcterms:accrualPeriodicity**: `string`
47
+ > `optional` **dcterms:accrualPeriodicity?**: `string`
40
48
 
41
49
  The frequency at which the dataset is published.
42
50
 
@@ -50,9 +58,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_frequency
50
58
 
51
59
  ***
52
60
 
53
- ### dcat:inSeries?
61
+ ### dcat:inSeries? {#dcatinseries}
54
62
 
55
- > `optional` **dcat:inSeries**: `string`
63
+ > `optional` **dcat:inSeries?**: `string`
56
64
 
57
65
  A dataset series of which the dataset is part.
58
66
 
@@ -66,9 +74,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_in_series
66
74
 
67
75
  ***
68
76
 
69
- ### dcterms:spatial?
77
+ ### dcterms:spatial? {#dctermsspatial}
70
78
 
71
- > `optional` **dcterms:spatial**: `IJsonLdNodeObject` \| `ObjectOrArray`\<`string`\>
79
+ > `optional` **dcterms:spatial?**: `string` \| `string`[] \| `IJsonLdNodeObject`
72
80
 
73
81
  The geographical area covered by the dataset.
74
82
 
@@ -82,9 +90,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial
82
90
 
83
91
  ***
84
92
 
85
- ### dcat:spatialResolutionInMeters?
93
+ ### dcat:spatialResolutionInMeters? {#dcatspatialresolutioninmeters}
86
94
 
87
- > `optional` **dcat:spatialResolutionInMeters**: `number`
95
+ > `optional` **dcat:spatialResolutionInMeters?**: `number`
88
96
 
89
97
  Minimum spatial separation resolvable in a dataset, measured in meters.
90
98
 
@@ -98,9 +106,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial_resolution
98
106
 
99
107
  ***
100
108
 
101
- ### dcterms:temporal?
109
+ ### dcterms:temporal? {#dctermstemporal}
102
110
 
103
- > `optional` **dcterms:temporal**: `IDublinCorePeriodOfTime`
111
+ > `optional` **dcterms:temporal?**: `IDublinCorePeriodOfTime`
104
112
 
105
113
  The temporal period that the dataset covers.
106
114
 
@@ -114,9 +122,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal
114
122
 
115
123
  ***
116
124
 
117
- ### dcat:temporalResolution?
125
+ ### dcat:temporalResolution? {#dcattemporalresolution}
118
126
 
119
- > `optional` **dcat:temporalResolution**: `string`
127
+ > `optional` **dcat:temporalResolution?**: `string`
120
128
 
121
129
  Minimum time period resolvable in the dataset.
122
130
 
@@ -130,9 +138,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal_resolution
130
138
 
131
139
  ***
132
140
 
133
- ### prov:wasGeneratedBy?
141
+ ### prov:wasGeneratedBy? {#provwasgeneratedby}
134
142
 
135
- > `optional` **prov:wasGeneratedBy**: `string` \| `IJsonLdNodeObject`
143
+ > `optional` **prov:wasGeneratedBy?**: `string` \| `IJsonLdNodeObject`
136
144
 
137
145
  An activity that generated, or provides the business context for, the creation of the dataset.
138
146
 
@@ -146,7 +154,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_was_generated_by
146
154
 
147
155
  ***
148
156
 
149
- ### @type
157
+ ### @type {#type}
150
158
 
151
159
  > **@type**: `"dcat:DatasetSeries"`
152
160
 
@@ -158,9 +166,9 @@ The type identifier, typically "DatasetSeries".
158
166
 
159
167
  ***
160
168
 
161
- ### dcat:first?
169
+ ### dcat:first? {#dcatfirst}
162
170
 
163
- > `optional` **dcat:first**: `string`
171
+ > `optional` **dcat:first?**: `string`
164
172
 
165
173
  A dataset that is part of this dataset series.
166
174
 
@@ -170,9 +178,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_series_first
170
178
 
171
179
  ***
172
180
 
173
- ### dcat:last?
181
+ ### dcat:last? {#dcatlast}
174
182
 
175
- > `optional` **dcat:last**: `string`
183
+ > `optional` **dcat:last?**: `string`
176
184
 
177
185
  A dataset that is part of this dataset series.
178
186
 
@@ -182,9 +190,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_series_last
182
190
 
183
191
  ***
184
192
 
185
- ### dcat:seriesMember?
193
+ ### dcat:seriesMember? {#dcatseriesmember}
186
194
 
187
- > `optional` **dcat:seriesMember**: `ObjectOrArray`\<`string`\>
195
+ > `optional` **dcat:seriesMember?**: `ObjectOrArray`\<`string`\>
188
196
 
189
197
  A dataset that is part of this dataset series.
190
198
 
@@ -194,21 +202,33 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_series_member
194
202
 
195
203
  ***
196
204
 
197
- ### @context
205
+ ### dcat:dataset? {#dcatdataset}
198
206
 
199
- > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
207
+ > `optional` **dcat:dataset?**: `ObjectOrArray`\<[`IDcatDatasetBase`](IDcatDatasetBase.md)\>
200
208
 
201
- The JSON-LD context for the resource.
209
+ A dataset that is part of this dataset series.
210
+
211
+ #### See
212
+
213
+ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_dataset
214
+
215
+ ***
216
+
217
+ ### @id? {#id}
218
+
219
+ > `optional` **@id?**: `string`
220
+
221
+ The unique identifier for the resource.
202
222
 
203
223
  #### Inherited from
204
224
 
205
- [`IDcatDataset`](IDcatDataset.md).[`@context`](IDcatDataset.md#context)
225
+ [`IDcatDataset`](IDcatDataset.md).[`@id`](IDcatDataset.md#id)
206
226
 
207
227
  ***
208
228
 
209
- ### dcterms:title?
229
+ ### dcterms:title? {#dctermstitle}
210
230
 
211
- > `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
231
+ > `optional` **dcterms:title?**: `ObjectOrArray`\<`string`\>
212
232
 
213
233
  A name given to the resource.
214
234
 
@@ -222,9 +242,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
222
242
 
223
243
  ***
224
244
 
225
- ### dcterms:description?
245
+ ### dcterms:description? {#dctermsdescription}
226
246
 
227
- > `optional` **dcterms:description**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
247
+ > `optional` **dcterms:description?**: `ObjectOrArray`\<`string`\>
228
248
 
229
249
  A free-text account of the resource.
230
250
 
@@ -238,9 +258,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
238
258
 
239
259
  ***
240
260
 
241
- ### dcterms:identifier?
261
+ ### dcterms:identifier? {#dctermsidentifier}
242
262
 
243
- > `optional` **dcterms:identifier**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
263
+ > `optional` **dcterms:identifier?**: `ObjectOrArray`\<`string`\>
244
264
 
245
265
  A unique identifier of the resource.
246
266
 
@@ -254,9 +274,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
254
274
 
255
275
  ***
256
276
 
257
- ### dcterms:issued?
277
+ ### dcterms:issued? {#dctermsissued}
258
278
 
259
- > `optional` **dcterms:issued**: `string`
279
+ > `optional` **dcterms:issued?**: `string`
260
280
 
261
281
  Date of formal issuance (publication) of the resource.
262
282
 
@@ -270,9 +290,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
270
290
 
271
291
  ***
272
292
 
273
- ### dcterms:modified?
293
+ ### dcterms:modified? {#dctermsmodified}
274
294
 
275
- > `optional` **dcterms:modified**: `string`
295
+ > `optional` **dcterms:modified?**: `string`
276
296
 
277
297
  Most recent date on which the resource was changed, updated or modified.
278
298
 
@@ -286,9 +306,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
286
306
 
287
307
  ***
288
308
 
289
- ### dcterms:language?
309
+ ### dcterms:language? {#dctermslanguage}
290
310
 
291
- > `optional` **dcterms:language**: `ObjectOrArray`\<`string`\>
311
+ > `optional` **dcterms:language?**: `ObjectOrArray`\<`string`\>
292
312
 
293
313
  A language of the resource.
294
314
 
@@ -302,9 +322,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
302
322
 
303
323
  ***
304
324
 
305
- ### dcterms:publisher?
325
+ ### dcterms:publisher? {#dctermspublisher}
306
326
 
307
- > `optional` **dcterms:publisher**: `string` \| `IFoafAgent`
327
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
308
328
 
309
329
  An entity responsible for making the resource available.
310
330
 
@@ -318,9 +338,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
318
338
 
319
339
  ***
320
340
 
321
- ### dcterms:creator?
341
+ ### dcterms:creator? {#dctermscreator}
322
342
 
323
- > `optional` **dcterms:creator**: `IFoafAgent`
343
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
324
344
 
325
345
  An entity responsible for producing the resource.
326
346
 
@@ -334,9 +354,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
334
354
 
335
355
  ***
336
356
 
337
- ### dcterms:accessRights?
357
+ ### dcterms:accessRights? {#dctermsaccessrights}
338
358
 
339
- > `optional` **dcterms:accessRights**: `string` \| `IJsonLdNodeObject`
359
+ > `optional` **dcterms:accessRights?**: `string` \| `IJsonLdNodeObject`
340
360
 
341
361
  Information about who can access the resource or an indication of its security status.
342
362
 
@@ -350,9 +370,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
350
370
 
351
371
  ***
352
372
 
353
- ### dcterms:license?
373
+ ### dcterms:license? {#dctermslicense}
354
374
 
355
- > `optional` **dcterms:license**: `string` \| `IJsonLdNodeObject`
375
+ > `optional` **dcterms:license?**: `string` \| `IJsonLdNodeObject`
356
376
 
357
377
  A legal document under which the resource is made available.
358
378
 
@@ -366,9 +386,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
366
386
 
367
387
  ***
368
388
 
369
- ### dcterms:rights?
389
+ ### dcterms:rights? {#dctermsrights}
370
390
 
371
- > `optional` **dcterms:rights**: `string` \| `IJsonLdNodeObject`
391
+ > `optional` **dcterms:rights?**: `string` \| `IJsonLdNodeObject`
372
392
 
373
393
  Information about rights held in and over the resource.
374
394
 
@@ -382,9 +402,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
382
402
 
383
403
  ***
384
404
 
385
- ### dcterms:conformsTo?
405
+ ### dcterms:conformsTo? {#dctermsconformsto}
386
406
 
387
- > `optional` **dcterms:conformsTo**: `ObjectOrArray`\<`string`\>
407
+ > `optional` **dcterms:conformsTo?**: `ObjectOrArray`\<`string`\>
388
408
 
389
409
  An established standard to which the resource conforms.
390
410
 
@@ -398,9 +418,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
398
418
 
399
419
  ***
400
420
 
401
- ### dcterms:type?
421
+ ### dcterms:type? {#dctermstype}
402
422
 
403
- > `optional` **dcterms:type**: `string`
423
+ > `optional` **dcterms:type?**: `string`
404
424
 
405
425
  The nature or genre of the resource.
406
426
 
@@ -414,9 +434,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
414
434
 
415
435
  ***
416
436
 
417
- ### dcat:contactPoint?
437
+ ### dcat:contactPoint? {#dcatcontactpoint}
418
438
 
419
- > `optional` **dcat:contactPoint**: `string` \| `IJsonLdNodeObject`
439
+ > `optional` **dcat:contactPoint?**: `string` \| `IJsonLdNodeObject`
420
440
 
421
441
  Relevant contact information for the catalogued resource.
422
442
 
@@ -430,9 +450,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
430
450
 
431
451
  ***
432
452
 
433
- ### dcat:keyword?
453
+ ### dcat:keyword? {#dcatkeyword}
434
454
 
435
- > `optional` **dcat:keyword**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
455
+ > `optional` **dcat:keyword?**: `ObjectOrArray`\<`string`\>
436
456
 
437
457
  A keyword or tag describing the resource.
438
458
 
@@ -446,9 +466,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
446
466
 
447
467
  ***
448
468
 
449
- ### dcat:theme?
469
+ ### dcat:theme? {#dcattheme}
450
470
 
451
- > `optional` **dcat:theme**: `ObjectOrArray`\<`string`\>
471
+ > `optional` **dcat:theme?**: `ObjectOrArray`\<`string`\>
452
472
 
453
473
  A main category of the resource. A resource can have multiple themes.
454
474
 
@@ -462,9 +482,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
462
482
 
463
483
  ***
464
484
 
465
- ### dcat:landingPage?
485
+ ### dcat:landingPage? {#dcatlandingpage}
466
486
 
467
- > `optional` **dcat:landingPage**: `ObjectOrArray`\<`string`\>
487
+ > `optional` **dcat:landingPage?**: `ObjectOrArray`\<`string`\>
468
488
 
469
489
  A Web page that can be navigated to gain access to the resource.
470
490
 
@@ -478,9 +498,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
478
498
 
479
499
  ***
480
500
 
481
- ### dcat:qualifiedRelation?
501
+ ### dcat:qualifiedRelation? {#dcatqualifiedrelation}
482
502
 
483
- > `optional` **dcat:qualifiedRelation**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
503
+ > `optional` **dcat:qualifiedRelation?**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
484
504
 
485
505
  Link to a description of a relationship with another resource.
486
506
 
@@ -494,9 +514,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
494
514
 
495
515
  ***
496
516
 
497
- ### odrl:hasPolicy?
517
+ ### odrl:hasPolicy? {#odrlhaspolicy}
498
518
 
499
- > `optional` **odrl:hasPolicy**: `IOdrlPolicy`
519
+ > `optional` **odrl:hasPolicy?**: `JsonLdObjectWithOptionalContext`\<`IOdrlPolicy`\>
500
520
 
501
521
  An ODRL conformant policy expressing the rights associated with the resource.
502
522