@twin.org/standards-w3c-dcat 0.0.3-next.55 → 0.0.3-next.56
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/docs/changelog.md +19 -0
- package/docs/reference/interfaces/IDcatCatalog.md +35 -35
- package/docs/reference/interfaces/IDcatCatalogBase.md +35 -35
- package/docs/reference/interfaces/IDcatCatalogRecord.md +7 -7
- package/docs/reference/interfaces/IDcatCatalogRecordBase.md +7 -7
- package/docs/reference/interfaces/IDcatDataService.md +23 -23
- package/docs/reference/interfaces/IDcatDataServiceBase.md +23 -23
- package/docs/reference/interfaces/IDcatDataset.md +28 -28
- package/docs/reference/interfaces/IDcatDatasetBase.md +28 -28
- package/docs/reference/interfaces/IDcatDatasetSeries.md +32 -32
- package/docs/reference/interfaces/IDcatDistribution.md +21 -21
- package/docs/reference/interfaces/IDcatDistributionBase.md +21 -21
- package/docs/reference/interfaces/IDcatRelationship.md +2 -2
- package/docs/reference/interfaces/IDcatResource.md +20 -20
- package/docs/reference/interfaces/IDcatResourceBase.md +20 -20
- package/docs/reference/interfaces/IDcatRole.md +2 -2
- package/docs/reference/type-aliases/DcatContextType.md +2 -2
- package/package.json +5 -5
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.56](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.55...standards-w3c-dcat-v0.0.3-next.56) (2026-03-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* fixes in dataspace and odrl ([9924f91](https://github.com/twinfoundation/standards/commit/9924f9135cb6e227e1040065ab017b1c7ef8347a))
|
|
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.55 to 0.0.3-next.56
|
|
16
|
+
* @twin.org/standards-foaf bumped from 0.0.3-next.55 to 0.0.3-next.56
|
|
17
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.55 to 0.0.3-next.56
|
|
18
|
+
* @twin.org/standards-w3c-vcard bumped from 0.0.3-next.55 to 0.0.3-next.56
|
|
19
|
+
* devDependencies
|
|
20
|
+
* @twin.org/standards-ld-contexts bumped from 0.0.3-next.55 to 0.0.3-next.56
|
|
21
|
+
|
|
3
22
|
## [0.0.3-next.55](https://github.com/twinfoundation/standards/compare/standards-w3c-dcat-v0.0.3-next.54...standards-w3c-dcat-v0.0.3-next.55) (2026-03-19)
|
|
4
23
|
|
|
5
24
|
|
|
@@ -36,7 +36,7 @@ The type identifier, typically "Catalog".
|
|
|
36
36
|
|
|
37
37
|
### foaf:homepage? {#foafhomepage}
|
|
38
38
|
|
|
39
|
-
> `optional` **foaf:homepage
|
|
39
|
+
> `optional` **foaf:homepage?**: `string`
|
|
40
40
|
|
|
41
41
|
A homepage of the catalog (a public Web document usually available in HTML).
|
|
42
42
|
|
|
@@ -52,7 +52,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_homepage
|
|
|
52
52
|
|
|
53
53
|
### dcat:themeTaxonomy? {#dcatthemetaxonomy}
|
|
54
54
|
|
|
55
|
-
> `optional` **dcat:themeTaxonomy
|
|
55
|
+
> `optional` **dcat:themeTaxonomy?**: `ObjectOrArray`\<[`IDcatResource`](IDcatResource.md)\>
|
|
56
56
|
|
|
57
57
|
A knowledge organization system (KOS) used to classify the resources in the catalog.
|
|
58
58
|
|
|
@@ -68,7 +68,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_themes
|
|
|
68
68
|
|
|
69
69
|
### dcat:resource? {#dcatresource}
|
|
70
70
|
|
|
71
|
-
> `optional` **dcat:resource
|
|
71
|
+
> `optional` **dcat:resource?**: `ObjectOrArray`\<[`IDcatResource`](IDcatResource.md)\>
|
|
72
72
|
|
|
73
73
|
A resource that is listed in the catalog.
|
|
74
74
|
|
|
@@ -84,7 +84,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_resource
|
|
|
84
84
|
|
|
85
85
|
### dcat:dataset? {#dcatdataset}
|
|
86
86
|
|
|
87
|
-
> `optional` **dcat:dataset
|
|
87
|
+
> `optional` **dcat:dataset?**: `ObjectOrArray`\<[`IDcatDatasetBase`](IDcatDatasetBase.md)\>
|
|
88
88
|
|
|
89
89
|
A dataset that is listed in the catalog.
|
|
90
90
|
|
|
@@ -100,7 +100,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_dataset
|
|
|
100
100
|
|
|
101
101
|
### dcat:service? {#dcatservice}
|
|
102
102
|
|
|
103
|
-
> `optional` **dcat:service
|
|
103
|
+
> `optional` **dcat:service?**: `ObjectOrArray`\<[`IDcatDataServiceBase`](IDcatDataServiceBase.md)\>
|
|
104
104
|
|
|
105
105
|
A data service that is listed in the catalog.
|
|
106
106
|
|
|
@@ -116,7 +116,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_service
|
|
|
116
116
|
|
|
117
117
|
### dcat:catalog? {#dcatcatalog}
|
|
118
118
|
|
|
119
|
-
> `optional` **dcat:catalog
|
|
119
|
+
> `optional` **dcat:catalog?**: `ObjectOrArray`\<[`IDcatCatalogBase`](IDcatCatalogBase.md)\>
|
|
120
120
|
|
|
121
121
|
A catalog that is listed in the catalog.
|
|
122
122
|
|
|
@@ -132,7 +132,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_catalog
|
|
|
132
132
|
|
|
133
133
|
### dcat:record? {#dcatrecord}
|
|
134
134
|
|
|
135
|
-
> `optional` **dcat:record
|
|
135
|
+
> `optional` **dcat:record?**: `ObjectOrArray`\<[`IDcatCatalogRecordBase`](IDcatCatalogRecordBase.md)\>
|
|
136
136
|
|
|
137
137
|
A record describing the registration of a single resource in the catalog.
|
|
138
138
|
|
|
@@ -148,7 +148,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_catalog_record
|
|
|
148
148
|
|
|
149
149
|
### dcat:distribution? {#dcatdistribution}
|
|
150
150
|
|
|
151
|
-
> `optional` **dcat:distribution
|
|
151
|
+
> `optional` **dcat:distribution?**: `ObjectOrArray`\<[`IDcatDistributionBase`](IDcatDistributionBase.md)\>
|
|
152
152
|
|
|
153
153
|
An available distribution of the dataset.
|
|
154
154
|
|
|
@@ -164,7 +164,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_distribution
|
|
|
164
164
|
|
|
165
165
|
### dcterms:accrualPeriodicity? {#dctermsaccrualperiodicity}
|
|
166
166
|
|
|
167
|
-
> `optional` **dcterms:accrualPeriodicity
|
|
167
|
+
> `optional` **dcterms:accrualPeriodicity?**: `string`
|
|
168
168
|
|
|
169
169
|
The frequency at which the dataset is published.
|
|
170
170
|
|
|
@@ -180,7 +180,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_frequency
|
|
|
180
180
|
|
|
181
181
|
### dcat:inSeries? {#dcatinseries}
|
|
182
182
|
|
|
183
|
-
> `optional` **dcat:inSeries
|
|
183
|
+
> `optional` **dcat:inSeries?**: `string`
|
|
184
184
|
|
|
185
185
|
A dataset series of which the dataset is part.
|
|
186
186
|
|
|
@@ -196,7 +196,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_in_series
|
|
|
196
196
|
|
|
197
197
|
### dcterms:spatial? {#dctermsspatial}
|
|
198
198
|
|
|
199
|
-
> `optional` **dcterms:spatial
|
|
199
|
+
> `optional` **dcterms:spatial?**: `string` \| `string`[] \| `IJsonLdNodeObject`
|
|
200
200
|
|
|
201
201
|
The geographical area covered by the dataset.
|
|
202
202
|
|
|
@@ -212,7 +212,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial
|
|
|
212
212
|
|
|
213
213
|
### dcat:spatialResolutionInMeters? {#dcatspatialresolutioninmeters}
|
|
214
214
|
|
|
215
|
-
> `optional` **dcat:spatialResolutionInMeters
|
|
215
|
+
> `optional` **dcat:spatialResolutionInMeters?**: `number`
|
|
216
216
|
|
|
217
217
|
Minimum spatial separation resolvable in a dataset, measured in meters.
|
|
218
218
|
|
|
@@ -228,7 +228,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial_resolution
|
|
|
228
228
|
|
|
229
229
|
### dcterms:temporal? {#dctermstemporal}
|
|
230
230
|
|
|
231
|
-
> `optional` **dcterms:temporal
|
|
231
|
+
> `optional` **dcterms:temporal?**: `IDublinCorePeriodOfTime`
|
|
232
232
|
|
|
233
233
|
The temporal period that the dataset covers.
|
|
234
234
|
|
|
@@ -244,7 +244,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal
|
|
|
244
244
|
|
|
245
245
|
### dcat:temporalResolution? {#dcattemporalresolution}
|
|
246
246
|
|
|
247
|
-
> `optional` **dcat:temporalResolution
|
|
247
|
+
> `optional` **dcat:temporalResolution?**: `string`
|
|
248
248
|
|
|
249
249
|
Minimum time period resolvable in the dataset.
|
|
250
250
|
|
|
@@ -260,7 +260,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal_resolution
|
|
|
260
260
|
|
|
261
261
|
### prov:wasGeneratedBy? {#provwasgeneratedby}
|
|
262
262
|
|
|
263
|
-
> `optional` **prov:wasGeneratedBy
|
|
263
|
+
> `optional` **prov:wasGeneratedBy?**: `string` \| `IJsonLdNodeObject`
|
|
264
264
|
|
|
265
265
|
An activity that generated, or provides the business context for, the creation of the dataset.
|
|
266
266
|
|
|
@@ -276,7 +276,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_was_generated_by
|
|
|
276
276
|
|
|
277
277
|
### @id? {#id}
|
|
278
278
|
|
|
279
|
-
> `optional` **@id
|
|
279
|
+
> `optional` **@id?**: `string`
|
|
280
280
|
|
|
281
281
|
The unique identifier for the resource.
|
|
282
282
|
|
|
@@ -288,7 +288,7 @@ The unique identifier for the resource.
|
|
|
288
288
|
|
|
289
289
|
### dcterms:title? {#dctermstitle}
|
|
290
290
|
|
|
291
|
-
> `optional` **dcterms:title
|
|
291
|
+
> `optional` **dcterms:title?**: `ObjectOrArray`\<`string`\>
|
|
292
292
|
|
|
293
293
|
A name given to the resource.
|
|
294
294
|
|
|
@@ -304,7 +304,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
|
|
|
304
304
|
|
|
305
305
|
### dcterms:description? {#dctermsdescription}
|
|
306
306
|
|
|
307
|
-
> `optional` **dcterms:description
|
|
307
|
+
> `optional` **dcterms:description?**: `ObjectOrArray`\<`string`\>
|
|
308
308
|
|
|
309
309
|
A free-text account of the resource.
|
|
310
310
|
|
|
@@ -320,7 +320,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
|
|
|
320
320
|
|
|
321
321
|
### dcterms:identifier? {#dctermsidentifier}
|
|
322
322
|
|
|
323
|
-
> `optional` **dcterms:identifier
|
|
323
|
+
> `optional` **dcterms:identifier?**: `ObjectOrArray`\<`string`\>
|
|
324
324
|
|
|
325
325
|
A unique identifier of the resource.
|
|
326
326
|
|
|
@@ -336,7 +336,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
|
|
|
336
336
|
|
|
337
337
|
### dcterms:issued? {#dctermsissued}
|
|
338
338
|
|
|
339
|
-
> `optional` **dcterms:issued
|
|
339
|
+
> `optional` **dcterms:issued?**: `string`
|
|
340
340
|
|
|
341
341
|
Date of formal issuance (publication) of the resource.
|
|
342
342
|
|
|
@@ -352,7 +352,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
|
|
|
352
352
|
|
|
353
353
|
### dcterms:modified? {#dctermsmodified}
|
|
354
354
|
|
|
355
|
-
> `optional` **dcterms:modified
|
|
355
|
+
> `optional` **dcterms:modified?**: `string`
|
|
356
356
|
|
|
357
357
|
Most recent date on which the resource was changed, updated or modified.
|
|
358
358
|
|
|
@@ -368,7 +368,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
|
|
|
368
368
|
|
|
369
369
|
### dcterms:language? {#dctermslanguage}
|
|
370
370
|
|
|
371
|
-
> `optional` **dcterms:language
|
|
371
|
+
> `optional` **dcterms:language?**: `ObjectOrArray`\<`string`\>
|
|
372
372
|
|
|
373
373
|
A language of the resource.
|
|
374
374
|
|
|
@@ -384,7 +384,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
|
|
|
384
384
|
|
|
385
385
|
### dcterms:publisher? {#dctermspublisher}
|
|
386
386
|
|
|
387
|
-
> `optional` **dcterms:publisher
|
|
387
|
+
> `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
|
|
388
388
|
|
|
389
389
|
An entity responsible for making the resource available.
|
|
390
390
|
|
|
@@ -400,7 +400,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
|
|
|
400
400
|
|
|
401
401
|
### dcterms:creator? {#dctermscreator}
|
|
402
402
|
|
|
403
|
-
> `optional` **dcterms:creator
|
|
403
|
+
> `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
|
|
404
404
|
|
|
405
405
|
An entity responsible for producing the resource.
|
|
406
406
|
|
|
@@ -416,7 +416,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
|
|
|
416
416
|
|
|
417
417
|
### dcterms:accessRights? {#dctermsaccessrights}
|
|
418
418
|
|
|
419
|
-
> `optional` **dcterms:accessRights
|
|
419
|
+
> `optional` **dcterms:accessRights?**: `string` \| `IJsonLdNodeObject`
|
|
420
420
|
|
|
421
421
|
Information about who can access the resource or an indication of its security status.
|
|
422
422
|
|
|
@@ -432,7 +432,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
|
|
|
432
432
|
|
|
433
433
|
### dcterms:license? {#dctermslicense}
|
|
434
434
|
|
|
435
|
-
> `optional` **dcterms:license
|
|
435
|
+
> `optional` **dcterms:license?**: `string` \| `IJsonLdNodeObject`
|
|
436
436
|
|
|
437
437
|
A legal document under which the resource is made available.
|
|
438
438
|
|
|
@@ -448,7 +448,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
|
|
|
448
448
|
|
|
449
449
|
### dcterms:rights? {#dctermsrights}
|
|
450
450
|
|
|
451
|
-
> `optional` **dcterms:rights
|
|
451
|
+
> `optional` **dcterms:rights?**: `string` \| `IJsonLdNodeObject`
|
|
452
452
|
|
|
453
453
|
Information about rights held in and over the resource.
|
|
454
454
|
|
|
@@ -464,7 +464,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
|
|
|
464
464
|
|
|
465
465
|
### dcterms:conformsTo? {#dctermsconformsto}
|
|
466
466
|
|
|
467
|
-
> `optional` **dcterms:conformsTo
|
|
467
|
+
> `optional` **dcterms:conformsTo?**: `ObjectOrArray`\<`string`\>
|
|
468
468
|
|
|
469
469
|
An established standard to which the resource conforms.
|
|
470
470
|
|
|
@@ -480,7 +480,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
|
|
|
480
480
|
|
|
481
481
|
### dcterms:type? {#dctermstype}
|
|
482
482
|
|
|
483
|
-
> `optional` **dcterms:type
|
|
483
|
+
> `optional` **dcterms:type?**: `string`
|
|
484
484
|
|
|
485
485
|
The nature or genre of the resource.
|
|
486
486
|
|
|
@@ -496,7 +496,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
|
|
|
496
496
|
|
|
497
497
|
### dcat:contactPoint? {#dcatcontactpoint}
|
|
498
498
|
|
|
499
|
-
> `optional` **dcat:contactPoint
|
|
499
|
+
> `optional` **dcat:contactPoint?**: `string` \| `IJsonLdNodeObject`
|
|
500
500
|
|
|
501
501
|
Relevant contact information for the catalogued resource.
|
|
502
502
|
|
|
@@ -512,7 +512,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
|
|
|
512
512
|
|
|
513
513
|
### dcat:keyword? {#dcatkeyword}
|
|
514
514
|
|
|
515
|
-
> `optional` **dcat:keyword
|
|
515
|
+
> `optional` **dcat:keyword?**: `ObjectOrArray`\<`string`\>
|
|
516
516
|
|
|
517
517
|
A keyword or tag describing the resource.
|
|
518
518
|
|
|
@@ -528,7 +528,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
|
|
|
528
528
|
|
|
529
529
|
### dcat:theme? {#dcattheme}
|
|
530
530
|
|
|
531
|
-
> `optional` **dcat:theme
|
|
531
|
+
> `optional` **dcat:theme?**: `ObjectOrArray`\<`string`\>
|
|
532
532
|
|
|
533
533
|
A main category of the resource. A resource can have multiple themes.
|
|
534
534
|
|
|
@@ -544,7 +544,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
|
|
|
544
544
|
|
|
545
545
|
### dcat:landingPage? {#dcatlandingpage}
|
|
546
546
|
|
|
547
|
-
> `optional` **dcat:landingPage
|
|
547
|
+
> `optional` **dcat:landingPage?**: `ObjectOrArray`\<`string`\>
|
|
548
548
|
|
|
549
549
|
A Web page that can be navigated to gain access to the resource.
|
|
550
550
|
|
|
@@ -560,7 +560,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
|
|
|
560
560
|
|
|
561
561
|
### dcat:qualifiedRelation? {#dcatqualifiedrelation}
|
|
562
562
|
|
|
563
|
-
> `optional` **dcat:qualifiedRelation
|
|
563
|
+
> `optional` **dcat:qualifiedRelation?**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
|
|
564
564
|
|
|
565
565
|
Link to a description of a relationship with another resource.
|
|
566
566
|
|
|
@@ -576,7 +576,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
|
|
|
576
576
|
|
|
577
577
|
### odrl:hasPolicy? {#odrlhaspolicy}
|
|
578
578
|
|
|
579
|
-
> `optional` **odrl:hasPolicy
|
|
579
|
+
> `optional` **odrl:hasPolicy?**: `IOdrlPolicy`
|
|
580
580
|
|
|
581
581
|
An ODRL conformant policy expressing the rights associated with the resource.
|
|
582
582
|
|
|
@@ -33,7 +33,7 @@ The type identifier, typically "Catalog".
|
|
|
33
33
|
|
|
34
34
|
### foaf:homepage? {#foafhomepage}
|
|
35
35
|
|
|
36
|
-
> `optional` **foaf:homepage
|
|
36
|
+
> `optional` **foaf:homepage?**: `string`
|
|
37
37
|
|
|
38
38
|
A homepage of the catalog (a public Web document usually available in HTML).
|
|
39
39
|
|
|
@@ -45,7 +45,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_homepage
|
|
|
45
45
|
|
|
46
46
|
### dcat:themeTaxonomy? {#dcatthemetaxonomy}
|
|
47
47
|
|
|
48
|
-
> `optional` **dcat:themeTaxonomy
|
|
48
|
+
> `optional` **dcat:themeTaxonomy?**: `ObjectOrArray`\<[`IDcatResource`](IDcatResource.md)\>
|
|
49
49
|
|
|
50
50
|
A knowledge organization system (KOS) used to classify the resources in the catalog.
|
|
51
51
|
|
|
@@ -57,7 +57,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_themes
|
|
|
57
57
|
|
|
58
58
|
### dcat:resource? {#dcatresource}
|
|
59
59
|
|
|
60
|
-
> `optional` **dcat:resource
|
|
60
|
+
> `optional` **dcat:resource?**: `ObjectOrArray`\<[`IDcatResource`](IDcatResource.md)\>
|
|
61
61
|
|
|
62
62
|
A resource that is listed in the catalog.
|
|
63
63
|
|
|
@@ -69,7 +69,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_resource
|
|
|
69
69
|
|
|
70
70
|
### dcat:dataset? {#dcatdataset}
|
|
71
71
|
|
|
72
|
-
> `optional` **dcat:dataset
|
|
72
|
+
> `optional` **dcat:dataset?**: `ObjectOrArray`\<[`IDcatDatasetBase`](IDcatDatasetBase.md)\>
|
|
73
73
|
|
|
74
74
|
A dataset that is listed in the catalog.
|
|
75
75
|
|
|
@@ -81,7 +81,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_dataset
|
|
|
81
81
|
|
|
82
82
|
### dcat:service? {#dcatservice}
|
|
83
83
|
|
|
84
|
-
> `optional` **dcat:service
|
|
84
|
+
> `optional` **dcat:service?**: `ObjectOrArray`\<[`IDcatDataServiceBase`](IDcatDataServiceBase.md)\>
|
|
85
85
|
|
|
86
86
|
A data service that is listed in the catalog.
|
|
87
87
|
|
|
@@ -93,7 +93,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_service
|
|
|
93
93
|
|
|
94
94
|
### dcat:catalog? {#dcatcatalog}
|
|
95
95
|
|
|
96
|
-
> `optional` **dcat:catalog
|
|
96
|
+
> `optional` **dcat:catalog?**: `ObjectOrArray`\<`IDcatCatalogBase`\>
|
|
97
97
|
|
|
98
98
|
A catalog that is listed in the catalog.
|
|
99
99
|
|
|
@@ -105,7 +105,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_catalog
|
|
|
105
105
|
|
|
106
106
|
### dcat:record? {#dcatrecord}
|
|
107
107
|
|
|
108
|
-
> `optional` **dcat:record
|
|
108
|
+
> `optional` **dcat:record?**: `ObjectOrArray`\<[`IDcatCatalogRecordBase`](IDcatCatalogRecordBase.md)\>
|
|
109
109
|
|
|
110
110
|
A record describing the registration of a single resource in the catalog.
|
|
111
111
|
|
|
@@ -117,7 +117,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_catalog_record
|
|
|
117
117
|
|
|
118
118
|
### dcat:distribution? {#dcatdistribution}
|
|
119
119
|
|
|
120
|
-
> `optional` **dcat:distribution
|
|
120
|
+
> `optional` **dcat:distribution?**: `ObjectOrArray`\<[`IDcatDistributionBase`](IDcatDistributionBase.md)\>
|
|
121
121
|
|
|
122
122
|
An available distribution of the dataset.
|
|
123
123
|
|
|
@@ -133,7 +133,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_distribution
|
|
|
133
133
|
|
|
134
134
|
### dcterms:accrualPeriodicity? {#dctermsaccrualperiodicity}
|
|
135
135
|
|
|
136
|
-
> `optional` **dcterms:accrualPeriodicity
|
|
136
|
+
> `optional` **dcterms:accrualPeriodicity?**: `string`
|
|
137
137
|
|
|
138
138
|
The frequency at which the dataset is published.
|
|
139
139
|
|
|
@@ -149,7 +149,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_frequency
|
|
|
149
149
|
|
|
150
150
|
### dcat:inSeries? {#dcatinseries}
|
|
151
151
|
|
|
152
|
-
> `optional` **dcat:inSeries
|
|
152
|
+
> `optional` **dcat:inSeries?**: `string`
|
|
153
153
|
|
|
154
154
|
A dataset series of which the dataset is part.
|
|
155
155
|
|
|
@@ -165,7 +165,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_in_series
|
|
|
165
165
|
|
|
166
166
|
### dcterms:spatial? {#dctermsspatial}
|
|
167
167
|
|
|
168
|
-
> `optional` **dcterms:spatial
|
|
168
|
+
> `optional` **dcterms:spatial?**: `string` \| `string`[] \| `IJsonLdNodeObject`
|
|
169
169
|
|
|
170
170
|
The geographical area covered by the dataset.
|
|
171
171
|
|
|
@@ -181,7 +181,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial
|
|
|
181
181
|
|
|
182
182
|
### dcat:spatialResolutionInMeters? {#dcatspatialresolutioninmeters}
|
|
183
183
|
|
|
184
|
-
> `optional` **dcat:spatialResolutionInMeters
|
|
184
|
+
> `optional` **dcat:spatialResolutionInMeters?**: `number`
|
|
185
185
|
|
|
186
186
|
Minimum spatial separation resolvable in a dataset, measured in meters.
|
|
187
187
|
|
|
@@ -197,7 +197,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial_resolution
|
|
|
197
197
|
|
|
198
198
|
### dcterms:temporal? {#dctermstemporal}
|
|
199
199
|
|
|
200
|
-
> `optional` **dcterms:temporal
|
|
200
|
+
> `optional` **dcterms:temporal?**: `IDublinCorePeriodOfTime`
|
|
201
201
|
|
|
202
202
|
The temporal period that the dataset covers.
|
|
203
203
|
|
|
@@ -213,7 +213,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal
|
|
|
213
213
|
|
|
214
214
|
### dcat:temporalResolution? {#dcattemporalresolution}
|
|
215
215
|
|
|
216
|
-
> `optional` **dcat:temporalResolution
|
|
216
|
+
> `optional` **dcat:temporalResolution?**: `string`
|
|
217
217
|
|
|
218
218
|
Minimum time period resolvable in the dataset.
|
|
219
219
|
|
|
@@ -229,7 +229,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal_resolution
|
|
|
229
229
|
|
|
230
230
|
### prov:wasGeneratedBy? {#provwasgeneratedby}
|
|
231
231
|
|
|
232
|
-
> `optional` **prov:wasGeneratedBy
|
|
232
|
+
> `optional` **prov:wasGeneratedBy?**: `string` \| `IJsonLdNodeObject`
|
|
233
233
|
|
|
234
234
|
An activity that generated, or provides the business context for, the creation of the dataset.
|
|
235
235
|
|
|
@@ -245,7 +245,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_was_generated_by
|
|
|
245
245
|
|
|
246
246
|
### @id? {#id}
|
|
247
247
|
|
|
248
|
-
> `optional` **@id
|
|
248
|
+
> `optional` **@id?**: `string`
|
|
249
249
|
|
|
250
250
|
The unique identifier for the resource.
|
|
251
251
|
|
|
@@ -257,7 +257,7 @@ The unique identifier for the resource.
|
|
|
257
257
|
|
|
258
258
|
### dcterms:title? {#dctermstitle}
|
|
259
259
|
|
|
260
|
-
> `optional` **dcterms:title
|
|
260
|
+
> `optional` **dcterms:title?**: `ObjectOrArray`\<`string`\>
|
|
261
261
|
|
|
262
262
|
A name given to the resource.
|
|
263
263
|
|
|
@@ -273,7 +273,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
|
|
|
273
273
|
|
|
274
274
|
### dcterms:description? {#dctermsdescription}
|
|
275
275
|
|
|
276
|
-
> `optional` **dcterms:description
|
|
276
|
+
> `optional` **dcterms:description?**: `ObjectOrArray`\<`string`\>
|
|
277
277
|
|
|
278
278
|
A free-text account of the resource.
|
|
279
279
|
|
|
@@ -289,7 +289,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
|
|
|
289
289
|
|
|
290
290
|
### dcterms:identifier? {#dctermsidentifier}
|
|
291
291
|
|
|
292
|
-
> `optional` **dcterms:identifier
|
|
292
|
+
> `optional` **dcterms:identifier?**: `ObjectOrArray`\<`string`\>
|
|
293
293
|
|
|
294
294
|
A unique identifier of the resource.
|
|
295
295
|
|
|
@@ -305,7 +305,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
|
|
|
305
305
|
|
|
306
306
|
### dcterms:issued? {#dctermsissued}
|
|
307
307
|
|
|
308
|
-
> `optional` **dcterms:issued
|
|
308
|
+
> `optional` **dcterms:issued?**: `string`
|
|
309
309
|
|
|
310
310
|
Date of formal issuance (publication) of the resource.
|
|
311
311
|
|
|
@@ -321,7 +321,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
|
|
|
321
321
|
|
|
322
322
|
### dcterms:modified? {#dctermsmodified}
|
|
323
323
|
|
|
324
|
-
> `optional` **dcterms:modified
|
|
324
|
+
> `optional` **dcterms:modified?**: `string`
|
|
325
325
|
|
|
326
326
|
Most recent date on which the resource was changed, updated or modified.
|
|
327
327
|
|
|
@@ -337,7 +337,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
|
|
|
337
337
|
|
|
338
338
|
### dcterms:language? {#dctermslanguage}
|
|
339
339
|
|
|
340
|
-
> `optional` **dcterms:language
|
|
340
|
+
> `optional` **dcterms:language?**: `ObjectOrArray`\<`string`\>
|
|
341
341
|
|
|
342
342
|
A language of the resource.
|
|
343
343
|
|
|
@@ -353,7 +353,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
|
|
|
353
353
|
|
|
354
354
|
### dcterms:publisher? {#dctermspublisher}
|
|
355
355
|
|
|
356
|
-
> `optional` **dcterms:publisher
|
|
356
|
+
> `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
|
|
357
357
|
|
|
358
358
|
An entity responsible for making the resource available.
|
|
359
359
|
|
|
@@ -369,7 +369,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
|
|
|
369
369
|
|
|
370
370
|
### dcterms:creator? {#dctermscreator}
|
|
371
371
|
|
|
372
|
-
> `optional` **dcterms:creator
|
|
372
|
+
> `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
|
|
373
373
|
|
|
374
374
|
An entity responsible for producing the resource.
|
|
375
375
|
|
|
@@ -385,7 +385,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
|
|
|
385
385
|
|
|
386
386
|
### dcterms:accessRights? {#dctermsaccessrights}
|
|
387
387
|
|
|
388
|
-
> `optional` **dcterms:accessRights
|
|
388
|
+
> `optional` **dcterms:accessRights?**: `string` \| `IJsonLdNodeObject`
|
|
389
389
|
|
|
390
390
|
Information about who can access the resource or an indication of its security status.
|
|
391
391
|
|
|
@@ -401,7 +401,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
|
|
|
401
401
|
|
|
402
402
|
### dcterms:license? {#dctermslicense}
|
|
403
403
|
|
|
404
|
-
> `optional` **dcterms:license
|
|
404
|
+
> `optional` **dcterms:license?**: `string` \| `IJsonLdNodeObject`
|
|
405
405
|
|
|
406
406
|
A legal document under which the resource is made available.
|
|
407
407
|
|
|
@@ -417,7 +417,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
|
|
|
417
417
|
|
|
418
418
|
### dcterms:rights? {#dctermsrights}
|
|
419
419
|
|
|
420
|
-
> `optional` **dcterms:rights
|
|
420
|
+
> `optional` **dcterms:rights?**: `string` \| `IJsonLdNodeObject`
|
|
421
421
|
|
|
422
422
|
Information about rights held in and over the resource.
|
|
423
423
|
|
|
@@ -433,7 +433,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
|
|
|
433
433
|
|
|
434
434
|
### dcterms:conformsTo? {#dctermsconformsto}
|
|
435
435
|
|
|
436
|
-
> `optional` **dcterms:conformsTo
|
|
436
|
+
> `optional` **dcterms:conformsTo?**: `ObjectOrArray`\<`string`\>
|
|
437
437
|
|
|
438
438
|
An established standard to which the resource conforms.
|
|
439
439
|
|
|
@@ -449,7 +449,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
|
|
|
449
449
|
|
|
450
450
|
### dcterms:type? {#dctermstype}
|
|
451
451
|
|
|
452
|
-
> `optional` **dcterms:type
|
|
452
|
+
> `optional` **dcterms:type?**: `string`
|
|
453
453
|
|
|
454
454
|
The nature or genre of the resource.
|
|
455
455
|
|
|
@@ -465,7 +465,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
|
|
|
465
465
|
|
|
466
466
|
### dcat:contactPoint? {#dcatcontactpoint}
|
|
467
467
|
|
|
468
|
-
> `optional` **dcat:contactPoint
|
|
468
|
+
> `optional` **dcat:contactPoint?**: `string` \| `IJsonLdNodeObject`
|
|
469
469
|
|
|
470
470
|
Relevant contact information for the catalogued resource.
|
|
471
471
|
|
|
@@ -481,7 +481,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
|
|
|
481
481
|
|
|
482
482
|
### dcat:keyword? {#dcatkeyword}
|
|
483
483
|
|
|
484
|
-
> `optional` **dcat:keyword
|
|
484
|
+
> `optional` **dcat:keyword?**: `ObjectOrArray`\<`string`\>
|
|
485
485
|
|
|
486
486
|
A keyword or tag describing the resource.
|
|
487
487
|
|
|
@@ -497,7 +497,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
|
|
|
497
497
|
|
|
498
498
|
### dcat:theme? {#dcattheme}
|
|
499
499
|
|
|
500
|
-
> `optional` **dcat:theme
|
|
500
|
+
> `optional` **dcat:theme?**: `ObjectOrArray`\<`string`\>
|
|
501
501
|
|
|
502
502
|
A main category of the resource. A resource can have multiple themes.
|
|
503
503
|
|
|
@@ -513,7 +513,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
|
|
|
513
513
|
|
|
514
514
|
### dcat:landingPage? {#dcatlandingpage}
|
|
515
515
|
|
|
516
|
-
> `optional` **dcat:landingPage
|
|
516
|
+
> `optional` **dcat:landingPage?**: `ObjectOrArray`\<`string`\>
|
|
517
517
|
|
|
518
518
|
A Web page that can be navigated to gain access to the resource.
|
|
519
519
|
|
|
@@ -529,7 +529,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
|
|
|
529
529
|
|
|
530
530
|
### dcat:qualifiedRelation? {#dcatqualifiedrelation}
|
|
531
531
|
|
|
532
|
-
> `optional` **dcat:qualifiedRelation
|
|
532
|
+
> `optional` **dcat:qualifiedRelation?**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
|
|
533
533
|
|
|
534
534
|
Link to a description of a relationship with another resource.
|
|
535
535
|
|
|
@@ -545,7 +545,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
|
|
|
545
545
|
|
|
546
546
|
### odrl:hasPolicy? {#odrlhaspolicy}
|
|
547
547
|
|
|
548
|
-
> `optional` **odrl:hasPolicy
|
|
548
|
+
> `optional` **odrl:hasPolicy?**: `IOdrlPolicy`
|
|
549
549
|
|
|
550
550
|
An ODRL conformant policy expressing the rights associated with the resource.
|
|
551
551
|
|