@twin.org/standards-w3c-dcat 0.0.3-next.3
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/LICENSE +201 -0
- package/README.md +21 -0
- package/dist/es/dataTypes/dcatDataTypes.js +77 -0
- package/dist/es/dataTypes/dcatDataTypes.js.map +1 -0
- package/dist/es/index.js +18 -0
- package/dist/es/index.js.map +1 -0
- package/dist/es/models/ICatalog.js +2 -0
- package/dist/es/models/ICatalog.js.map +1 -0
- package/dist/es/models/ICatalogRecord.js +2 -0
- package/dist/es/models/ICatalogRecord.js.map +1 -0
- package/dist/es/models/IDataService.js +2 -0
- package/dist/es/models/IDataService.js.map +1 -0
- package/dist/es/models/IDataset.js +2 -0
- package/dist/es/models/IDataset.js.map +1 -0
- package/dist/es/models/IDatasetSeries.js +2 -0
- package/dist/es/models/IDatasetSeries.js.map +1 -0
- package/dist/es/models/IDistribution.js +2 -0
- package/dist/es/models/IDistribution.js.map +1 -0
- package/dist/es/models/IRelationship.js +2 -0
- package/dist/es/models/IRelationship.js.map +1 -0
- package/dist/es/models/IResource.js +2 -0
- package/dist/es/models/IResource.js.map +1 -0
- package/dist/es/models/IRole.js +2 -0
- package/dist/es/models/IRole.js.map +1 -0
- package/dist/es/models/dcatClasses.js +56 -0
- package/dist/es/models/dcatClasses.js.map +1 -0
- package/dist/es/models/dcatContextType.js +2 -0
- package/dist/es/models/dcatContextType.js.map +1 -0
- package/dist/es/models/dcatContexts.js +38 -0
- package/dist/es/models/dcatContexts.js.map +1 -0
- package/dist/es/models/dcatRelationshipTypes.js +57 -0
- package/dist/es/models/dcatRelationshipTypes.js.map +1 -0
- package/dist/es/models/types/dcatPropertyTypes.js +4 -0
- package/dist/es/models/types/dcatPropertyTypes.js.map +1 -0
- package/dist/es/schemas/Catalog.json +491 -0
- package/dist/es/schemas/CatalogRecord.json +212 -0
- package/dist/es/schemas/DataService.json +358 -0
- package/dist/es/schemas/Dataset.json +407 -0
- package/dist/es/schemas/DatasetSeries.json +425 -0
- package/dist/es/schemas/Distribution.json +268 -0
- package/dist/es/schemas/Relationship.json +187 -0
- package/dist/es/schemas/Resource.json +342 -0
- package/dist/es/schemas/Role.json +182 -0
- package/dist/types/dataTypes/dcatDataTypes.d.ts +14 -0
- package/dist/types/index.d.ts +15 -0
- package/dist/types/models/ICatalog.d.ts +53 -0
- package/dist/types/models/ICatalogRecord.d.ts +52 -0
- package/dist/types/models/IDataService.d.ts +31 -0
- package/dist/types/models/IDataset.d.ts +60 -0
- package/dist/types/models/IDatasetSeries.d.ts +30 -0
- package/dist/types/models/IDistribution.d.ts +122 -0
- package/dist/types/models/IRelationship.d.ts +30 -0
- package/dist/types/models/IResource.d.ts +119 -0
- package/dist/types/models/IRole.d.ts +25 -0
- package/dist/types/models/dcatClasses.d.ts +56 -0
- package/dist/types/models/dcatContextType.d.ts +11 -0
- package/dist/types/models/dcatContexts.d.ts +38 -0
- package/dist/types/models/dcatRelationshipTypes.d.ts +57 -0
- package/dist/types/models/types/dcatPropertyTypes.d.ts +29 -0
- package/docs/changelog.md +22 -0
- package/docs/examples.md +1 -0
- package/docs/reference/classes/DcatDataTypes.md +38 -0
- package/docs/reference/index.md +36 -0
- package/docs/reference/interfaces/ICatalog.md +557 -0
- package/docs/reference/interfaces/ICatalogRecord.md +113 -0
- package/docs/reference/interfaces/IDataService.md +382 -0
- package/docs/reference/interfaces/IDataset.md +447 -0
- package/docs/reference/interfaces/IDatasetSeries.md +509 -0
- package/docs/reference/interfaces/IDistribution.md +281 -0
- package/docs/reference/interfaces/IRelationship.md +65 -0
- package/docs/reference/interfaces/IResource.md +274 -0
- package/docs/reference/interfaces/IRole.md +53 -0
- package/docs/reference/type-aliases/DateTimeType.md +6 -0
- package/docs/reference/type-aliases/DcatClasses.md +5 -0
- package/docs/reference/type-aliases/DcatContextType.md +16 -0
- package/docs/reference/type-aliases/DcatContexts.md +5 -0
- package/docs/reference/type-aliases/DcatRelationshipType.md +5 -0
- package/docs/reference/type-aliases/DecimalType.md +5 -0
- package/docs/reference/type-aliases/DurationType.md +5 -0
- package/docs/reference/type-aliases/IriType.md +5 -0
- package/docs/reference/type-aliases/LiteralType.md +5 -0
- package/docs/reference/type-aliases/NonNegativeIntegerType.md +5 -0
- package/docs/reference/variables/DcatClasses.md +102 -0
- package/docs/reference/variables/DcatContexts.md +63 -0
- package/docs/reference/variables/DcatRelationshipType.md +103 -0
- package/locales/en.json +1 -0
- package/package.json +57 -0
|
@@ -0,0 +1,557 @@
|
|
|
1
|
+
# Interface: ICatalog
|
|
2
|
+
|
|
3
|
+
Interface for DCAT Catalog.
|
|
4
|
+
A curated collection of metadata about resources (datasets and data services).
|
|
5
|
+
Note: dcat:Catalog is a sub-class of dcat:Dataset per the W3C spec.
|
|
6
|
+
|
|
7
|
+
## See
|
|
8
|
+
|
|
9
|
+
https://www.w3.org/TR/vocab-dcat-3/#Class:Catalog
|
|
10
|
+
|
|
11
|
+
## Extends
|
|
12
|
+
|
|
13
|
+
- [`IDataset`](IDataset.md)
|
|
14
|
+
|
|
15
|
+
## Indexable
|
|
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`
|
|
18
|
+
|
|
19
|
+
## Properties
|
|
20
|
+
|
|
21
|
+
### @type
|
|
22
|
+
|
|
23
|
+
> **@type**: `"Catalog"`
|
|
24
|
+
|
|
25
|
+
The type identifier, typically "Catalog".
|
|
26
|
+
|
|
27
|
+
#### Overrides
|
|
28
|
+
|
|
29
|
+
[`IDataset`](IDataset.md).[`@type`](IDataset.md#type)
|
|
30
|
+
|
|
31
|
+
***
|
|
32
|
+
|
|
33
|
+
### foaf:homepage?
|
|
34
|
+
|
|
35
|
+
> `optional` **foaf:homepage**: `string`
|
|
36
|
+
|
|
37
|
+
A homepage of the catalog (a public Web document usually available in HTML).
|
|
38
|
+
|
|
39
|
+
#### See
|
|
40
|
+
|
|
41
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_homepage
|
|
42
|
+
|
|
43
|
+
***
|
|
44
|
+
|
|
45
|
+
### dcat:themeTaxonomy?
|
|
46
|
+
|
|
47
|
+
> `optional` **dcat:themeTaxonomy**: `ObjectOrArray`\<[`IResource`](IResource.md)\>
|
|
48
|
+
|
|
49
|
+
A knowledge organization system (KOS) used to classify the resources in the catalog.
|
|
50
|
+
|
|
51
|
+
#### See
|
|
52
|
+
|
|
53
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_themes
|
|
54
|
+
|
|
55
|
+
***
|
|
56
|
+
|
|
57
|
+
### dcat:resource?
|
|
58
|
+
|
|
59
|
+
> `optional` **dcat:resource**: `ObjectOrArray`\<[`IResource`](IResource.md)\>
|
|
60
|
+
|
|
61
|
+
A resource that is listed in the catalog.
|
|
62
|
+
|
|
63
|
+
#### See
|
|
64
|
+
|
|
65
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_resource
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
### dcat:dataset?
|
|
70
|
+
|
|
71
|
+
> `optional` **dcat:dataset**: `ObjectOrArray`\<[`IDataset`](IDataset.md)\>
|
|
72
|
+
|
|
73
|
+
A dataset that is listed in the catalog.
|
|
74
|
+
|
|
75
|
+
#### See
|
|
76
|
+
|
|
77
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_dataset
|
|
78
|
+
|
|
79
|
+
***
|
|
80
|
+
|
|
81
|
+
### dcat:service?
|
|
82
|
+
|
|
83
|
+
> `optional` **dcat:service**: `ObjectOrArray`\<[`IDataService`](IDataService.md)\>
|
|
84
|
+
|
|
85
|
+
A data service that is listed in the catalog.
|
|
86
|
+
|
|
87
|
+
#### See
|
|
88
|
+
|
|
89
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_service
|
|
90
|
+
|
|
91
|
+
***
|
|
92
|
+
|
|
93
|
+
### dcat:catalog?
|
|
94
|
+
|
|
95
|
+
> `optional` **dcat:catalog**: `ObjectOrArray`\<`ICatalog`\>
|
|
96
|
+
|
|
97
|
+
A catalog that is listed in the catalog.
|
|
98
|
+
|
|
99
|
+
#### See
|
|
100
|
+
|
|
101
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_catalog
|
|
102
|
+
|
|
103
|
+
***
|
|
104
|
+
|
|
105
|
+
### dcat:record?
|
|
106
|
+
|
|
107
|
+
> `optional` **dcat:record**: `ObjectOrArray`\<[`ICatalogRecord`](ICatalogRecord.md)\>
|
|
108
|
+
|
|
109
|
+
A record describing the registration of a single resource in the catalog.
|
|
110
|
+
|
|
111
|
+
#### See
|
|
112
|
+
|
|
113
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_catalog_record
|
|
114
|
+
|
|
115
|
+
***
|
|
116
|
+
|
|
117
|
+
### dcat:distribution?
|
|
118
|
+
|
|
119
|
+
> `optional` **dcat:distribution**: `ObjectOrArray`\<[`IDistribution`](IDistribution.md)\>
|
|
120
|
+
|
|
121
|
+
An available distribution of the dataset.
|
|
122
|
+
|
|
123
|
+
#### See
|
|
124
|
+
|
|
125
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_distribution
|
|
126
|
+
|
|
127
|
+
#### Inherited from
|
|
128
|
+
|
|
129
|
+
[`IDataset`](IDataset.md).[`dcat:distribution`](IDataset.md#dcatdistribution)
|
|
130
|
+
|
|
131
|
+
***
|
|
132
|
+
|
|
133
|
+
### dcterms:accrualPeriodicity?
|
|
134
|
+
|
|
135
|
+
> `optional` **dcterms:accrualPeriodicity**: `string`
|
|
136
|
+
|
|
137
|
+
The frequency at which the dataset is published.
|
|
138
|
+
|
|
139
|
+
#### See
|
|
140
|
+
|
|
141
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_frequency
|
|
142
|
+
|
|
143
|
+
#### Inherited from
|
|
144
|
+
|
|
145
|
+
[`IDataset`](IDataset.md).[`dcterms:accrualPeriodicity`](IDataset.md#dctermsaccrualperiodicity)
|
|
146
|
+
|
|
147
|
+
***
|
|
148
|
+
|
|
149
|
+
### dcat:inSeries?
|
|
150
|
+
|
|
151
|
+
> `optional` **dcat:inSeries**: `string`
|
|
152
|
+
|
|
153
|
+
A dataset series of which the dataset is part.
|
|
154
|
+
|
|
155
|
+
#### See
|
|
156
|
+
|
|
157
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_in_series
|
|
158
|
+
|
|
159
|
+
#### Inherited from
|
|
160
|
+
|
|
161
|
+
[`IDataset`](IDataset.md).[`dcat:inSeries`](IDataset.md#dcatinseries)
|
|
162
|
+
|
|
163
|
+
***
|
|
164
|
+
|
|
165
|
+
### dcterms:spatial?
|
|
166
|
+
|
|
167
|
+
> `optional` **dcterms:spatial**: `IJsonLdNodeObject` \| `ObjectOrArray`\<`string`\>
|
|
168
|
+
|
|
169
|
+
The geographical area covered by the dataset.
|
|
170
|
+
|
|
171
|
+
#### See
|
|
172
|
+
|
|
173
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial
|
|
174
|
+
|
|
175
|
+
#### Inherited from
|
|
176
|
+
|
|
177
|
+
[`IDataset`](IDataset.md).[`dcterms:spatial`](IDataset.md#dctermsspatial)
|
|
178
|
+
|
|
179
|
+
***
|
|
180
|
+
|
|
181
|
+
### dcat:spatialResolutionInMeters?
|
|
182
|
+
|
|
183
|
+
> `optional` **dcat:spatialResolutionInMeters**: `number`
|
|
184
|
+
|
|
185
|
+
Minimum spatial separation resolvable in a dataset, measured in meters.
|
|
186
|
+
|
|
187
|
+
#### See
|
|
188
|
+
|
|
189
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial_resolution
|
|
190
|
+
|
|
191
|
+
#### Inherited from
|
|
192
|
+
|
|
193
|
+
[`IDataset`](IDataset.md).[`dcat:spatialResolutionInMeters`](IDataset.md#dcatspatialresolutioninmeters)
|
|
194
|
+
|
|
195
|
+
***
|
|
196
|
+
|
|
197
|
+
### dcterms:temporal?
|
|
198
|
+
|
|
199
|
+
> `optional` **dcterms:temporal**: `IPeriodOfTime`
|
|
200
|
+
|
|
201
|
+
The temporal period that the dataset covers.
|
|
202
|
+
|
|
203
|
+
#### See
|
|
204
|
+
|
|
205
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal
|
|
206
|
+
|
|
207
|
+
#### Inherited from
|
|
208
|
+
|
|
209
|
+
[`IDataset`](IDataset.md).[`dcterms:temporal`](IDataset.md#dctermstemporal)
|
|
210
|
+
|
|
211
|
+
***
|
|
212
|
+
|
|
213
|
+
### dcat:temporalResolution?
|
|
214
|
+
|
|
215
|
+
> `optional` **dcat:temporalResolution**: `string`
|
|
216
|
+
|
|
217
|
+
Minimum time period resolvable in the dataset.
|
|
218
|
+
|
|
219
|
+
#### See
|
|
220
|
+
|
|
221
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal_resolution
|
|
222
|
+
|
|
223
|
+
#### Inherited from
|
|
224
|
+
|
|
225
|
+
[`IDataset`](IDataset.md).[`dcat:temporalResolution`](IDataset.md#dcattemporalresolution)
|
|
226
|
+
|
|
227
|
+
***
|
|
228
|
+
|
|
229
|
+
### prov:wasGeneratedBy?
|
|
230
|
+
|
|
231
|
+
> `optional` **prov:wasGeneratedBy**: `string` \| `IJsonLdNodeObject`
|
|
232
|
+
|
|
233
|
+
An activity that generated, or provides the business context for, the creation of the dataset.
|
|
234
|
+
|
|
235
|
+
#### See
|
|
236
|
+
|
|
237
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_was_generated_by
|
|
238
|
+
|
|
239
|
+
#### Inherited from
|
|
240
|
+
|
|
241
|
+
[`IDataset`](IDataset.md).[`prov:wasGeneratedBy`](IDataset.md#provwasgeneratedby)
|
|
242
|
+
|
|
243
|
+
***
|
|
244
|
+
|
|
245
|
+
### @context?
|
|
246
|
+
|
|
247
|
+
> `optional` **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
|
|
248
|
+
|
|
249
|
+
The JSON-LD context for the resource.
|
|
250
|
+
|
|
251
|
+
#### Inherited from
|
|
252
|
+
|
|
253
|
+
[`IDataset`](IDataset.md).[`@context`](IDataset.md#context)
|
|
254
|
+
|
|
255
|
+
***
|
|
256
|
+
|
|
257
|
+
### dcterms:title?
|
|
258
|
+
|
|
259
|
+
> `optional` **dcterms:title**: [`LiteralType`](../type-aliases/LiteralType.md)
|
|
260
|
+
|
|
261
|
+
A name given to the resource.
|
|
262
|
+
|
|
263
|
+
#### See
|
|
264
|
+
|
|
265
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
|
|
266
|
+
|
|
267
|
+
#### Inherited from
|
|
268
|
+
|
|
269
|
+
[`IDataset`](IDataset.md).[`dcterms:title`](IDataset.md#dctermstitle)
|
|
270
|
+
|
|
271
|
+
***
|
|
272
|
+
|
|
273
|
+
### dcterms:description?
|
|
274
|
+
|
|
275
|
+
> `optional` **dcterms:description**: [`LiteralType`](../type-aliases/LiteralType.md)
|
|
276
|
+
|
|
277
|
+
A free-text account of the resource.
|
|
278
|
+
|
|
279
|
+
#### See
|
|
280
|
+
|
|
281
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
|
|
282
|
+
|
|
283
|
+
#### Inherited from
|
|
284
|
+
|
|
285
|
+
[`IDataset`](IDataset.md).[`dcterms:description`](IDataset.md#dctermsdescription)
|
|
286
|
+
|
|
287
|
+
***
|
|
288
|
+
|
|
289
|
+
### dcterms:identifier?
|
|
290
|
+
|
|
291
|
+
> `optional` **dcterms:identifier**: [`LiteralType`](../type-aliases/LiteralType.md)
|
|
292
|
+
|
|
293
|
+
A unique identifier of the resource.
|
|
294
|
+
|
|
295
|
+
#### See
|
|
296
|
+
|
|
297
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
|
|
298
|
+
|
|
299
|
+
#### Inherited from
|
|
300
|
+
|
|
301
|
+
[`IDataset`](IDataset.md).[`dcterms:identifier`](IDataset.md#dctermsidentifier)
|
|
302
|
+
|
|
303
|
+
***
|
|
304
|
+
|
|
305
|
+
### dcterms:issued?
|
|
306
|
+
|
|
307
|
+
> `optional` **dcterms:issued**: `string`
|
|
308
|
+
|
|
309
|
+
Date of formal issuance (publication) of the resource.
|
|
310
|
+
|
|
311
|
+
#### See
|
|
312
|
+
|
|
313
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
|
|
314
|
+
|
|
315
|
+
#### Inherited from
|
|
316
|
+
|
|
317
|
+
[`IDataset`](IDataset.md).[`dcterms:issued`](IDataset.md#dctermsissued)
|
|
318
|
+
|
|
319
|
+
***
|
|
320
|
+
|
|
321
|
+
### dcterms:modified?
|
|
322
|
+
|
|
323
|
+
> `optional` **dcterms:modified**: `string`
|
|
324
|
+
|
|
325
|
+
Most recent date on which the resource was changed, updated or modified.
|
|
326
|
+
|
|
327
|
+
#### See
|
|
328
|
+
|
|
329
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
|
|
330
|
+
|
|
331
|
+
#### Inherited from
|
|
332
|
+
|
|
333
|
+
[`IDataset`](IDataset.md).[`dcterms:modified`](IDataset.md#dctermsmodified)
|
|
334
|
+
|
|
335
|
+
***
|
|
336
|
+
|
|
337
|
+
### dcterms:language?
|
|
338
|
+
|
|
339
|
+
> `optional` **dcterms:language**: `ObjectOrArray`\<`string`\>
|
|
340
|
+
|
|
341
|
+
A language of the resource.
|
|
342
|
+
|
|
343
|
+
#### See
|
|
344
|
+
|
|
345
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
|
|
346
|
+
|
|
347
|
+
#### Inherited from
|
|
348
|
+
|
|
349
|
+
[`IDataset`](IDataset.md).[`dcterms:language`](IDataset.md#dctermslanguage)
|
|
350
|
+
|
|
351
|
+
***
|
|
352
|
+
|
|
353
|
+
### dcterms:publisher?
|
|
354
|
+
|
|
355
|
+
> `optional` **dcterms:publisher**: `string` \| `IAgent`
|
|
356
|
+
|
|
357
|
+
An entity responsible for making the resource available.
|
|
358
|
+
|
|
359
|
+
#### See
|
|
360
|
+
|
|
361
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
|
|
362
|
+
|
|
363
|
+
#### Inherited from
|
|
364
|
+
|
|
365
|
+
[`IDataset`](IDataset.md).[`dcterms:publisher`](IDataset.md#dctermspublisher)
|
|
366
|
+
|
|
367
|
+
***
|
|
368
|
+
|
|
369
|
+
### dcterms:creator?
|
|
370
|
+
|
|
371
|
+
> `optional` **dcterms:creator**: `IAgent`
|
|
372
|
+
|
|
373
|
+
An entity responsible for producing the resource.
|
|
374
|
+
|
|
375
|
+
#### See
|
|
376
|
+
|
|
377
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
|
|
378
|
+
|
|
379
|
+
#### Inherited from
|
|
380
|
+
|
|
381
|
+
[`IDataset`](IDataset.md).[`dcterms:creator`](IDataset.md#dctermscreator)
|
|
382
|
+
|
|
383
|
+
***
|
|
384
|
+
|
|
385
|
+
### dcterms:accessRights?
|
|
386
|
+
|
|
387
|
+
> `optional` **dcterms:accessRights**: `string` \| `IJsonLdNodeObject`
|
|
388
|
+
|
|
389
|
+
Information about who can access the resource or an indication of its security status.
|
|
390
|
+
|
|
391
|
+
#### See
|
|
392
|
+
|
|
393
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
|
|
394
|
+
|
|
395
|
+
#### Inherited from
|
|
396
|
+
|
|
397
|
+
[`IDataset`](IDataset.md).[`dcterms:accessRights`](IDataset.md#dctermsaccessrights)
|
|
398
|
+
|
|
399
|
+
***
|
|
400
|
+
|
|
401
|
+
### dcterms:license?
|
|
402
|
+
|
|
403
|
+
> `optional` **dcterms:license**: `string` \| `IJsonLdNodeObject`
|
|
404
|
+
|
|
405
|
+
A legal document under which the resource is made available.
|
|
406
|
+
|
|
407
|
+
#### See
|
|
408
|
+
|
|
409
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
|
|
410
|
+
|
|
411
|
+
#### Inherited from
|
|
412
|
+
|
|
413
|
+
[`IDataset`](IDataset.md).[`dcterms:license`](IDataset.md#dctermslicense)
|
|
414
|
+
|
|
415
|
+
***
|
|
416
|
+
|
|
417
|
+
### dcterms:rights?
|
|
418
|
+
|
|
419
|
+
> `optional` **dcterms:rights**: `string` \| `IJsonLdNodeObject`
|
|
420
|
+
|
|
421
|
+
Information about rights held in and over the resource.
|
|
422
|
+
|
|
423
|
+
#### See
|
|
424
|
+
|
|
425
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
|
|
426
|
+
|
|
427
|
+
#### Inherited from
|
|
428
|
+
|
|
429
|
+
[`IDataset`](IDataset.md).[`dcterms:rights`](IDataset.md#dctermsrights)
|
|
430
|
+
|
|
431
|
+
***
|
|
432
|
+
|
|
433
|
+
### dcterms:conformsTo?
|
|
434
|
+
|
|
435
|
+
> `optional` **dcterms:conformsTo**: `ObjectOrArray`\<`string`\>
|
|
436
|
+
|
|
437
|
+
An established standard to which the resource conforms.
|
|
438
|
+
|
|
439
|
+
#### See
|
|
440
|
+
|
|
441
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
|
|
442
|
+
|
|
443
|
+
#### Inherited from
|
|
444
|
+
|
|
445
|
+
[`IDataset`](IDataset.md).[`dcterms:conformsTo`](IDataset.md#dctermsconformsto)
|
|
446
|
+
|
|
447
|
+
***
|
|
448
|
+
|
|
449
|
+
### dcterms:type?
|
|
450
|
+
|
|
451
|
+
> `optional` **dcterms:type**: `string`
|
|
452
|
+
|
|
453
|
+
The nature or genre of the resource.
|
|
454
|
+
|
|
455
|
+
#### See
|
|
456
|
+
|
|
457
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
|
|
458
|
+
|
|
459
|
+
#### Inherited from
|
|
460
|
+
|
|
461
|
+
[`IDataset`](IDataset.md).[`dcterms:type`](IDataset.md#dctermstype)
|
|
462
|
+
|
|
463
|
+
***
|
|
464
|
+
|
|
465
|
+
### dcat:contactPoint?
|
|
466
|
+
|
|
467
|
+
> `optional` **dcat:contactPoint**: `string` \| `IJsonLdNodeObject`
|
|
468
|
+
|
|
469
|
+
Relevant contact information for the catalogued resource.
|
|
470
|
+
|
|
471
|
+
#### See
|
|
472
|
+
|
|
473
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
|
|
474
|
+
|
|
475
|
+
#### Inherited from
|
|
476
|
+
|
|
477
|
+
[`IDataset`](IDataset.md).[`dcat:contactPoint`](IDataset.md#dcatcontactpoint)
|
|
478
|
+
|
|
479
|
+
***
|
|
480
|
+
|
|
481
|
+
### dcat:keyword?
|
|
482
|
+
|
|
483
|
+
> `optional` **dcat:keyword**: [`LiteralType`](../type-aliases/LiteralType.md)
|
|
484
|
+
|
|
485
|
+
A keyword or tag describing the resource.
|
|
486
|
+
|
|
487
|
+
#### See
|
|
488
|
+
|
|
489
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
|
|
490
|
+
|
|
491
|
+
#### Inherited from
|
|
492
|
+
|
|
493
|
+
[`IDataset`](IDataset.md).[`dcat:keyword`](IDataset.md#dcatkeyword)
|
|
494
|
+
|
|
495
|
+
***
|
|
496
|
+
|
|
497
|
+
### dcat:theme?
|
|
498
|
+
|
|
499
|
+
> `optional` **dcat:theme**: `ObjectOrArray`\<`string`\>
|
|
500
|
+
|
|
501
|
+
A main category of the resource. A resource can have multiple themes.
|
|
502
|
+
|
|
503
|
+
#### See
|
|
504
|
+
|
|
505
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
|
|
506
|
+
|
|
507
|
+
#### Inherited from
|
|
508
|
+
|
|
509
|
+
[`IDataset`](IDataset.md).[`dcat:theme`](IDataset.md#dcattheme)
|
|
510
|
+
|
|
511
|
+
***
|
|
512
|
+
|
|
513
|
+
### dcat:landingPage?
|
|
514
|
+
|
|
515
|
+
> `optional` **dcat:landingPage**: `ObjectOrArray`\<`string`\>
|
|
516
|
+
|
|
517
|
+
A Web page that can be navigated to gain access to the resource.
|
|
518
|
+
|
|
519
|
+
#### See
|
|
520
|
+
|
|
521
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
|
|
522
|
+
|
|
523
|
+
#### Inherited from
|
|
524
|
+
|
|
525
|
+
[`IDataset`](IDataset.md).[`dcat:landingPage`](IDataset.md#dcatlandingpage)
|
|
526
|
+
|
|
527
|
+
***
|
|
528
|
+
|
|
529
|
+
### dcat:qualifiedRelation?
|
|
530
|
+
|
|
531
|
+
> `optional` **dcat:qualifiedRelation**: `string` \| [`IRelationship`](IRelationship.md)
|
|
532
|
+
|
|
533
|
+
Link to a description of a relationship with another resource.
|
|
534
|
+
|
|
535
|
+
#### See
|
|
536
|
+
|
|
537
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
|
|
538
|
+
|
|
539
|
+
#### Inherited from
|
|
540
|
+
|
|
541
|
+
[`IDataset`](IDataset.md).[`dcat:qualifiedRelation`](IDataset.md#dcatqualifiedrelation)
|
|
542
|
+
|
|
543
|
+
***
|
|
544
|
+
|
|
545
|
+
### odrl:hasPolicy?
|
|
546
|
+
|
|
547
|
+
> `optional` **odrl:hasPolicy**: `IOdrlPolicy`
|
|
548
|
+
|
|
549
|
+
An ODRL conformant policy expressing the rights associated with the resource.
|
|
550
|
+
|
|
551
|
+
#### See
|
|
552
|
+
|
|
553
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:resource_has_policy
|
|
554
|
+
|
|
555
|
+
#### Inherited from
|
|
556
|
+
|
|
557
|
+
[`IDataset`](IDataset.md).[`odrl:hasPolicy`](IDataset.md#odrlhaspolicy)
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# Interface: ICatalogRecord
|
|
2
|
+
|
|
3
|
+
Interface for DCAT Catalog Record.
|
|
4
|
+
A record in a catalog, describing the registration of a single dataset or data
|
|
5
|
+
service.
|
|
6
|
+
|
|
7
|
+
## See
|
|
8
|
+
|
|
9
|
+
https://www.w3.org/TR/vocab-dcat-3/#Class:Catalog_Record
|
|
10
|
+
|
|
11
|
+
## Extends
|
|
12
|
+
|
|
13
|
+
- `IJsonLdNodeObject`
|
|
14
|
+
|
|
15
|
+
## Indexable
|
|
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`
|
|
18
|
+
|
|
19
|
+
## Properties
|
|
20
|
+
|
|
21
|
+
### @context?
|
|
22
|
+
|
|
23
|
+
> `optional` **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
|
|
24
|
+
|
|
25
|
+
The JSON-LD context for the resource.
|
|
26
|
+
|
|
27
|
+
#### Overrides
|
|
28
|
+
|
|
29
|
+
`IJsonLdNodeObject.@context`
|
|
30
|
+
|
|
31
|
+
***
|
|
32
|
+
|
|
33
|
+
### @type
|
|
34
|
+
|
|
35
|
+
> **@type**: `"CatalogRecord"`
|
|
36
|
+
|
|
37
|
+
The type identifier, typically "CatalogRecord".
|
|
38
|
+
|
|
39
|
+
#### Overrides
|
|
40
|
+
|
|
41
|
+
`IJsonLdNodeObject.@type`
|
|
42
|
+
|
|
43
|
+
***
|
|
44
|
+
|
|
45
|
+
### dcterms:title?
|
|
46
|
+
|
|
47
|
+
> `optional` **dcterms:title**: [`LiteralType`](../type-aliases/LiteralType.md)
|
|
48
|
+
|
|
49
|
+
A name given to the catalog record.
|
|
50
|
+
|
|
51
|
+
#### See
|
|
52
|
+
|
|
53
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:record_title
|
|
54
|
+
|
|
55
|
+
***
|
|
56
|
+
|
|
57
|
+
### dcterms:description?
|
|
58
|
+
|
|
59
|
+
> `optional` **dcterms:description**: [`LiteralType`](../type-aliases/LiteralType.md)
|
|
60
|
+
|
|
61
|
+
A free-text account of the catalog record.
|
|
62
|
+
|
|
63
|
+
#### See
|
|
64
|
+
|
|
65
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:record_description
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
### dcterms:issued?
|
|
70
|
+
|
|
71
|
+
> `optional` **dcterms:issued**: `string`
|
|
72
|
+
|
|
73
|
+
The date of listing of the catalog record in the catalog.
|
|
74
|
+
|
|
75
|
+
#### See
|
|
76
|
+
|
|
77
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:record_listing_date
|
|
78
|
+
|
|
79
|
+
***
|
|
80
|
+
|
|
81
|
+
### dcterms:modified?
|
|
82
|
+
|
|
83
|
+
> `optional` **dcterms:modified**: `string`
|
|
84
|
+
|
|
85
|
+
Most recent date on which the catalog record entry was changed or modified.
|
|
86
|
+
|
|
87
|
+
#### See
|
|
88
|
+
|
|
89
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:record_update_date
|
|
90
|
+
|
|
91
|
+
***
|
|
92
|
+
|
|
93
|
+
### dcterms:conformsTo?
|
|
94
|
+
|
|
95
|
+
> `optional` **dcterms:conformsTo**: `ObjectOrArray`\<`string`\>
|
|
96
|
+
|
|
97
|
+
An established standard to which the catalog record conforms.
|
|
98
|
+
|
|
99
|
+
#### See
|
|
100
|
+
|
|
101
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:record_conforms_to
|
|
102
|
+
|
|
103
|
+
***
|
|
104
|
+
|
|
105
|
+
### foaf:primaryTopic?
|
|
106
|
+
|
|
107
|
+
> `optional` **foaf:primaryTopic**: [`IResource`](IResource.md)
|
|
108
|
+
|
|
109
|
+
The dataset or data service described in the catalog record.
|
|
110
|
+
|
|
111
|
+
#### See
|
|
112
|
+
|
|
113
|
+
https://www.w3.org/TR/vocab-dcat-3/#Property:record_primary_topic
|