@twin.org/standards-w3c-dcat 0.0.3-next.3 → 0.0.3-next.30
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/dist/es/dataTypes/dcatDataTypes.js +54 -57
- package/dist/es/dataTypes/dcatDataTypes.js.map +1 -1
- package/dist/es/index.js +10 -9
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IDcatCatalog.js +2 -0
- package/dist/es/models/IDcatCatalog.js.map +1 -0
- package/dist/es/models/IDcatCatalogRecord.js +2 -0
- package/dist/es/models/IDcatCatalogRecord.js.map +1 -0
- package/dist/es/models/IDcatDataService.js +2 -0
- package/dist/es/models/IDcatDataService.js.map +1 -0
- package/dist/es/models/IDcatDataset.js +2 -0
- package/dist/es/models/IDcatDataset.js.map +1 -0
- package/dist/es/models/IDcatDatasetSeries.js +2 -0
- package/dist/es/models/IDcatDatasetSeries.js.map +1 -0
- package/dist/es/models/IDcatDistribution.js +2 -0
- package/dist/es/models/IDcatDistribution.js.map +1 -0
- package/dist/es/models/IDcatRelationship.js +2 -0
- package/dist/es/models/IDcatRelationship.js.map +1 -0
- package/dist/es/models/IDcatResource.js +2 -0
- package/dist/es/models/IDcatResource.js.map +1 -0
- package/dist/es/models/IDcatRole.js +2 -0
- package/dist/es/models/IDcatRole.js.map +1 -0
- package/dist/es/models/dcatClasses.js +9 -9
- package/dist/es/models/dcatClasses.js.map +1 -1
- package/dist/es/models/dcatContextType.js.map +1 -1
- package/dist/es/models/dcatContexts.js +16 -16
- package/dist/es/models/dcatContexts.js.map +1 -1
- package/dist/es/models/types/dcatContextFreeTypes.js +4 -0
- package/dist/es/models/types/dcatContextFreeTypes.js.map +1 -0
- package/dist/es/models/types/dcatPropertyTypes.js.map +1 -1
- package/dist/es/schemas/{Catalog.json → DcatCatalog.json} +37 -28
- package/dist/es/schemas/{CatalogRecord.json → DcatCatalogRecord.json} +16 -7
- package/dist/es/schemas/{DataService.json → DcatDataService.json} +20 -11
- package/dist/es/schemas/{Dataset.json → DcatDataset.json} +27 -18
- package/dist/es/schemas/{DatasetSeries.json → DcatDatasetSeries.json} +25 -16
- package/dist/es/schemas/{Distribution.json → DcatDistribution.json} +18 -9
- package/dist/es/schemas/{Relationship.json → DcatRelationship.json} +11 -3
- package/dist/es/schemas/{Resource.json → DcatResource.json} +24 -15
- package/dist/es/schemas/{Role.json → DcatRole.json} +12 -3
- package/dist/types/index.d.ts +10 -9
- package/dist/types/models/{ICatalog.d.ts → IDcatCatalog.d.ts} +10 -11
- package/dist/types/models/{ICatalogRecord.d.ts → IDcatCatalogRecord.d.ts} +9 -9
- package/dist/types/models/{IDataService.d.ts → IDcatDataService.d.ts} +2 -2
- package/dist/types/models/{IDataset.d.ts → IDcatDataset.d.ts} +9 -9
- package/dist/types/models/{IDatasetSeries.d.ts → IDcatDatasetSeries.d.ts} +2 -2
- package/dist/types/models/{IDistribution.d.ts → IDcatDistribution.d.ts} +10 -10
- package/dist/types/models/{IRelationship.d.ts → IDcatRelationship.d.ts} +3 -3
- package/dist/types/models/{IResource.d.ts → IDcatResource.d.ts} +14 -14
- package/dist/types/models/{IRole.d.ts → IDcatRole.d.ts} +4 -4
- package/dist/types/models/dcatClasses.d.ts +9 -9
- package/dist/types/models/dcatContextType.d.ts +6 -2
- package/dist/types/models/dcatContexts.d.ts +16 -16
- package/dist/types/models/types/dcatContextFreeTypes.d.ts +40 -0
- package/dist/types/models/types/dcatPropertyTypes.d.ts +6 -6
- package/docs/changelog.md +464 -0
- package/docs/reference/index.md +20 -15
- package/docs/reference/interfaces/{ICatalog.md → IDcatCatalog.md} +49 -49
- package/docs/reference/interfaces/{ICatalogRecord.md → IDcatCatalogRecord.md} +7 -7
- package/docs/reference/interfaces/{IDataService.md → IDcatDataService.md} +33 -33
- package/docs/reference/interfaces/{IDataset.md → IDcatDataset.md} +37 -37
- package/docs/reference/interfaces/{IDatasetSeries.md → IDcatDatasetSeries.md} +43 -43
- package/docs/reference/interfaces/{IDistribution.md → IDcatDistribution.md} +6 -6
- package/docs/reference/interfaces/{IRelationship.md → IDcatRelationship.md} +3 -3
- package/docs/reference/interfaces/{IResource.md → IDcatResource.md} +13 -13
- package/docs/reference/interfaces/{IRole.md → IDcatRole.md} +5 -5
- package/docs/reference/type-aliases/CatalogOptionalContext.md +11 -0
- package/docs/reference/type-aliases/CatalogRecordOptionalContext.md +11 -0
- package/docs/reference/type-aliases/DataServiceOptionalContext.md +11 -0
- package/docs/reference/type-aliases/DatasetOptionalContext.md +11 -0
- package/docs/reference/type-aliases/DcatContextType.md +10 -2
- package/docs/reference/type-aliases/{DateTimeType.md → DcatDateTimeType.md} +2 -2
- package/docs/reference/type-aliases/DcatDecimalType.md +5 -0
- package/docs/reference/type-aliases/DcatDurationType.md +5 -0
- package/docs/reference/type-aliases/DcatIriType.md +5 -0
- package/docs/reference/type-aliases/{LiteralType.md → DcatLiteralType.md} +2 -2
- package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +5 -0
- package/docs/reference/type-aliases/DistributionOptionalContext.md +11 -0
- package/docs/reference/variables/DcatClasses.md +9 -9
- package/docs/reference/variables/DcatContexts.md +22 -28
- package/package.json +5 -5
- package/dist/es/models/ICatalog.js +0 -2
- package/dist/es/models/ICatalog.js.map +0 -1
- package/dist/es/models/ICatalogRecord.js +0 -2
- package/dist/es/models/ICatalogRecord.js.map +0 -1
- package/dist/es/models/IDataService.js +0 -2
- package/dist/es/models/IDataService.js.map +0 -1
- package/dist/es/models/IDataset.js +0 -2
- package/dist/es/models/IDataset.js.map +0 -1
- package/dist/es/models/IDatasetSeries.js +0 -2
- package/dist/es/models/IDatasetSeries.js.map +0 -1
- package/dist/es/models/IDistribution.js +0 -2
- package/dist/es/models/IDistribution.js.map +0 -1
- package/dist/es/models/IRelationship.js +0 -2
- package/dist/es/models/IRelationship.js.map +0 -1
- package/dist/es/models/IResource.js +0 -2
- package/dist/es/models/IResource.js.map +0 -1
- package/dist/es/models/IRole.js +0 -2
- package/dist/es/models/IRole.js.map +0 -1
- package/docs/reference/type-aliases/DecimalType.md +0 -5
- package/docs/reference/type-aliases/DurationType.md +0 -5
- package/docs/reference/type-aliases/IriType.md +0 -5
- package/docs/reference/type-aliases/NonNegativeIntegerType.md +0 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
1
|
+
# Interface: IDcatDatasetSeries
|
|
2
2
|
|
|
3
3
|
Interface for DCAT Dataset Series.
|
|
4
4
|
A collection of datasets that are published separately, but share some common
|
|
@@ -10,7 +10,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Dataset_Series
|
|
|
10
10
|
|
|
11
11
|
## Extends
|
|
12
12
|
|
|
13
|
-
- [`
|
|
13
|
+
- [`IDcatDataset`](IDcatDataset.md)
|
|
14
14
|
|
|
15
15
|
## Indexable
|
|
16
16
|
|
|
@@ -20,7 +20,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Dataset_Series
|
|
|
20
20
|
|
|
21
21
|
### dcat:distribution?
|
|
22
22
|
|
|
23
|
-
> `optional` **dcat:distribution**: `ObjectOrArray`\<[`
|
|
23
|
+
> `optional` **dcat:distribution**: `ObjectOrArray`\<[`DistributionOptionalContext`](../type-aliases/DistributionOptionalContext.md)\>
|
|
24
24
|
|
|
25
25
|
An available distribution of the dataset.
|
|
26
26
|
|
|
@@ -30,7 +30,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_distribution
|
|
|
30
30
|
|
|
31
31
|
#### Inherited from
|
|
32
32
|
|
|
33
|
-
[`
|
|
33
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcat:distribution`](IDcatDataset.md#dcatdistribution)
|
|
34
34
|
|
|
35
35
|
***
|
|
36
36
|
|
|
@@ -46,7 +46,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_frequency
|
|
|
46
46
|
|
|
47
47
|
#### Inherited from
|
|
48
48
|
|
|
49
|
-
[`
|
|
49
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:accrualPeriodicity`](IDcatDataset.md#dctermsaccrualperiodicity)
|
|
50
50
|
|
|
51
51
|
***
|
|
52
52
|
|
|
@@ -62,7 +62,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_in_series
|
|
|
62
62
|
|
|
63
63
|
#### Inherited from
|
|
64
64
|
|
|
65
|
-
[`
|
|
65
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcat:inSeries`](IDcatDataset.md#dcatinseries)
|
|
66
66
|
|
|
67
67
|
***
|
|
68
68
|
|
|
@@ -78,7 +78,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial
|
|
|
78
78
|
|
|
79
79
|
#### Inherited from
|
|
80
80
|
|
|
81
|
-
[`
|
|
81
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:spatial`](IDcatDataset.md#dctermsspatial)
|
|
82
82
|
|
|
83
83
|
***
|
|
84
84
|
|
|
@@ -94,13 +94,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial_resolution
|
|
|
94
94
|
|
|
95
95
|
#### Inherited from
|
|
96
96
|
|
|
97
|
-
[`
|
|
97
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcat:spatialResolutionInMeters`](IDcatDataset.md#dcatspatialresolutioninmeters)
|
|
98
98
|
|
|
99
99
|
***
|
|
100
100
|
|
|
101
101
|
### dcterms:temporal?
|
|
102
102
|
|
|
103
|
-
> `optional` **dcterms:temporal**: `
|
|
103
|
+
> `optional` **dcterms:temporal**: `IDublinCorePeriodOfTime`
|
|
104
104
|
|
|
105
105
|
The temporal period that the dataset covers.
|
|
106
106
|
|
|
@@ -110,7 +110,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal
|
|
|
110
110
|
|
|
111
111
|
#### Inherited from
|
|
112
112
|
|
|
113
|
-
[`
|
|
113
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:temporal`](IDcatDataset.md#dctermstemporal)
|
|
114
114
|
|
|
115
115
|
***
|
|
116
116
|
|
|
@@ -126,7 +126,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal_resolution
|
|
|
126
126
|
|
|
127
127
|
#### Inherited from
|
|
128
128
|
|
|
129
|
-
[`
|
|
129
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcat:temporalResolution`](IDcatDataset.md#dcattemporalresolution)
|
|
130
130
|
|
|
131
131
|
***
|
|
132
132
|
|
|
@@ -142,19 +142,19 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_was_generated_by
|
|
|
142
142
|
|
|
143
143
|
#### Inherited from
|
|
144
144
|
|
|
145
|
-
[`
|
|
145
|
+
[`IDcatDataset`](IDcatDataset.md).[`prov:wasGeneratedBy`](IDcatDataset.md#provwasgeneratedby)
|
|
146
146
|
|
|
147
147
|
***
|
|
148
148
|
|
|
149
149
|
### @type
|
|
150
150
|
|
|
151
|
-
> **@type**: `"DatasetSeries"`
|
|
151
|
+
> **@type**: `"dcat:DatasetSeries"`
|
|
152
152
|
|
|
153
153
|
The type identifier, typically "DatasetSeries".
|
|
154
154
|
|
|
155
155
|
#### Overrides
|
|
156
156
|
|
|
157
|
-
[`
|
|
157
|
+
[`IDcatDataset`](IDcatDataset.md).[`@type`](IDcatDataset.md#type)
|
|
158
158
|
|
|
159
159
|
***
|
|
160
160
|
|
|
@@ -194,21 +194,21 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_series_member
|
|
|
194
194
|
|
|
195
195
|
***
|
|
196
196
|
|
|
197
|
-
### @context
|
|
197
|
+
### @context
|
|
198
198
|
|
|
199
|
-
>
|
|
199
|
+
> **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
|
|
200
200
|
|
|
201
201
|
The JSON-LD context for the resource.
|
|
202
202
|
|
|
203
203
|
#### Inherited from
|
|
204
204
|
|
|
205
|
-
[`
|
|
205
|
+
[`IDcatDataset`](IDcatDataset.md).[`@context`](IDcatDataset.md#context)
|
|
206
206
|
|
|
207
207
|
***
|
|
208
208
|
|
|
209
209
|
### dcterms:title?
|
|
210
210
|
|
|
211
|
-
> `optional` **dcterms:title**: [`
|
|
211
|
+
> `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
212
212
|
|
|
213
213
|
A name given to the resource.
|
|
214
214
|
|
|
@@ -218,13 +218,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
|
|
|
218
218
|
|
|
219
219
|
#### Inherited from
|
|
220
220
|
|
|
221
|
-
[`
|
|
221
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:title`](IDcatDataset.md#dctermstitle)
|
|
222
222
|
|
|
223
223
|
***
|
|
224
224
|
|
|
225
225
|
### dcterms:description?
|
|
226
226
|
|
|
227
|
-
> `optional` **dcterms:description**: [`
|
|
227
|
+
> `optional` **dcterms:description**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
228
228
|
|
|
229
229
|
A free-text account of the resource.
|
|
230
230
|
|
|
@@ -234,13 +234,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
|
|
|
234
234
|
|
|
235
235
|
#### Inherited from
|
|
236
236
|
|
|
237
|
-
[`
|
|
237
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:description`](IDcatDataset.md#dctermsdescription)
|
|
238
238
|
|
|
239
239
|
***
|
|
240
240
|
|
|
241
241
|
### dcterms:identifier?
|
|
242
242
|
|
|
243
|
-
> `optional` **dcterms:identifier**: [`
|
|
243
|
+
> `optional` **dcterms:identifier**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
244
244
|
|
|
245
245
|
A unique identifier of the resource.
|
|
246
246
|
|
|
@@ -250,7 +250,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
|
|
|
250
250
|
|
|
251
251
|
#### Inherited from
|
|
252
252
|
|
|
253
|
-
[`
|
|
253
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:identifier`](IDcatDataset.md#dctermsidentifier)
|
|
254
254
|
|
|
255
255
|
***
|
|
256
256
|
|
|
@@ -266,7 +266,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
|
|
|
266
266
|
|
|
267
267
|
#### Inherited from
|
|
268
268
|
|
|
269
|
-
[`
|
|
269
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:issued`](IDcatDataset.md#dctermsissued)
|
|
270
270
|
|
|
271
271
|
***
|
|
272
272
|
|
|
@@ -282,7 +282,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
|
|
|
282
282
|
|
|
283
283
|
#### Inherited from
|
|
284
284
|
|
|
285
|
-
[`
|
|
285
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:modified`](IDcatDataset.md#dctermsmodified)
|
|
286
286
|
|
|
287
287
|
***
|
|
288
288
|
|
|
@@ -298,13 +298,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
|
|
|
298
298
|
|
|
299
299
|
#### Inherited from
|
|
300
300
|
|
|
301
|
-
[`
|
|
301
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:language`](IDcatDataset.md#dctermslanguage)
|
|
302
302
|
|
|
303
303
|
***
|
|
304
304
|
|
|
305
305
|
### dcterms:publisher?
|
|
306
306
|
|
|
307
|
-
> `optional` **dcterms:publisher**: `string` \| `
|
|
307
|
+
> `optional` **dcterms:publisher**: `string` \| `IFoafAgent`
|
|
308
308
|
|
|
309
309
|
An entity responsible for making the resource available.
|
|
310
310
|
|
|
@@ -314,13 +314,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
|
|
|
314
314
|
|
|
315
315
|
#### Inherited from
|
|
316
316
|
|
|
317
|
-
[`
|
|
317
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:publisher`](IDcatDataset.md#dctermspublisher)
|
|
318
318
|
|
|
319
319
|
***
|
|
320
320
|
|
|
321
321
|
### dcterms:creator?
|
|
322
322
|
|
|
323
|
-
> `optional` **dcterms:creator**: `
|
|
323
|
+
> `optional` **dcterms:creator**: `IFoafAgent`
|
|
324
324
|
|
|
325
325
|
An entity responsible for producing the resource.
|
|
326
326
|
|
|
@@ -330,7 +330,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
|
|
|
330
330
|
|
|
331
331
|
#### Inherited from
|
|
332
332
|
|
|
333
|
-
[`
|
|
333
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:creator`](IDcatDataset.md#dctermscreator)
|
|
334
334
|
|
|
335
335
|
***
|
|
336
336
|
|
|
@@ -346,7 +346,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
|
|
|
346
346
|
|
|
347
347
|
#### Inherited from
|
|
348
348
|
|
|
349
|
-
[`
|
|
349
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:accessRights`](IDcatDataset.md#dctermsaccessrights)
|
|
350
350
|
|
|
351
351
|
***
|
|
352
352
|
|
|
@@ -362,7 +362,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
|
|
|
362
362
|
|
|
363
363
|
#### Inherited from
|
|
364
364
|
|
|
365
|
-
[`
|
|
365
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:license`](IDcatDataset.md#dctermslicense)
|
|
366
366
|
|
|
367
367
|
***
|
|
368
368
|
|
|
@@ -378,7 +378,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
|
|
|
378
378
|
|
|
379
379
|
#### Inherited from
|
|
380
380
|
|
|
381
|
-
[`
|
|
381
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:rights`](IDcatDataset.md#dctermsrights)
|
|
382
382
|
|
|
383
383
|
***
|
|
384
384
|
|
|
@@ -394,7 +394,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
|
|
|
394
394
|
|
|
395
395
|
#### Inherited from
|
|
396
396
|
|
|
397
|
-
[`
|
|
397
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:conformsTo`](IDcatDataset.md#dctermsconformsto)
|
|
398
398
|
|
|
399
399
|
***
|
|
400
400
|
|
|
@@ -410,7 +410,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
|
|
|
410
410
|
|
|
411
411
|
#### Inherited from
|
|
412
412
|
|
|
413
|
-
[`
|
|
413
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcterms:type`](IDcatDataset.md#dctermstype)
|
|
414
414
|
|
|
415
415
|
***
|
|
416
416
|
|
|
@@ -426,13 +426,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
|
|
|
426
426
|
|
|
427
427
|
#### Inherited from
|
|
428
428
|
|
|
429
|
-
[`
|
|
429
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcat:contactPoint`](IDcatDataset.md#dcatcontactpoint)
|
|
430
430
|
|
|
431
431
|
***
|
|
432
432
|
|
|
433
433
|
### dcat:keyword?
|
|
434
434
|
|
|
435
|
-
> `optional` **dcat:keyword**: [`
|
|
435
|
+
> `optional` **dcat:keyword**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
436
436
|
|
|
437
437
|
A keyword or tag describing the resource.
|
|
438
438
|
|
|
@@ -442,7 +442,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
|
|
|
442
442
|
|
|
443
443
|
#### Inherited from
|
|
444
444
|
|
|
445
|
-
[`
|
|
445
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcat:keyword`](IDcatDataset.md#dcatkeyword)
|
|
446
446
|
|
|
447
447
|
***
|
|
448
448
|
|
|
@@ -458,7 +458,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
|
|
|
458
458
|
|
|
459
459
|
#### Inherited from
|
|
460
460
|
|
|
461
|
-
[`
|
|
461
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcat:theme`](IDcatDataset.md#dcattheme)
|
|
462
462
|
|
|
463
463
|
***
|
|
464
464
|
|
|
@@ -474,13 +474,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
|
|
|
474
474
|
|
|
475
475
|
#### Inherited from
|
|
476
476
|
|
|
477
|
-
[`
|
|
477
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcat:landingPage`](IDcatDataset.md#dcatlandingpage)
|
|
478
478
|
|
|
479
479
|
***
|
|
480
480
|
|
|
481
481
|
### dcat:qualifiedRelation?
|
|
482
482
|
|
|
483
|
-
> `optional` **dcat:qualifiedRelation**: `string` \| [`
|
|
483
|
+
> `optional` **dcat:qualifiedRelation**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
|
|
484
484
|
|
|
485
485
|
Link to a description of a relationship with another resource.
|
|
486
486
|
|
|
@@ -490,7 +490,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
|
|
|
490
490
|
|
|
491
491
|
#### Inherited from
|
|
492
492
|
|
|
493
|
-
[`
|
|
493
|
+
[`IDcatDataset`](IDcatDataset.md).[`dcat:qualifiedRelation`](IDcatDataset.md#dcatqualifiedrelation)
|
|
494
494
|
|
|
495
495
|
***
|
|
496
496
|
|
|
@@ -506,4 +506,4 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_has_policy
|
|
|
506
506
|
|
|
507
507
|
#### Inherited from
|
|
508
508
|
|
|
509
|
-
[`
|
|
509
|
+
[`IDcatDataset`](IDcatDataset.md).[`odrl:hasPolicy`](IDcatDataset.md#odrlhaspolicy)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
1
|
+
# Interface: IDcatDistribution
|
|
2
2
|
|
|
3
3
|
Interface for DCAT Distribution.
|
|
4
4
|
A specific representation of a dataset. A dataset might be available in multiple
|
|
@@ -18,9 +18,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Distribution
|
|
|
18
18
|
|
|
19
19
|
## Properties
|
|
20
20
|
|
|
21
|
-
### @context
|
|
21
|
+
### @context
|
|
22
22
|
|
|
23
|
-
>
|
|
23
|
+
> **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
|
|
24
24
|
|
|
25
25
|
The JSON-LD context for the resource.
|
|
26
26
|
|
|
@@ -32,7 +32,7 @@ The JSON-LD context for the resource.
|
|
|
32
32
|
|
|
33
33
|
### @type
|
|
34
34
|
|
|
35
|
-
> **@type**: `"Distribution"`
|
|
35
|
+
> **@type**: `"dcat:Distribution"`
|
|
36
36
|
|
|
37
37
|
The type identifier, typically "Distribution".
|
|
38
38
|
|
|
@@ -44,7 +44,7 @@ The type identifier, typically "Distribution".
|
|
|
44
44
|
|
|
45
45
|
### dcterms:title?
|
|
46
46
|
|
|
47
|
-
> `optional` **dcterms:title**: [`
|
|
47
|
+
> `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
48
48
|
|
|
49
49
|
A name given to the distribution.
|
|
50
50
|
|
|
@@ -56,7 +56,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_title
|
|
|
56
56
|
|
|
57
57
|
### dcterms:description?
|
|
58
58
|
|
|
59
|
-
> `optional` **dcterms:description**: [`
|
|
59
|
+
> `optional` **dcterms:description**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
60
60
|
|
|
61
61
|
A free-text account of the distribution.
|
|
62
62
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
1
|
+
# Interface: IDcatRelationship
|
|
2
2
|
|
|
3
3
|
Interface for DCAT Relationship.
|
|
4
4
|
An association class for attaching additional information to a relationship
|
|
@@ -32,7 +32,7 @@ The JSON-LD context for the resource.
|
|
|
32
32
|
|
|
33
33
|
### @type
|
|
34
34
|
|
|
35
|
-
> **@type**: `"Relationship"`
|
|
35
|
+
> **@type**: `"dcat:Relationship"`
|
|
36
36
|
|
|
37
37
|
The type identifier, typically "Relationship".
|
|
38
38
|
|
|
@@ -56,7 +56,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:relationship_relation
|
|
|
56
56
|
|
|
57
57
|
### dcat:hadRole?
|
|
58
58
|
|
|
59
|
-
> `optional` **dcat:hadRole**: [`
|
|
59
|
+
> `optional` **dcat:hadRole**: [`IDcatRole`](IDcatRole.md)
|
|
60
60
|
|
|
61
61
|
The function of an entity or agent with respect to another resource.
|
|
62
62
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
1
|
+
# Interface: IDcatResource
|
|
2
2
|
|
|
3
3
|
Base interface for DCAT catalogued resources.
|
|
4
4
|
This is the parent class of dcat:Dataset, dcat:DataService, and dcat:Catalog.
|
|
@@ -13,8 +13,8 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Resource
|
|
|
13
13
|
|
|
14
14
|
## Extended by
|
|
15
15
|
|
|
16
|
-
- [`
|
|
17
|
-
- [`
|
|
16
|
+
- [`IDcatDataService`](IDcatDataService.md)
|
|
17
|
+
- [`IDcatDataset`](IDcatDataset.md)
|
|
18
18
|
|
|
19
19
|
## Indexable
|
|
20
20
|
|
|
@@ -22,9 +22,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Resource
|
|
|
22
22
|
|
|
23
23
|
## Properties
|
|
24
24
|
|
|
25
|
-
### @context
|
|
25
|
+
### @context
|
|
26
26
|
|
|
27
|
-
>
|
|
27
|
+
> **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
|
|
28
28
|
|
|
29
29
|
The JSON-LD context for the resource.
|
|
30
30
|
|
|
@@ -36,7 +36,7 @@ The JSON-LD context for the resource.
|
|
|
36
36
|
|
|
37
37
|
### @type
|
|
38
38
|
|
|
39
|
-
> **@type**: `"Catalog"` \| `"Resource"` \| `"Dataset"` \| `"DataService"` \| `"DatasetSeries"`
|
|
39
|
+
> **@type**: `"dcat:Catalog"` \| `"dcat:Resource"` \| `"dcat:Dataset"` \| `"dcat:DataService"` \| `"dcat:DatasetSeries"`
|
|
40
40
|
|
|
41
41
|
The type of the resource.
|
|
42
42
|
Typically "Catalog", "Dataset", "DataService", "DatasetSeries", or the base "Resource".
|
|
@@ -49,7 +49,7 @@ Typically "Catalog", "Dataset", "DataService", "DatasetSeries", or the base "Res
|
|
|
49
49
|
|
|
50
50
|
### dcterms:title?
|
|
51
51
|
|
|
52
|
-
> `optional` **dcterms:title**: [`
|
|
52
|
+
> `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
53
53
|
|
|
54
54
|
A name given to the resource.
|
|
55
55
|
|
|
@@ -61,7 +61,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
|
|
|
61
61
|
|
|
62
62
|
### dcterms:description?
|
|
63
63
|
|
|
64
|
-
> `optional` **dcterms:description**: [`
|
|
64
|
+
> `optional` **dcterms:description**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
65
65
|
|
|
66
66
|
A free-text account of the resource.
|
|
67
67
|
|
|
@@ -73,7 +73,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
|
|
|
73
73
|
|
|
74
74
|
### dcterms:identifier?
|
|
75
75
|
|
|
76
|
-
> `optional` **dcterms:identifier**: [`
|
|
76
|
+
> `optional` **dcterms:identifier**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
77
77
|
|
|
78
78
|
A unique identifier of the resource.
|
|
79
79
|
|
|
@@ -121,7 +121,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
|
|
|
121
121
|
|
|
122
122
|
### dcterms:publisher?
|
|
123
123
|
|
|
124
|
-
> `optional` **dcterms:publisher**: `string` \| `
|
|
124
|
+
> `optional` **dcterms:publisher**: `string` \| `IFoafAgent`
|
|
125
125
|
|
|
126
126
|
An entity responsible for making the resource available.
|
|
127
127
|
|
|
@@ -133,7 +133,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
|
|
|
133
133
|
|
|
134
134
|
### dcterms:creator?
|
|
135
135
|
|
|
136
|
-
> `optional` **dcterms:creator**: `
|
|
136
|
+
> `optional` **dcterms:creator**: `IFoafAgent`
|
|
137
137
|
|
|
138
138
|
An entity responsible for producing the resource.
|
|
139
139
|
|
|
@@ -217,7 +217,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
|
|
|
217
217
|
|
|
218
218
|
### dcat:keyword?
|
|
219
219
|
|
|
220
|
-
> `optional` **dcat:keyword**: [`
|
|
220
|
+
> `optional` **dcat:keyword**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
221
221
|
|
|
222
222
|
A keyword or tag describing the resource.
|
|
223
223
|
|
|
@@ -253,7 +253,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
|
|
|
253
253
|
|
|
254
254
|
### dcat:qualifiedRelation?
|
|
255
255
|
|
|
256
|
-
> `optional` **dcat:qualifiedRelation**: `string` \| [`
|
|
256
|
+
> `optional` **dcat:qualifiedRelation**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
|
|
257
257
|
|
|
258
258
|
Link to a description of a relationship with another resource.
|
|
259
259
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
1
|
+
# Interface: IDcatRole
|
|
2
2
|
|
|
3
3
|
Interface for DCAT Role.
|
|
4
4
|
A role is the function of a resource or agent with respect to another resource,
|
|
@@ -18,9 +18,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Role
|
|
|
18
18
|
|
|
19
19
|
## Properties
|
|
20
20
|
|
|
21
|
-
### @context
|
|
21
|
+
### @context
|
|
22
22
|
|
|
23
|
-
>
|
|
23
|
+
> **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
|
|
24
24
|
|
|
25
25
|
The JSON-LD context for the resource.
|
|
26
26
|
|
|
@@ -32,7 +32,7 @@ The JSON-LD context for the resource.
|
|
|
32
32
|
|
|
33
33
|
### @type
|
|
34
34
|
|
|
35
|
-
> **@type**: `"Role"`
|
|
35
|
+
> **@type**: `"dcat:Role"`
|
|
36
36
|
|
|
37
37
|
The type identifier, typically "Role".
|
|
38
38
|
|
|
@@ -44,7 +44,7 @@ The type identifier, typically "Role".
|
|
|
44
44
|
|
|
45
45
|
### dcterms:title?
|
|
46
46
|
|
|
47
|
-
> `optional` **dcterms:title**: [`
|
|
47
|
+
> `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
|
|
48
48
|
|
|
49
49
|
A name given to the distribution.
|
|
50
50
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Type Alias: CatalogOptionalContext
|
|
2
|
+
|
|
3
|
+
> **CatalogOptionalContext** = `Omit`\<[`IDcatCatalog`](../interfaces/IDcatCatalog.md), `"@context"`\> & `object`
|
|
4
|
+
|
|
5
|
+
Catalog omitting LD Context
|
|
6
|
+
|
|
7
|
+
## Type Declaration
|
|
8
|
+
|
|
9
|
+
### @context?
|
|
10
|
+
|
|
11
|
+
> `optional` **@context**: [`DcatContextType`](DcatContextType.md)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Type Alias: CatalogRecordOptionalContext
|
|
2
|
+
|
|
3
|
+
> **CatalogRecordOptionalContext** = `Omit`\<[`IDcatCatalogRecord`](../interfaces/IDcatCatalogRecord.md), `"@context"`\> & `object`
|
|
4
|
+
|
|
5
|
+
Record omitting LD Context
|
|
6
|
+
|
|
7
|
+
## Type Declaration
|
|
8
|
+
|
|
9
|
+
### @context?
|
|
10
|
+
|
|
11
|
+
> `optional` **@context**: [`DcatContextType`](DcatContextType.md)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Type Alias: DataServiceOptionalContext
|
|
2
|
+
|
|
3
|
+
> **DataServiceOptionalContext** = `Omit`\<[`IDcatDataService`](../interfaces/IDcatDataService.md), `"@context"`\> & `object`
|
|
4
|
+
|
|
5
|
+
DataService omitting LD Context
|
|
6
|
+
|
|
7
|
+
## Type Declaration
|
|
8
|
+
|
|
9
|
+
### @context?
|
|
10
|
+
|
|
11
|
+
> `optional` **@context**: [`DcatContextType`](DcatContextType.md)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Type Alias: DatasetOptionalContext
|
|
2
|
+
|
|
3
|
+
> **DatasetOptionalContext** = `Omit`\<[`IDcatDataset`](../interfaces/IDcatDataset.md), `"@context"`\> & `object`
|
|
4
|
+
|
|
5
|
+
Dataset omitting LD Context
|
|
6
|
+
|
|
7
|
+
## Type Declaration
|
|
8
|
+
|
|
9
|
+
### @context?
|
|
10
|
+
|
|
11
|
+
> `optional` **@context**: [`DcatContextType`](DcatContextType.md)
|
|
@@ -9,8 +9,16 @@ Supports the DCAT context URL or arrays with additional context definitions.
|
|
|
9
9
|
|
|
10
10
|
### dcat
|
|
11
11
|
|
|
12
|
-
> **dcat**: *typeof* [`
|
|
12
|
+
> **dcat**: *typeof* [`Namespace`](../variables/DcatContexts.md#namespace)
|
|
13
13
|
|
|
14
14
|
### dcterms
|
|
15
15
|
|
|
16
|
-
> **dcterms**: *typeof* `DublinCoreContexts.
|
|
16
|
+
> **dcterms**: *typeof* `DublinCoreContexts.NamespaceTerms`
|
|
17
|
+
|
|
18
|
+
### odrl?
|
|
19
|
+
|
|
20
|
+
> `optional` **odrl**: *typeof* `OdrlContexts.Namespace`
|
|
21
|
+
|
|
22
|
+
### foaf?
|
|
23
|
+
|
|
24
|
+
> `optional` **foaf**: *typeof* `FoafContexts.Namespace`
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Type Alias: DistributionOptionalContext
|
|
2
|
+
|
|
3
|
+
> **DistributionOptionalContext** = `Omit`\<[`IDcatDistribution`](../interfaces/IDcatDistribution.md), `"@context"`\> & `object`
|
|
4
|
+
|
|
5
|
+
Distribution omitting LD Context
|
|
6
|
+
|
|
7
|
+
## Type Declaration
|
|
8
|
+
|
|
9
|
+
### @context?
|
|
10
|
+
|
|
11
|
+
> `optional` **@context**: [`DcatContextType`](DcatContextType.md)
|