@twin.org/federated-catalogue-service 0.0.3-next.2 → 0.0.3-next.21
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/README.md +1 -1
- package/dist/es/entities/dataset.js +12 -4
- package/dist/es/entities/dataset.js.map +1 -1
- package/dist/es/federatedCatalogueRoutes.js +241 -53
- package/dist/es/federatedCatalogueRoutes.js.map +1 -1
- package/dist/es/index.js +2 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IFederatedCatalogueServiceConfig.js +4 -0
- package/dist/es/models/IFederatedCatalogueServiceConfig.js.map +1 -0
- package/dist/es/models/IFederatedCatalogueServiceConstructorOptions.js.map +1 -1
- package/dist/es/services/federatedCatalogueService.js +344 -131
- package/dist/es/services/federatedCatalogueService.js.map +1 -1
- package/dist/es/utils/catalogErrorUtils.js +49 -0
- package/dist/es/utils/catalogErrorUtils.js.map +1 -0
- package/dist/es/utils/datasetConverters.js +23 -10
- package/dist/es/utils/datasetConverters.js.map +1 -1
- package/dist/types/entities/dataset.d.ts +37 -33
- package/dist/types/index.d.ts +2 -0
- package/dist/types/models/IFederatedCatalogueServiceConfig.d.ts +5 -0
- package/dist/types/models/IFederatedCatalogueServiceConstructorOptions.d.ts +14 -4
- package/dist/types/services/federatedCatalogueService.d.ts +37 -21
- package/dist/types/utils/catalogErrorUtils.d.ts +15 -0
- package/dist/types/utils/datasetConverters.d.ts +10 -10
- package/docs/changelog.md +271 -3
- package/docs/examples.md +126 -1
- package/docs/open-api/spec.json +256 -2513
- package/docs/reference/classes/Dataset.md +70 -62
- package/docs/reference/classes/FederatedCatalogueService.md +77 -40
- package/docs/reference/functions/datasetEntityToModel.md +7 -7
- package/docs/reference/functions/datasetModelToEntity.md +11 -6
- package/docs/reference/functions/transformErrorToStatusCode.md +19 -0
- package/docs/reference/functions/transformToCatalogError.md +20 -0
- package/docs/reference/index.md +3 -0
- package/docs/reference/interfaces/IFederatedCatalogueServiceConfig.md +3 -0
- package/docs/reference/interfaces/IFederatedCatalogueServiceConstructorOptions.md +33 -5
- package/locales/en.json +12 -6
- package/package.json +10 -5
package/docs/open-api/spec.json
CHANGED
|
@@ -28,9 +28,34 @@
|
|
|
28
28
|
"tags": [
|
|
29
29
|
"Federated Catalogue"
|
|
30
30
|
],
|
|
31
|
-
"
|
|
31
|
+
"parameters": [
|
|
32
|
+
{
|
|
33
|
+
"name": "cursor",
|
|
34
|
+
"description": "Opaque cursor token for pagination.",
|
|
35
|
+
"in": "query",
|
|
36
|
+
"required": false,
|
|
37
|
+
"schema": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "limit",
|
|
43
|
+
"description": "Limit for pagination.",
|
|
44
|
+
"in": "query",
|
|
45
|
+
"required": false,
|
|
46
|
+
"schema": {
|
|
47
|
+
"type": "string"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
32
50
|
{
|
|
33
|
-
"
|
|
51
|
+
"name": "authorization",
|
|
52
|
+
"in": "header",
|
|
53
|
+
"required": true,
|
|
54
|
+
"schema": {
|
|
55
|
+
"type": "string"
|
|
56
|
+
},
|
|
57
|
+
"style": "simple",
|
|
58
|
+
"example": "Bearer <trust-token>"
|
|
34
59
|
}
|
|
35
60
|
],
|
|
36
61
|
"requestBody": {
|
|
@@ -39,13 +64,13 @@
|
|
|
39
64
|
"content": {
|
|
40
65
|
"application/json": {
|
|
41
66
|
"schema": {
|
|
42
|
-
"$ref": "
|
|
67
|
+
"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolCatalogRequestMessage"
|
|
43
68
|
},
|
|
44
69
|
"examples": {
|
|
45
70
|
"catalogRequestExample": {
|
|
46
71
|
"value": {
|
|
47
72
|
"@context": [
|
|
48
|
-
"https://w3id.org/dspace/2025/1/context.
|
|
73
|
+
"https://w3id.org/dspace/2025/1/context.jsonld"
|
|
49
74
|
],
|
|
50
75
|
"@type": "CatalogRequestMessage",
|
|
51
76
|
"filter": [
|
|
@@ -58,7 +83,7 @@
|
|
|
58
83
|
"catalogRequestNoFilterExample": {
|
|
59
84
|
"value": {
|
|
60
85
|
"@context": [
|
|
61
|
-
"https://w3id.org/dspace/2025/1/context.
|
|
86
|
+
"https://w3id.org/dspace/2025/1/context.jsonld"
|
|
62
87
|
],
|
|
63
88
|
"@type": "CatalogRequestMessage"
|
|
64
89
|
}
|
|
@@ -69,32 +94,46 @@
|
|
|
69
94
|
},
|
|
70
95
|
"responses": {
|
|
71
96
|
"200": {
|
|
72
|
-
"description": "The response payload for the catalog request method.",
|
|
97
|
+
"description": "The response payload for the catalog request method.\nReturns a DS Protocol compliant Catalog with participantId, or CatalogError if no datasets found.",
|
|
73
98
|
"content": {
|
|
74
99
|
"application/json": {
|
|
75
100
|
"schema": {
|
|
76
|
-
"$ref": "#/components/schemas/
|
|
101
|
+
"$ref": "#/components/schemas/CatalogRequestResponse"
|
|
77
102
|
},
|
|
78
103
|
"examples": {
|
|
79
104
|
"catalogRequestResponseExample": {
|
|
80
105
|
"value": {
|
|
81
106
|
"@context": [
|
|
82
|
-
"https://w3id.org/dspace/2025/1/context.
|
|
83
|
-
{
|
|
84
|
-
"dcat": "http://www.w3.org/ns/dcat#",
|
|
85
|
-
"dcterms": "http://purl.org/dc/terms/",
|
|
86
|
-
"cursor": "https://schema.twindev.org/federated-catalogue/cursor"
|
|
87
|
-
}
|
|
107
|
+
"https://w3id.org/dspace/2025/1/context.jsonld"
|
|
88
108
|
],
|
|
89
109
|
"@id": "urn:x-catalog:a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z6a7b8c9d0e1f2",
|
|
90
110
|
"@type": "Catalog",
|
|
91
111
|
"participantId": "did:example:node-identity-123",
|
|
92
|
-
"
|
|
112
|
+
"dataset": [
|
|
93
113
|
{
|
|
94
114
|
"@id": "urn:uuid:dataset-123",
|
|
95
115
|
"@type": "Dataset",
|
|
96
116
|
"dcterms:title": "Energy Consumption Data",
|
|
97
|
-
"dcterms:description": "Historical energy consumption data"
|
|
117
|
+
"dcterms:description": "Historical energy consumption data",
|
|
118
|
+
"hasPolicy": [
|
|
119
|
+
{
|
|
120
|
+
"@id": "urn:uuid:policy-456",
|
|
121
|
+
"@type": "Offer",
|
|
122
|
+
"assigner": "did:example:data-provider-789"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"distribution": [
|
|
126
|
+
{
|
|
127
|
+
"@id": "urn:uuid:distribution-789",
|
|
128
|
+
"@type": "Distribution",
|
|
129
|
+
"format": "application/json",
|
|
130
|
+
"accessService": {
|
|
131
|
+
"@id": "urn:uuid:access-service-321",
|
|
132
|
+
"@type": "DataService",
|
|
133
|
+
"endpointURL": "https://example.com/data-access"
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
]
|
|
98
137
|
}
|
|
99
138
|
]
|
|
100
139
|
}
|
|
@@ -124,24 +163,6 @@
|
|
|
124
163
|
}
|
|
125
164
|
}
|
|
126
165
|
},
|
|
127
|
-
"401": {
|
|
128
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
129
|
-
"content": {
|
|
130
|
-
"application/json": {
|
|
131
|
-
"schema": {
|
|
132
|
-
"$ref": "#/components/schemas/Error"
|
|
133
|
-
},
|
|
134
|
-
"examples": {
|
|
135
|
-
"exampleResponse": {
|
|
136
|
-
"value": {
|
|
137
|
-
"name": "UnauthorizedError",
|
|
138
|
-
"message": "errorMessage"
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
},
|
|
145
166
|
"500": {
|
|
146
167
|
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
147
168
|
"content": {
|
|
@@ -181,11 +202,16 @@
|
|
|
181
202
|
},
|
|
182
203
|
"style": "simple",
|
|
183
204
|
"example": "urn:uuid:dataset-123"
|
|
184
|
-
}
|
|
185
|
-
],
|
|
186
|
-
"security": [
|
|
205
|
+
},
|
|
187
206
|
{
|
|
188
|
-
"
|
|
207
|
+
"name": "authorization",
|
|
208
|
+
"in": "header",
|
|
209
|
+
"required": true,
|
|
210
|
+
"schema": {
|
|
211
|
+
"type": "string"
|
|
212
|
+
},
|
|
213
|
+
"style": "simple",
|
|
214
|
+
"example": "Bearer <trust-token>"
|
|
189
215
|
}
|
|
190
216
|
],
|
|
191
217
|
"responses": {
|
|
@@ -194,20 +220,14 @@
|
|
|
194
220
|
"content": {
|
|
195
221
|
"application/json": {
|
|
196
222
|
"schema": {
|
|
197
|
-
"$ref": "#/components/schemas/
|
|
223
|
+
"$ref": "#/components/schemas/DatasetGetResponse"
|
|
198
224
|
},
|
|
199
225
|
"examples": {
|
|
200
226
|
"getDatasetResponseExample": {
|
|
201
227
|
"value": {
|
|
202
|
-
"@context":
|
|
203
|
-
"https://w3id.org/dspace/2025/1/context.json",
|
|
204
|
-
{
|
|
205
|
-
"dcat": "http://www.w3.org/ns/dcat#",
|
|
206
|
-
"dcterms": "http://purl.org/dc/terms/"
|
|
207
|
-
}
|
|
208
|
-
],
|
|
228
|
+
"@context": "https://w3id.org/dspace/2025/1/context.jsonld",
|
|
209
229
|
"@id": "urn:uuid:dataset-123",
|
|
210
|
-
"@type": "Dataset",
|
|
230
|
+
"@type": "dcat:Dataset",
|
|
211
231
|
"dcterms:title": "Energy Consumption Data",
|
|
212
232
|
"dcterms:description": "Historical energy consumption data"
|
|
213
233
|
}
|
|
@@ -237,8 +257,8 @@
|
|
|
237
257
|
}
|
|
238
258
|
}
|
|
239
259
|
},
|
|
240
|
-
"
|
|
241
|
-
"description": "
|
|
260
|
+
"500": {
|
|
261
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
242
262
|
"content": {
|
|
243
263
|
"application/json": {
|
|
244
264
|
"schema": {
|
|
@@ -247,13 +267,76 @@
|
|
|
247
267
|
"examples": {
|
|
248
268
|
"exampleResponse": {
|
|
249
269
|
"value": {
|
|
250
|
-
"name": "
|
|
270
|
+
"name": "InternalServerError",
|
|
251
271
|
"message": "errorMessage"
|
|
252
272
|
}
|
|
253
273
|
}
|
|
254
274
|
}
|
|
255
275
|
}
|
|
256
276
|
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"delete": {
|
|
281
|
+
"operationId": "removeDataset",
|
|
282
|
+
"summary": "Remove a dataset from the catalogue by ID",
|
|
283
|
+
"tags": [
|
|
284
|
+
"Federated Catalogue"
|
|
285
|
+
],
|
|
286
|
+
"parameters": [
|
|
287
|
+
{
|
|
288
|
+
"name": "datasetId",
|
|
289
|
+
"description": "The unique identifier of the dataset.",
|
|
290
|
+
"in": "path",
|
|
291
|
+
"required": true,
|
|
292
|
+
"schema": {
|
|
293
|
+
"type": "string"
|
|
294
|
+
},
|
|
295
|
+
"style": "simple",
|
|
296
|
+
"example": "urn:uuid:dataset-123"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "authorization",
|
|
300
|
+
"in": "header",
|
|
301
|
+
"required": true,
|
|
302
|
+
"schema": {
|
|
303
|
+
"type": "string"
|
|
304
|
+
},
|
|
305
|
+
"style": "simple",
|
|
306
|
+
"example": "Bearer <trust-token>"
|
|
307
|
+
}
|
|
308
|
+
],
|
|
309
|
+
"responses": {
|
|
310
|
+
"200": {
|
|
311
|
+
"description": "The response payload for the remove dataset method.",
|
|
312
|
+
"content": {
|
|
313
|
+
"application/json": {
|
|
314
|
+
"schema": {
|
|
315
|
+
"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolCatalogError"
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"400": {
|
|
321
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
322
|
+
"content": {
|
|
323
|
+
"application/json": {
|
|
324
|
+
"schema": {
|
|
325
|
+
"$ref": "#/components/schemas/Error"
|
|
326
|
+
},
|
|
327
|
+
"examples": {
|
|
328
|
+
"exampleResponse": {
|
|
329
|
+
"value": {
|
|
330
|
+
"name": "GeneralError",
|
|
331
|
+
"message": "errorMessage",
|
|
332
|
+
"properties": {
|
|
333
|
+
"foo": "bar"
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
}
|
|
257
340
|
},
|
|
258
341
|
"500": {
|
|
259
342
|
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
@@ -275,2499 +358,159 @@
|
|
|
275
358
|
}
|
|
276
359
|
}
|
|
277
360
|
}
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
"
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
"
|
|
290
|
-
|
|
291
|
-
|
|
361
|
+
},
|
|
362
|
+
"/catalog/datasets": {
|
|
363
|
+
"post": {
|
|
364
|
+
"operationId": "setDataset",
|
|
365
|
+
"summary": "Insert or update a dataset in the catalogue",
|
|
366
|
+
"tags": [
|
|
367
|
+
"Federated Catalogue"
|
|
368
|
+
],
|
|
369
|
+
"parameters": [
|
|
370
|
+
{
|
|
371
|
+
"name": "authorization",
|
|
372
|
+
"in": "header",
|
|
373
|
+
"required": true,
|
|
374
|
+
"schema": {
|
|
375
|
+
"type": "string"
|
|
376
|
+
},
|
|
377
|
+
"style": "simple",
|
|
378
|
+
"example": "Bearer <trust-token>"
|
|
379
|
+
}
|
|
380
|
+
],
|
|
381
|
+
"requestBody": {
|
|
382
|
+
"description": "The request parameters for the set dataset method.",
|
|
383
|
+
"required": true,
|
|
384
|
+
"content": {
|
|
385
|
+
"application/json": {
|
|
386
|
+
"schema": {
|
|
387
|
+
"$ref": "https://schema.twindev.org/dcat/DcatDataset"
|
|
292
388
|
},
|
|
293
|
-
{
|
|
294
|
-
"
|
|
295
|
-
|
|
296
|
-
|
|
389
|
+
"examples": {
|
|
390
|
+
"setDatasetRequestExample": {
|
|
391
|
+
"value": {
|
|
392
|
+
"@context": "https://w3id.org/dspace/2025/1/context.jsonld",
|
|
393
|
+
"@id": "urn:uuid:dataset-123",
|
|
394
|
+
"@type": "dcat:Dataset",
|
|
395
|
+
"dcterms:title": "Energy Consumption Data",
|
|
396
|
+
"dcterms:description": "Historical energy consumption data"
|
|
397
|
+
}
|
|
297
398
|
}
|
|
298
399
|
}
|
|
299
|
-
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
"
|
|
306
|
-
{
|
|
307
|
-
"
|
|
308
|
-
|
|
309
|
-
{
|
|
310
|
-
"type": "array",
|
|
311
|
-
"items": {
|
|
312
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"responses": {
|
|
404
|
+
"200": {
|
|
405
|
+
"description": "The response payload for the set dataset method.",
|
|
406
|
+
"content": {
|
|
407
|
+
"application/json": {
|
|
408
|
+
"schema": {
|
|
409
|
+
"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolCatalogError"
|
|
313
410
|
}
|
|
314
411
|
}
|
|
315
|
-
|
|
412
|
+
}
|
|
316
413
|
},
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
"
|
|
325
|
-
"
|
|
414
|
+
"400": {
|
|
415
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
416
|
+
"content": {
|
|
417
|
+
"application/json": {
|
|
418
|
+
"schema": {
|
|
419
|
+
"$ref": "#/components/schemas/Error"
|
|
420
|
+
},
|
|
421
|
+
"examples": {
|
|
422
|
+
"exampleResponse": {
|
|
423
|
+
"value": {
|
|
424
|
+
"name": "GeneralError",
|
|
425
|
+
"message": "errorMessage",
|
|
426
|
+
"properties": {
|
|
427
|
+
"foo": "bar"
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
}
|
|
326
431
|
}
|
|
327
432
|
}
|
|
328
|
-
]
|
|
329
|
-
},
|
|
330
|
-
"@type": {
|
|
331
|
-
"type": "string",
|
|
332
|
-
"description": "Type."
|
|
333
|
-
},
|
|
334
|
-
"@reverse": {
|
|
335
|
-
"type": "object",
|
|
336
|
-
"additionalProperties": {
|
|
337
|
-
"type": "string"
|
|
338
433
|
}
|
|
339
434
|
},
|
|
340
|
-
"
|
|
341
|
-
"
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
},
|
|
355
|
-
"homepage": {
|
|
356
|
-
"type": "string",
|
|
357
|
-
"description": "A homepage for some thing."
|
|
358
|
-
},
|
|
359
|
-
"depiction": {
|
|
360
|
-
"$ref": "#/components/schemas/Image"
|
|
361
|
-
},
|
|
362
|
-
"age": {
|
|
363
|
-
"type": "number",
|
|
364
|
-
"description": "The age in years of some agent."
|
|
365
|
-
},
|
|
366
|
-
"made": {
|
|
367
|
-
"description": "Object or array data type",
|
|
368
|
-
"anyOf": [
|
|
369
|
-
{
|
|
370
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"type": "array",
|
|
374
|
-
"items": {
|
|
375
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
435
|
+
"500": {
|
|
436
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
437
|
+
"content": {
|
|
438
|
+
"application/json": {
|
|
439
|
+
"schema": {
|
|
440
|
+
"$ref": "#/components/schemas/Error"
|
|
441
|
+
},
|
|
442
|
+
"examples": {
|
|
443
|
+
"exampleResponse": {
|
|
444
|
+
"value": {
|
|
445
|
+
"name": "InternalServerError",
|
|
446
|
+
"message": "errorMessage"
|
|
447
|
+
}
|
|
448
|
+
}
|
|
376
449
|
}
|
|
377
450
|
}
|
|
378
|
-
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
"components": {
|
|
458
|
+
"schemas": {
|
|
459
|
+
"CatalogRequestResponse": {
|
|
460
|
+
"anyOf": [
|
|
461
|
+
{
|
|
462
|
+
"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolCatalog"
|
|
385
463
|
},
|
|
386
|
-
|
|
387
|
-
"$ref": "
|
|
464
|
+
{
|
|
465
|
+
"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolCatalogError"
|
|
466
|
+
}
|
|
467
|
+
],
|
|
468
|
+
"description": "The response payload containing the DS Protocol compliant catalog with participantId,\nor a CatalogError if no datasets are found (404).\nPer DS Protocol: Single participant returns flat catalog, multiple participants return nested catalogs."
|
|
469
|
+
},
|
|
470
|
+
"DatasetGetResponse": {
|
|
471
|
+
"anyOf": [
|
|
472
|
+
{
|
|
473
|
+
"$ref": "https://schema.twindev.org/dcat/DcatDataset"
|
|
388
474
|
},
|
|
389
|
-
|
|
390
|
-
"$ref": "https://schema.twindev.org/
|
|
475
|
+
{
|
|
476
|
+
"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolCatalogError"
|
|
391
477
|
}
|
|
392
|
-
},
|
|
393
|
-
"required": [
|
|
394
|
-
"@type"
|
|
395
478
|
],
|
|
396
|
-
"
|
|
397
|
-
"anyOf": [
|
|
398
|
-
{
|
|
399
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
"type": "array"
|
|
418
|
-
}
|
|
419
|
-
]
|
|
420
|
-
},
|
|
421
|
-
"description": "A FOAF Agent."
|
|
479
|
+
"description": "The response payload containing the dataset or error."
|
|
422
480
|
},
|
|
423
|
-
"
|
|
481
|
+
"Error": {
|
|
482
|
+
"description": "Model to describe serialized error.",
|
|
424
483
|
"type": "object",
|
|
425
484
|
"properties": {
|
|
426
|
-
"
|
|
427
|
-
"
|
|
428
|
-
|
|
429
|
-
"@id": {
|
|
430
|
-
"anyOf": [
|
|
431
|
-
{
|
|
432
|
-
"type": "string"
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
"type": "array",
|
|
436
|
-
"items": {
|
|
437
|
-
"type": "string"
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
]
|
|
441
|
-
},
|
|
442
|
-
"@included": {
|
|
443
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
444
|
-
},
|
|
445
|
-
"@graph": {
|
|
446
|
-
"anyOf": [
|
|
447
|
-
{
|
|
448
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
"type": "array",
|
|
452
|
-
"items": {
|
|
453
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
454
|
-
}
|
|
455
|
-
}
|
|
456
|
-
]
|
|
485
|
+
"name": {
|
|
486
|
+
"type": "string",
|
|
487
|
+
"description": "The name for the error."
|
|
457
488
|
},
|
|
458
|
-
"
|
|
459
|
-
"
|
|
460
|
-
|
|
461
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
"type": "array",
|
|
465
|
-
"items": {
|
|
466
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
]
|
|
489
|
+
"message": {
|
|
490
|
+
"type": "string",
|
|
491
|
+
"description": "The message for the error as an i18n key."
|
|
470
492
|
},
|
|
471
|
-
"
|
|
493
|
+
"source": {
|
|
472
494
|
"type": "string",
|
|
473
|
-
"
|
|
474
|
-
"description": "The type identifier, typically \"Catalog\"."
|
|
495
|
+
"description": "The source of the error."
|
|
475
496
|
},
|
|
476
|
-
"
|
|
497
|
+
"properties": {
|
|
477
498
|
"type": "object",
|
|
478
|
-
"additionalProperties": {
|
|
479
|
-
|
|
480
|
-
}
|
|
481
|
-
},
|
|
482
|
-
"@index": {
|
|
483
|
-
"type": "string"
|
|
484
|
-
},
|
|
485
|
-
"dcterms:title": {
|
|
486
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
487
|
-
},
|
|
488
|
-
"dcterms:description": {
|
|
489
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
490
|
-
},
|
|
491
|
-
"dcterms:identifier": {
|
|
492
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
493
|
-
},
|
|
494
|
-
"dcterms:issued": {
|
|
495
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
499
|
+
"additionalProperties": {},
|
|
500
|
+
"description": "Any additional information for the error."
|
|
496
501
|
},
|
|
497
|
-
"
|
|
498
|
-
"
|
|
502
|
+
"stack": {
|
|
503
|
+
"type": "string",
|
|
504
|
+
"description": "The stack trace for the error."
|
|
499
505
|
},
|
|
500
|
-
"
|
|
501
|
-
"
|
|
502
|
-
"anyOf": [
|
|
503
|
-
{
|
|
504
|
-
"type": "string"
|
|
505
|
-
},
|
|
506
|
-
{
|
|
507
|
-
"type": "array",
|
|
508
|
-
"items": {
|
|
509
|
-
"type": "string"
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
]
|
|
513
|
-
},
|
|
514
|
-
"dcterms:publisher": {
|
|
515
|
-
"anyOf": [
|
|
516
|
-
{
|
|
517
|
-
"$ref": "#/components/schemas/Agent"
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
"type": "string"
|
|
521
|
-
}
|
|
522
|
-
],
|
|
523
|
-
"description": "An entity responsible for making the resource available."
|
|
524
|
-
},
|
|
525
|
-
"dcterms:creator": {
|
|
526
|
-
"$ref": "#/components/schemas/Agent"
|
|
527
|
-
},
|
|
528
|
-
"dcterms:accessRights": {
|
|
529
|
-
"anyOf": [
|
|
530
|
-
{
|
|
531
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"type": "string"
|
|
535
|
-
}
|
|
536
|
-
],
|
|
537
|
-
"description": "Information about who can access the resource or an indication of its security status."
|
|
538
|
-
},
|
|
539
|
-
"dcterms:license": {
|
|
540
|
-
"anyOf": [
|
|
541
|
-
{
|
|
542
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
543
|
-
},
|
|
544
|
-
{
|
|
545
|
-
"type": "string"
|
|
546
|
-
}
|
|
547
|
-
],
|
|
548
|
-
"description": "A legal document under which the resource is made available."
|
|
549
|
-
},
|
|
550
|
-
"dcterms:rights": {
|
|
551
|
-
"anyOf": [
|
|
552
|
-
{
|
|
553
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
"type": "string"
|
|
557
|
-
}
|
|
558
|
-
],
|
|
559
|
-
"description": "Information about rights held in and over the resource."
|
|
560
|
-
},
|
|
561
|
-
"dcterms:conformsTo": {
|
|
562
|
-
"description": "Object or array data type",
|
|
563
|
-
"anyOf": [
|
|
564
|
-
{
|
|
565
|
-
"type": "string"
|
|
566
|
-
},
|
|
567
|
-
{
|
|
568
|
-
"type": "array",
|
|
569
|
-
"items": {
|
|
570
|
-
"type": "string"
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
]
|
|
574
|
-
},
|
|
575
|
-
"dcterms:type": {
|
|
576
|
-
"type": "string",
|
|
577
|
-
"description": "The nature or genre of the resource."
|
|
578
|
-
},
|
|
579
|
-
"dcat:contactPoint": {
|
|
580
|
-
"anyOf": [
|
|
581
|
-
{
|
|
582
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
583
|
-
},
|
|
584
|
-
{
|
|
585
|
-
"type": "string"
|
|
586
|
-
}
|
|
587
|
-
],
|
|
588
|
-
"description": "Relevant contact information for the catalogued resource."
|
|
589
|
-
},
|
|
590
|
-
"dcat:keyword": {
|
|
591
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
592
|
-
},
|
|
593
|
-
"dcat:theme": {
|
|
594
|
-
"description": "Object or array data type",
|
|
595
|
-
"anyOf": [
|
|
596
|
-
{
|
|
597
|
-
"type": "string"
|
|
598
|
-
},
|
|
599
|
-
{
|
|
600
|
-
"type": "array",
|
|
601
|
-
"items": {
|
|
602
|
-
"type": "string"
|
|
603
|
-
}
|
|
604
|
-
}
|
|
605
|
-
]
|
|
606
|
-
},
|
|
607
|
-
"dcat:landingPage": {
|
|
608
|
-
"description": "Object or array data type",
|
|
609
|
-
"anyOf": [
|
|
610
|
-
{
|
|
611
|
-
"type": "string"
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
"type": "array",
|
|
615
|
-
"items": {
|
|
616
|
-
"type": "string"
|
|
617
|
-
}
|
|
618
|
-
}
|
|
619
|
-
]
|
|
620
|
-
},
|
|
621
|
-
"dcat:qualifiedRelation": {
|
|
622
|
-
"anyOf": [
|
|
623
|
-
{
|
|
624
|
-
"$ref": "#/components/schemas/Relationship"
|
|
625
|
-
},
|
|
626
|
-
{
|
|
627
|
-
"type": "string"
|
|
628
|
-
}
|
|
629
|
-
],
|
|
630
|
-
"description": "Link to a description of a relationship with another resource."
|
|
631
|
-
},
|
|
632
|
-
"odrl:hasPolicy": {
|
|
633
|
-
"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
|
|
634
|
-
},
|
|
635
|
-
"dcat:distribution": {
|
|
636
|
-
"description": "Object or array data type",
|
|
637
|
-
"anyOf": [
|
|
638
|
-
{
|
|
639
|
-
"$ref": "#/components/schemas/Distribution"
|
|
640
|
-
},
|
|
641
|
-
{
|
|
642
|
-
"type": "array",
|
|
643
|
-
"items": {
|
|
644
|
-
"$ref": "#/components/schemas/Distribution"
|
|
645
|
-
}
|
|
646
|
-
}
|
|
647
|
-
]
|
|
648
|
-
},
|
|
649
|
-
"dcterms:accrualPeriodicity": {
|
|
650
|
-
"type": "string",
|
|
651
|
-
"description": "The frequency at which the dataset is published."
|
|
652
|
-
},
|
|
653
|
-
"dcat:inSeries": {
|
|
654
|
-
"type": "string",
|
|
655
|
-
"description": "A dataset series of which the dataset is part."
|
|
656
|
-
},
|
|
657
|
-
"dcterms:spatial": {
|
|
658
|
-
"anyOf": [
|
|
659
|
-
{
|
|
660
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"anyOf": [
|
|
664
|
-
{
|
|
665
|
-
"type": "string"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"type": "array",
|
|
669
|
-
"items": {
|
|
670
|
-
"type": "string"
|
|
671
|
-
}
|
|
672
|
-
}
|
|
673
|
-
],
|
|
674
|
-
"description": "Object or array data type"
|
|
675
|
-
}
|
|
676
|
-
],
|
|
677
|
-
"description": "The geographical area covered by the dataset."
|
|
678
|
-
},
|
|
679
|
-
"dcat:spatialResolutionInMeters": {
|
|
680
|
-
"$ref": "#/components/schemas/DecimalType"
|
|
681
|
-
},
|
|
682
|
-
"dcterms:temporal": {
|
|
683
|
-
"$ref": "#/components/schemas/PeriodOfTime"
|
|
684
|
-
},
|
|
685
|
-
"dcat:temporalResolution": {
|
|
686
|
-
"$ref": "#/components/schemas/DurationType"
|
|
687
|
-
},
|
|
688
|
-
"prov:wasGeneratedBy": {
|
|
689
|
-
"anyOf": [
|
|
690
|
-
{
|
|
691
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"type": "string"
|
|
695
|
-
}
|
|
696
|
-
],
|
|
697
|
-
"description": "An activity that generated, or provides the business context for, the creation of the dataset."
|
|
698
|
-
},
|
|
699
|
-
"foaf:homepage": {
|
|
700
|
-
"type": "string",
|
|
701
|
-
"description": "A homepage of the catalog (a public Web document usually available in HTML)."
|
|
702
|
-
},
|
|
703
|
-
"dcat:themeTaxonomy": {
|
|
704
|
-
"description": "Object or array data type",
|
|
705
|
-
"anyOf": [
|
|
706
|
-
{
|
|
707
|
-
"$ref": "#/components/schemas/Resource"
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
"type": "array",
|
|
711
|
-
"items": {
|
|
712
|
-
"$ref": "#/components/schemas/Resource"
|
|
713
|
-
}
|
|
714
|
-
}
|
|
715
|
-
]
|
|
716
|
-
},
|
|
717
|
-
"dcat:resource": {
|
|
718
|
-
"description": "Object or array data type",
|
|
719
|
-
"anyOf": [
|
|
720
|
-
{
|
|
721
|
-
"$ref": "#/components/schemas/Resource"
|
|
722
|
-
},
|
|
723
|
-
{
|
|
724
|
-
"type": "array",
|
|
725
|
-
"items": {
|
|
726
|
-
"$ref": "#/components/schemas/Resource"
|
|
727
|
-
}
|
|
728
|
-
}
|
|
729
|
-
]
|
|
730
|
-
},
|
|
731
|
-
"dcat:dataset": {
|
|
732
|
-
"description": "Object or array data type",
|
|
733
|
-
"anyOf": [
|
|
734
|
-
{
|
|
735
|
-
"$ref": "#/components/schemas/Dataset"
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
"type": "array",
|
|
739
|
-
"items": {
|
|
740
|
-
"$ref": "#/components/schemas/Dataset"
|
|
741
|
-
}
|
|
742
|
-
}
|
|
743
|
-
]
|
|
744
|
-
},
|
|
745
|
-
"dcat:service": {
|
|
746
|
-
"description": "Object or array data type",
|
|
747
|
-
"anyOf": [
|
|
748
|
-
{
|
|
749
|
-
"$ref": "#/components/schemas/DataService"
|
|
750
|
-
},
|
|
751
|
-
{
|
|
752
|
-
"type": "array",
|
|
753
|
-
"items": {
|
|
754
|
-
"$ref": "#/components/schemas/DataService"
|
|
755
|
-
}
|
|
756
|
-
}
|
|
757
|
-
]
|
|
758
|
-
},
|
|
759
|
-
"dcat:catalog": {
|
|
760
|
-
"description": "Object or array data type",
|
|
761
|
-
"anyOf": [
|
|
762
|
-
{
|
|
763
|
-
"$ref": "#/components/schemas/Catalog"
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
"type": "array",
|
|
767
|
-
"items": {
|
|
768
|
-
"$ref": "#/components/schemas/Catalog"
|
|
769
|
-
}
|
|
770
|
-
}
|
|
771
|
-
]
|
|
772
|
-
},
|
|
773
|
-
"dcat:record": {
|
|
774
|
-
"description": "Object or array data type",
|
|
775
|
-
"anyOf": [
|
|
776
|
-
{
|
|
777
|
-
"$ref": "#/components/schemas/CatalogRecord"
|
|
778
|
-
},
|
|
779
|
-
{
|
|
780
|
-
"type": "array",
|
|
781
|
-
"items": {
|
|
782
|
-
"$ref": "#/components/schemas/CatalogRecord"
|
|
783
|
-
}
|
|
784
|
-
}
|
|
785
|
-
]
|
|
786
|
-
}
|
|
787
|
-
},
|
|
788
|
-
"required": [
|
|
789
|
-
"@type"
|
|
790
|
-
],
|
|
791
|
-
"additionalProperties": {
|
|
792
|
-
"anyOf": [
|
|
793
|
-
{
|
|
794
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
795
|
-
},
|
|
796
|
-
{
|
|
797
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
801
|
-
},
|
|
802
|
-
{
|
|
803
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
804
|
-
},
|
|
805
|
-
{
|
|
806
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
810
|
-
},
|
|
811
|
-
{
|
|
812
|
-
"type": "array"
|
|
813
|
-
}
|
|
814
|
-
]
|
|
815
|
-
},
|
|
816
|
-
"description": "Interface for DCAT Catalog. A curated collection of metadata about resources (datasets and data services). Note: dcat:Catalog is a sub-class of dcat:Dataset per the W3C spec."
|
|
817
|
-
},
|
|
818
|
-
"CatalogRecord": {
|
|
819
|
-
"type": "object",
|
|
820
|
-
"properties": {
|
|
821
|
-
"@context": {
|
|
822
|
-
"$ref": "#/components/schemas/DcatContextType"
|
|
823
|
-
},
|
|
824
|
-
"@id": {
|
|
825
|
-
"anyOf": [
|
|
826
|
-
{
|
|
827
|
-
"type": "string"
|
|
828
|
-
},
|
|
829
|
-
{
|
|
830
|
-
"type": "array",
|
|
831
|
-
"items": {
|
|
832
|
-
"type": "string"
|
|
833
|
-
}
|
|
834
|
-
}
|
|
835
|
-
]
|
|
836
|
-
},
|
|
837
|
-
"@included": {
|
|
838
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
839
|
-
},
|
|
840
|
-
"@graph": {
|
|
841
|
-
"anyOf": [
|
|
842
|
-
{
|
|
843
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
844
|
-
},
|
|
845
|
-
{
|
|
846
|
-
"type": "array",
|
|
847
|
-
"items": {
|
|
848
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
849
|
-
}
|
|
850
|
-
}
|
|
851
|
-
]
|
|
852
|
-
},
|
|
853
|
-
"@nest": {
|
|
854
|
-
"anyOf": [
|
|
855
|
-
{
|
|
856
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"type": "array",
|
|
860
|
-
"items": {
|
|
861
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
862
|
-
}
|
|
863
|
-
}
|
|
864
|
-
]
|
|
865
|
-
},
|
|
866
|
-
"@type": {
|
|
867
|
-
"type": "string",
|
|
868
|
-
"const": "CatalogRecord",
|
|
869
|
-
"description": "The type identifier, typically \"CatalogRecord\"."
|
|
870
|
-
},
|
|
871
|
-
"@reverse": {
|
|
872
|
-
"type": "object",
|
|
873
|
-
"additionalProperties": {
|
|
874
|
-
"type": "string"
|
|
875
|
-
}
|
|
876
|
-
},
|
|
877
|
-
"@index": {
|
|
878
|
-
"type": "string"
|
|
879
|
-
},
|
|
880
|
-
"dcterms:title": {
|
|
881
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
882
|
-
},
|
|
883
|
-
"dcterms:description": {
|
|
884
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
885
|
-
},
|
|
886
|
-
"dcterms:issued": {
|
|
887
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
888
|
-
},
|
|
889
|
-
"dcterms:modified": {
|
|
890
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
891
|
-
},
|
|
892
|
-
"dcterms:conformsTo": {
|
|
893
|
-
"description": "Object or array data type",
|
|
894
|
-
"anyOf": [
|
|
895
|
-
{
|
|
896
|
-
"type": "string"
|
|
897
|
-
},
|
|
898
|
-
{
|
|
899
|
-
"type": "array",
|
|
900
|
-
"items": {
|
|
901
|
-
"type": "string"
|
|
902
|
-
}
|
|
903
|
-
}
|
|
904
|
-
]
|
|
905
|
-
},
|
|
906
|
-
"foaf:primaryTopic": {
|
|
907
|
-
"$ref": "#/components/schemas/Resource"
|
|
908
|
-
}
|
|
909
|
-
},
|
|
910
|
-
"required": [
|
|
911
|
-
"@type"
|
|
912
|
-
],
|
|
913
|
-
"additionalProperties": {
|
|
914
|
-
"anyOf": [
|
|
915
|
-
{
|
|
916
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
917
|
-
},
|
|
918
|
-
{
|
|
919
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
920
|
-
},
|
|
921
|
-
{
|
|
922
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
923
|
-
},
|
|
924
|
-
{
|
|
925
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
926
|
-
},
|
|
927
|
-
{
|
|
928
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
929
|
-
},
|
|
930
|
-
{
|
|
931
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
932
|
-
},
|
|
933
|
-
{
|
|
934
|
-
"type": "array"
|
|
935
|
-
}
|
|
936
|
-
]
|
|
937
|
-
},
|
|
938
|
-
"description": "Interface for DCAT Catalog Record. A record in a catalog, describing the registration of a single dataset or data service."
|
|
939
|
-
},
|
|
940
|
-
"CatalogRequestMessage": {
|
|
941
|
-
"type": "object",
|
|
942
|
-
"properties": {
|
|
943
|
-
"@context": {
|
|
944
|
-
"$ref": "#/components/schemas/DataspaceProtocolContextType"
|
|
945
|
-
},
|
|
946
|
-
"@type": {
|
|
947
|
-
"type": "string",
|
|
948
|
-
"const": "CatalogRequestMessage",
|
|
949
|
-
"description": "The type of the message."
|
|
950
|
-
},
|
|
951
|
-
"filter": {
|
|
952
|
-
"type": "array",
|
|
953
|
-
"items": {},
|
|
954
|
-
"description": "An implementation-specific query or filter expression."
|
|
955
|
-
}
|
|
956
|
-
},
|
|
957
|
-
"required": [
|
|
958
|
-
"@context",
|
|
959
|
-
"@type"
|
|
960
|
-
],
|
|
961
|
-
"additionalProperties": false,
|
|
962
|
-
"description": "Interface for Dataspace Protocol Catalog Request Messages. https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1/#catalog-request-message"
|
|
963
|
-
},
|
|
964
|
-
"DataService": {
|
|
965
|
-
"type": "object",
|
|
966
|
-
"properties": {
|
|
967
|
-
"@context": {
|
|
968
|
-
"$ref": "#/components/schemas/DcatContextType"
|
|
969
|
-
},
|
|
970
|
-
"@id": {
|
|
971
|
-
"anyOf": [
|
|
972
|
-
{
|
|
973
|
-
"type": "string"
|
|
974
|
-
},
|
|
975
|
-
{
|
|
976
|
-
"type": "array",
|
|
977
|
-
"items": {
|
|
978
|
-
"type": "string"
|
|
979
|
-
}
|
|
980
|
-
}
|
|
981
|
-
]
|
|
982
|
-
},
|
|
983
|
-
"@included": {
|
|
984
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
985
|
-
},
|
|
986
|
-
"@graph": {
|
|
987
|
-
"anyOf": [
|
|
988
|
-
{
|
|
989
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
990
|
-
},
|
|
991
|
-
{
|
|
992
|
-
"type": "array",
|
|
993
|
-
"items": {
|
|
994
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
]
|
|
998
|
-
},
|
|
999
|
-
"@nest": {
|
|
1000
|
-
"anyOf": [
|
|
1001
|
-
{
|
|
1002
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
1003
|
-
},
|
|
1004
|
-
{
|
|
1005
|
-
"type": "array",
|
|
1006
|
-
"items": {
|
|
1007
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
1008
|
-
}
|
|
1009
|
-
}
|
|
1010
|
-
]
|
|
1011
|
-
},
|
|
1012
|
-
"@type": {
|
|
1013
|
-
"type": "string",
|
|
1014
|
-
"const": "DataService",
|
|
1015
|
-
"description": "The type identifier, typically \"DataService\"."
|
|
1016
|
-
},
|
|
1017
|
-
"@reverse": {
|
|
1018
|
-
"type": "object",
|
|
1019
|
-
"additionalProperties": {
|
|
1020
|
-
"type": "string"
|
|
1021
|
-
}
|
|
1022
|
-
},
|
|
1023
|
-
"@index": {
|
|
1024
|
-
"type": "string"
|
|
1025
|
-
},
|
|
1026
|
-
"dcterms:title": {
|
|
1027
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1028
|
-
},
|
|
1029
|
-
"dcterms:description": {
|
|
1030
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1031
|
-
},
|
|
1032
|
-
"dcterms:identifier": {
|
|
1033
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1034
|
-
},
|
|
1035
|
-
"dcterms:issued": {
|
|
1036
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
1037
|
-
},
|
|
1038
|
-
"dcterms:modified": {
|
|
1039
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
1040
|
-
},
|
|
1041
|
-
"dcterms:language": {
|
|
1042
|
-
"description": "Object or array data type",
|
|
1043
|
-
"anyOf": [
|
|
1044
|
-
{
|
|
1045
|
-
"type": "string"
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
"type": "array",
|
|
1049
|
-
"items": {
|
|
1050
|
-
"type": "string"
|
|
1051
|
-
}
|
|
1052
|
-
}
|
|
1053
|
-
]
|
|
1054
|
-
},
|
|
1055
|
-
"dcterms:publisher": {
|
|
1056
|
-
"anyOf": [
|
|
1057
|
-
{
|
|
1058
|
-
"$ref": "#/components/schemas/Agent"
|
|
1059
|
-
},
|
|
1060
|
-
{
|
|
1061
|
-
"type": "string"
|
|
1062
|
-
}
|
|
1063
|
-
],
|
|
1064
|
-
"description": "An entity responsible for making the resource available."
|
|
1065
|
-
},
|
|
1066
|
-
"dcterms:creator": {
|
|
1067
|
-
"$ref": "#/components/schemas/Agent"
|
|
1068
|
-
},
|
|
1069
|
-
"dcterms:accessRights": {
|
|
1070
|
-
"anyOf": [
|
|
1071
|
-
{
|
|
1072
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1073
|
-
},
|
|
1074
|
-
{
|
|
1075
|
-
"type": "string"
|
|
1076
|
-
}
|
|
1077
|
-
],
|
|
1078
|
-
"description": "Information about who can access the resource or an indication of its security status."
|
|
1079
|
-
},
|
|
1080
|
-
"dcterms:license": {
|
|
1081
|
-
"anyOf": [
|
|
1082
|
-
{
|
|
1083
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1084
|
-
},
|
|
1085
|
-
{
|
|
1086
|
-
"type": "string"
|
|
1087
|
-
}
|
|
1088
|
-
],
|
|
1089
|
-
"description": "A legal document under which the resource is made available."
|
|
1090
|
-
},
|
|
1091
|
-
"dcterms:rights": {
|
|
1092
|
-
"anyOf": [
|
|
1093
|
-
{
|
|
1094
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1095
|
-
},
|
|
1096
|
-
{
|
|
1097
|
-
"type": "string"
|
|
1098
|
-
}
|
|
1099
|
-
],
|
|
1100
|
-
"description": "Information about rights held in and over the resource."
|
|
1101
|
-
},
|
|
1102
|
-
"dcterms:conformsTo": {
|
|
1103
|
-
"description": "Object or array data type",
|
|
1104
|
-
"anyOf": [
|
|
1105
|
-
{
|
|
1106
|
-
"type": "string"
|
|
1107
|
-
},
|
|
1108
|
-
{
|
|
1109
|
-
"type": "array",
|
|
1110
|
-
"items": {
|
|
1111
|
-
"type": "string"
|
|
1112
|
-
}
|
|
1113
|
-
}
|
|
1114
|
-
]
|
|
1115
|
-
},
|
|
1116
|
-
"dcterms:type": {
|
|
1117
|
-
"type": "string",
|
|
1118
|
-
"description": "The nature or genre of the resource."
|
|
1119
|
-
},
|
|
1120
|
-
"dcat:contactPoint": {
|
|
1121
|
-
"anyOf": [
|
|
1122
|
-
{
|
|
1123
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1124
|
-
},
|
|
1125
|
-
{
|
|
1126
|
-
"type": "string"
|
|
1127
|
-
}
|
|
1128
|
-
],
|
|
1129
|
-
"description": "Relevant contact information for the catalogued resource."
|
|
1130
|
-
},
|
|
1131
|
-
"dcat:keyword": {
|
|
1132
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1133
|
-
},
|
|
1134
|
-
"dcat:theme": {
|
|
1135
|
-
"description": "Object or array data type",
|
|
1136
|
-
"anyOf": [
|
|
1137
|
-
{
|
|
1138
|
-
"type": "string"
|
|
1139
|
-
},
|
|
1140
|
-
{
|
|
1141
|
-
"type": "array",
|
|
1142
|
-
"items": {
|
|
1143
|
-
"type": "string"
|
|
1144
|
-
}
|
|
1145
|
-
}
|
|
1146
|
-
]
|
|
1147
|
-
},
|
|
1148
|
-
"dcat:landingPage": {
|
|
1149
|
-
"description": "Object or array data type",
|
|
1150
|
-
"anyOf": [
|
|
1151
|
-
{
|
|
1152
|
-
"type": "string"
|
|
1153
|
-
},
|
|
1154
|
-
{
|
|
1155
|
-
"type": "array",
|
|
1156
|
-
"items": {
|
|
1157
|
-
"type": "string"
|
|
1158
|
-
}
|
|
1159
|
-
}
|
|
1160
|
-
]
|
|
1161
|
-
},
|
|
1162
|
-
"dcat:qualifiedRelation": {
|
|
1163
|
-
"anyOf": [
|
|
1164
|
-
{
|
|
1165
|
-
"$ref": "#/components/schemas/Relationship"
|
|
1166
|
-
},
|
|
1167
|
-
{
|
|
1168
|
-
"type": "string"
|
|
1169
|
-
}
|
|
1170
|
-
],
|
|
1171
|
-
"description": "Link to a description of a relationship with another resource."
|
|
1172
|
-
},
|
|
1173
|
-
"odrl:hasPolicy": {
|
|
1174
|
-
"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
|
|
1175
|
-
},
|
|
1176
|
-
"dcat:endpointURL": {
|
|
1177
|
-
"type": "string",
|
|
1178
|
-
"description": "The root location or primary endpoint of the service (a Web-resolvable IRI)."
|
|
1179
|
-
},
|
|
1180
|
-
"dcat:endpointDescription": {
|
|
1181
|
-
"type": "string",
|
|
1182
|
-
"description": "A description of the services available via the end-points, including their operations, parameters, etc."
|
|
1183
|
-
},
|
|
1184
|
-
"dcat:servesDataset": {
|
|
1185
|
-
"description": "Object or array data type",
|
|
1186
|
-
"anyOf": [
|
|
1187
|
-
{
|
|
1188
|
-
"type": "string"
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
"type": "array",
|
|
1192
|
-
"items": {
|
|
1193
|
-
"type": "string"
|
|
1194
|
-
}
|
|
1195
|
-
}
|
|
1196
|
-
]
|
|
1197
|
-
}
|
|
1198
|
-
},
|
|
1199
|
-
"required": [
|
|
1200
|
-
"@type"
|
|
1201
|
-
],
|
|
1202
|
-
"additionalProperties": {
|
|
1203
|
-
"anyOf": [
|
|
1204
|
-
{
|
|
1205
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1206
|
-
},
|
|
1207
|
-
{
|
|
1208
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
1212
|
-
},
|
|
1213
|
-
{
|
|
1214
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1215
|
-
},
|
|
1216
|
-
{
|
|
1217
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
1218
|
-
},
|
|
1219
|
-
{
|
|
1220
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
1221
|
-
},
|
|
1222
|
-
{
|
|
1223
|
-
"type": "array"
|
|
1224
|
-
}
|
|
1225
|
-
]
|
|
1226
|
-
},
|
|
1227
|
-
"description": "Interface for DCAT Data Service. A collection of operations that provides access to one or more datasets or data processing functions."
|
|
1228
|
-
},
|
|
1229
|
-
"Dataset": {
|
|
1230
|
-
"type": "object",
|
|
1231
|
-
"properties": {
|
|
1232
|
-
"@context": {
|
|
1233
|
-
"$ref": "#/components/schemas/DcatContextType"
|
|
1234
|
-
},
|
|
1235
|
-
"@id": {
|
|
1236
|
-
"anyOf": [
|
|
1237
|
-
{
|
|
1238
|
-
"type": "string"
|
|
1239
|
-
},
|
|
1240
|
-
{
|
|
1241
|
-
"type": "array",
|
|
1242
|
-
"items": {
|
|
1243
|
-
"type": "string"
|
|
1244
|
-
}
|
|
1245
|
-
}
|
|
1246
|
-
]
|
|
1247
|
-
},
|
|
1248
|
-
"@included": {
|
|
1249
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1250
|
-
},
|
|
1251
|
-
"@graph": {
|
|
1252
|
-
"anyOf": [
|
|
1253
|
-
{
|
|
1254
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1255
|
-
},
|
|
1256
|
-
{
|
|
1257
|
-
"type": "array",
|
|
1258
|
-
"items": {
|
|
1259
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1260
|
-
}
|
|
1261
|
-
}
|
|
1262
|
-
]
|
|
1263
|
-
},
|
|
1264
|
-
"@nest": {
|
|
1265
|
-
"anyOf": [
|
|
1266
|
-
{
|
|
1267
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
1268
|
-
},
|
|
1269
|
-
{
|
|
1270
|
-
"type": "array",
|
|
1271
|
-
"items": {
|
|
1272
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
1273
|
-
}
|
|
1274
|
-
}
|
|
1275
|
-
]
|
|
1276
|
-
},
|
|
1277
|
-
"@type": {
|
|
1278
|
-
"type": "string",
|
|
1279
|
-
"enum": [
|
|
1280
|
-
"Dataset",
|
|
1281
|
-
"Catalog",
|
|
1282
|
-
"DatasetSeries"
|
|
1283
|
-
],
|
|
1284
|
-
"description": "The type identifier, typically \"Dataset\". Can also be \"Catalog\" or \"DatasetSeries\" for subclasses."
|
|
1285
|
-
},
|
|
1286
|
-
"@reverse": {
|
|
1287
|
-
"type": "object",
|
|
1288
|
-
"additionalProperties": {
|
|
1289
|
-
"type": "string"
|
|
1290
|
-
}
|
|
1291
|
-
},
|
|
1292
|
-
"@index": {
|
|
1293
|
-
"type": "string"
|
|
1294
|
-
},
|
|
1295
|
-
"dcterms:title": {
|
|
1296
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1297
|
-
},
|
|
1298
|
-
"dcterms:description": {
|
|
1299
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1300
|
-
},
|
|
1301
|
-
"dcterms:identifier": {
|
|
1302
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1303
|
-
},
|
|
1304
|
-
"dcterms:issued": {
|
|
1305
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
1306
|
-
},
|
|
1307
|
-
"dcterms:modified": {
|
|
1308
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
1309
|
-
},
|
|
1310
|
-
"dcterms:language": {
|
|
1311
|
-
"description": "Object or array data type",
|
|
1312
|
-
"anyOf": [
|
|
1313
|
-
{
|
|
1314
|
-
"type": "string"
|
|
1315
|
-
},
|
|
1316
|
-
{
|
|
1317
|
-
"type": "array",
|
|
1318
|
-
"items": {
|
|
1319
|
-
"type": "string"
|
|
1320
|
-
}
|
|
1321
|
-
}
|
|
1322
|
-
]
|
|
1323
|
-
},
|
|
1324
|
-
"dcterms:publisher": {
|
|
1325
|
-
"anyOf": [
|
|
1326
|
-
{
|
|
1327
|
-
"$ref": "#/components/schemas/Agent"
|
|
1328
|
-
},
|
|
1329
|
-
{
|
|
1330
|
-
"type": "string"
|
|
1331
|
-
}
|
|
1332
|
-
],
|
|
1333
|
-
"description": "An entity responsible for making the resource available."
|
|
1334
|
-
},
|
|
1335
|
-
"dcterms:creator": {
|
|
1336
|
-
"$ref": "#/components/schemas/Agent"
|
|
1337
|
-
},
|
|
1338
|
-
"dcterms:accessRights": {
|
|
1339
|
-
"anyOf": [
|
|
1340
|
-
{
|
|
1341
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1342
|
-
},
|
|
1343
|
-
{
|
|
1344
|
-
"type": "string"
|
|
1345
|
-
}
|
|
1346
|
-
],
|
|
1347
|
-
"description": "Information about who can access the resource or an indication of its security status."
|
|
1348
|
-
},
|
|
1349
|
-
"dcterms:license": {
|
|
1350
|
-
"anyOf": [
|
|
1351
|
-
{
|
|
1352
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1353
|
-
},
|
|
1354
|
-
{
|
|
1355
|
-
"type": "string"
|
|
1356
|
-
}
|
|
1357
|
-
],
|
|
1358
|
-
"description": "A legal document under which the resource is made available."
|
|
1359
|
-
},
|
|
1360
|
-
"dcterms:rights": {
|
|
1361
|
-
"anyOf": [
|
|
1362
|
-
{
|
|
1363
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1364
|
-
},
|
|
1365
|
-
{
|
|
1366
|
-
"type": "string"
|
|
1367
|
-
}
|
|
1368
|
-
],
|
|
1369
|
-
"description": "Information about rights held in and over the resource."
|
|
1370
|
-
},
|
|
1371
|
-
"dcterms:conformsTo": {
|
|
1372
|
-
"description": "Object or array data type",
|
|
1373
|
-
"anyOf": [
|
|
1374
|
-
{
|
|
1375
|
-
"type": "string"
|
|
1376
|
-
},
|
|
1377
|
-
{
|
|
1378
|
-
"type": "array",
|
|
1379
|
-
"items": {
|
|
1380
|
-
"type": "string"
|
|
1381
|
-
}
|
|
1382
|
-
}
|
|
1383
|
-
]
|
|
1384
|
-
},
|
|
1385
|
-
"dcterms:type": {
|
|
1386
|
-
"type": "string",
|
|
1387
|
-
"description": "The nature or genre of the resource."
|
|
1388
|
-
},
|
|
1389
|
-
"dcat:contactPoint": {
|
|
1390
|
-
"anyOf": [
|
|
1391
|
-
{
|
|
1392
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1393
|
-
},
|
|
1394
|
-
{
|
|
1395
|
-
"type": "string"
|
|
1396
|
-
}
|
|
1397
|
-
],
|
|
1398
|
-
"description": "Relevant contact information for the catalogued resource."
|
|
1399
|
-
},
|
|
1400
|
-
"dcat:keyword": {
|
|
1401
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1402
|
-
},
|
|
1403
|
-
"dcat:theme": {
|
|
1404
|
-
"description": "Object or array data type",
|
|
1405
|
-
"anyOf": [
|
|
1406
|
-
{
|
|
1407
|
-
"type": "string"
|
|
1408
|
-
},
|
|
1409
|
-
{
|
|
1410
|
-
"type": "array",
|
|
1411
|
-
"items": {
|
|
1412
|
-
"type": "string"
|
|
1413
|
-
}
|
|
1414
|
-
}
|
|
1415
|
-
]
|
|
1416
|
-
},
|
|
1417
|
-
"dcat:landingPage": {
|
|
1418
|
-
"description": "Object or array data type",
|
|
1419
|
-
"anyOf": [
|
|
1420
|
-
{
|
|
1421
|
-
"type": "string"
|
|
1422
|
-
},
|
|
1423
|
-
{
|
|
1424
|
-
"type": "array",
|
|
1425
|
-
"items": {
|
|
1426
|
-
"type": "string"
|
|
1427
|
-
}
|
|
1428
|
-
}
|
|
1429
|
-
]
|
|
1430
|
-
},
|
|
1431
|
-
"dcat:qualifiedRelation": {
|
|
1432
|
-
"anyOf": [
|
|
1433
|
-
{
|
|
1434
|
-
"$ref": "#/components/schemas/Relationship"
|
|
1435
|
-
},
|
|
1436
|
-
{
|
|
1437
|
-
"type": "string"
|
|
1438
|
-
}
|
|
1439
|
-
],
|
|
1440
|
-
"description": "Link to a description of a relationship with another resource."
|
|
1441
|
-
},
|
|
1442
|
-
"odrl:hasPolicy": {
|
|
1443
|
-
"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
|
|
1444
|
-
},
|
|
1445
|
-
"dcat:distribution": {
|
|
1446
|
-
"description": "Object or array data type",
|
|
1447
|
-
"anyOf": [
|
|
1448
|
-
{
|
|
1449
|
-
"$ref": "#/components/schemas/Distribution"
|
|
1450
|
-
},
|
|
1451
|
-
{
|
|
1452
|
-
"type": "array",
|
|
1453
|
-
"items": {
|
|
1454
|
-
"$ref": "#/components/schemas/Distribution"
|
|
1455
|
-
}
|
|
1456
|
-
}
|
|
1457
|
-
]
|
|
1458
|
-
},
|
|
1459
|
-
"dcterms:accrualPeriodicity": {
|
|
1460
|
-
"type": "string",
|
|
1461
|
-
"description": "The frequency at which the dataset is published."
|
|
1462
|
-
},
|
|
1463
|
-
"dcat:inSeries": {
|
|
1464
|
-
"type": "string",
|
|
1465
|
-
"description": "A dataset series of which the dataset is part."
|
|
1466
|
-
},
|
|
1467
|
-
"dcterms:spatial": {
|
|
1468
|
-
"anyOf": [
|
|
1469
|
-
{
|
|
1470
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1471
|
-
},
|
|
1472
|
-
{
|
|
1473
|
-
"anyOf": [
|
|
1474
|
-
{
|
|
1475
|
-
"type": "string"
|
|
1476
|
-
},
|
|
1477
|
-
{
|
|
1478
|
-
"type": "array",
|
|
1479
|
-
"items": {
|
|
1480
|
-
"type": "string"
|
|
1481
|
-
}
|
|
1482
|
-
}
|
|
1483
|
-
],
|
|
1484
|
-
"description": "Object or array data type"
|
|
1485
|
-
}
|
|
1486
|
-
],
|
|
1487
|
-
"description": "The geographical area covered by the dataset."
|
|
1488
|
-
},
|
|
1489
|
-
"dcat:spatialResolutionInMeters": {
|
|
1490
|
-
"$ref": "#/components/schemas/DecimalType"
|
|
1491
|
-
},
|
|
1492
|
-
"dcterms:temporal": {
|
|
1493
|
-
"$ref": "#/components/schemas/PeriodOfTime"
|
|
1494
|
-
},
|
|
1495
|
-
"dcat:temporalResolution": {
|
|
1496
|
-
"$ref": "#/components/schemas/DurationType"
|
|
1497
|
-
},
|
|
1498
|
-
"prov:wasGeneratedBy": {
|
|
1499
|
-
"anyOf": [
|
|
1500
|
-
{
|
|
1501
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1502
|
-
},
|
|
1503
|
-
{
|
|
1504
|
-
"type": "string"
|
|
1505
|
-
}
|
|
1506
|
-
],
|
|
1507
|
-
"description": "An activity that generated, or provides the business context for, the creation of the dataset."
|
|
1508
|
-
}
|
|
1509
|
-
},
|
|
1510
|
-
"required": [
|
|
1511
|
-
"@type"
|
|
1512
|
-
],
|
|
1513
|
-
"additionalProperties": {
|
|
1514
|
-
"anyOf": [
|
|
1515
|
-
{
|
|
1516
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1517
|
-
},
|
|
1518
|
-
{
|
|
1519
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
1520
|
-
},
|
|
1521
|
-
{
|
|
1522
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
1523
|
-
},
|
|
1524
|
-
{
|
|
1525
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1526
|
-
},
|
|
1527
|
-
{
|
|
1528
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
1529
|
-
},
|
|
1530
|
-
{
|
|
1531
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
1532
|
-
},
|
|
1533
|
-
{
|
|
1534
|
-
"type": "array"
|
|
1535
|
-
}
|
|
1536
|
-
]
|
|
1537
|
-
},
|
|
1538
|
-
"description": "Interface for DCAT Dataset. A collection of data, published or curated by a single agent, and available for access or download in one or more representations."
|
|
1539
|
-
},
|
|
1540
|
-
"DataspaceProtocolContextType": {
|
|
1541
|
-
"anyOf": [
|
|
1542
|
-
{
|
|
1543
|
-
"type": "array",
|
|
1544
|
-
"items": {
|
|
1545
|
-
"type": "string",
|
|
1546
|
-
"const": "https://w3id.org/dspace/2025/1/context.json"
|
|
1547
|
-
},
|
|
1548
|
-
"minItems": 1,
|
|
1549
|
-
"maxItems": 1
|
|
1550
|
-
},
|
|
1551
|
-
{
|
|
1552
|
-
"type": "array",
|
|
1553
|
-
"minItems": 2,
|
|
1554
|
-
"prefixItems": [
|
|
1555
|
-
{
|
|
1556
|
-
"type": "string",
|
|
1557
|
-
"const": "https://w3id.org/dspace/2025/1/context.json"
|
|
1558
|
-
},
|
|
1559
|
-
{
|
|
1560
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
1561
|
-
}
|
|
1562
|
-
],
|
|
1563
|
-
"items": {
|
|
1564
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
1565
|
-
}
|
|
1566
|
-
},
|
|
1567
|
-
{
|
|
1568
|
-
"type": "array",
|
|
1569
|
-
"minItems": 2,
|
|
1570
|
-
"prefixItems": [
|
|
1571
|
-
{
|
|
1572
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
1573
|
-
},
|
|
1574
|
-
{
|
|
1575
|
-
"type": "string",
|
|
1576
|
-
"const": "https://w3id.org/dspace/2025/1/context.json"
|
|
1577
|
-
}
|
|
1578
|
-
],
|
|
1579
|
-
"items": {
|
|
1580
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
1581
|
-
}
|
|
1582
|
-
}
|
|
1583
|
-
],
|
|
1584
|
-
"description": "The Dataspace Protocol Protocol JSON-LD context type."
|
|
1585
|
-
},
|
|
1586
|
-
"DateTimeType": {
|
|
1587
|
-
"type": "string",
|
|
1588
|
-
"description": "Date/time values in ISO 8601 format. Can be xsd:date, xsd:dateTime, or xsd:gYear."
|
|
1589
|
-
},
|
|
1590
|
-
"DcatContextType": {
|
|
1591
|
-
"type": "object",
|
|
1592
|
-
"additionalProperties": {
|
|
1593
|
-
"anyOf": [
|
|
1594
|
-
{
|
|
1595
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdExpandedTermDefinition"
|
|
1596
|
-
},
|
|
1597
|
-
{
|
|
1598
|
-
"type": [
|
|
1599
|
-
"null",
|
|
1600
|
-
"string"
|
|
1601
|
-
]
|
|
1602
|
-
}
|
|
1603
|
-
]
|
|
1604
|
-
},
|
|
1605
|
-
"properties": {
|
|
1606
|
-
"@base": {
|
|
1607
|
-
"type": [
|
|
1608
|
-
"string",
|
|
1609
|
-
"null"
|
|
1610
|
-
]
|
|
1611
|
-
},
|
|
1612
|
-
"@direction": {
|
|
1613
|
-
"type": [
|
|
1614
|
-
"string",
|
|
1615
|
-
"null"
|
|
1616
|
-
],
|
|
1617
|
-
"enum": [
|
|
1618
|
-
"ltr",
|
|
1619
|
-
"rtl",
|
|
1620
|
-
null
|
|
1621
|
-
]
|
|
1622
|
-
},
|
|
1623
|
-
"@import": {
|
|
1624
|
-
"type": "string"
|
|
1625
|
-
},
|
|
1626
|
-
"@language": {
|
|
1627
|
-
"type": "string"
|
|
1628
|
-
},
|
|
1629
|
-
"@propagate": {
|
|
1630
|
-
"type": "boolean"
|
|
1631
|
-
},
|
|
1632
|
-
"@protected": {
|
|
1633
|
-
"type": "boolean"
|
|
1634
|
-
},
|
|
1635
|
-
"@type": {
|
|
1636
|
-
"type": "object",
|
|
1637
|
-
"properties": {
|
|
1638
|
-
"@container": {
|
|
1639
|
-
"type": "string",
|
|
1640
|
-
"const": "@set"
|
|
1641
|
-
},
|
|
1642
|
-
"@protected": {
|
|
1643
|
-
"type": "boolean"
|
|
1644
|
-
}
|
|
1645
|
-
},
|
|
1646
|
-
"required": [
|
|
1647
|
-
"@container"
|
|
1648
|
-
],
|
|
1649
|
-
"additionalProperties": false
|
|
1650
|
-
},
|
|
1651
|
-
"@version": {
|
|
1652
|
-
"type": "string",
|
|
1653
|
-
"const": "1.1"
|
|
1654
|
-
},
|
|
1655
|
-
"@vocab": {
|
|
1656
|
-
"type": [
|
|
1657
|
-
"string",
|
|
1658
|
-
"null"
|
|
1659
|
-
]
|
|
1660
|
-
},
|
|
1661
|
-
"dcat": {
|
|
1662
|
-
"type": "string",
|
|
1663
|
-
"const": "http://www.w3.org/ns/dcat#"
|
|
1664
|
-
},
|
|
1665
|
-
"dcterms": {
|
|
1666
|
-
"type": "string",
|
|
1667
|
-
"const": "http://purl.org/dc/terms/"
|
|
1668
|
-
}
|
|
1669
|
-
},
|
|
1670
|
-
"required": [
|
|
1671
|
-
"dcat",
|
|
1672
|
-
"dcterms"
|
|
1673
|
-
],
|
|
1674
|
-
"description": "The DCAT JSON-LD context type. Supports the DCAT context URL or arrays with additional context definitions."
|
|
1675
|
-
},
|
|
1676
|
-
"DecimalType": {
|
|
1677
|
-
"type": "number",
|
|
1678
|
-
"description": "Decimal number values (xsd:decimal)."
|
|
1679
|
-
},
|
|
1680
|
-
"Distribution": {
|
|
1681
|
-
"type": "object",
|
|
1682
|
-
"properties": {
|
|
1683
|
-
"@context": {
|
|
1684
|
-
"$ref": "#/components/schemas/DcatContextType"
|
|
1685
|
-
},
|
|
1686
|
-
"@id": {
|
|
1687
|
-
"anyOf": [
|
|
1688
|
-
{
|
|
1689
|
-
"type": "string"
|
|
1690
|
-
},
|
|
1691
|
-
{
|
|
1692
|
-
"type": "array",
|
|
1693
|
-
"items": {
|
|
1694
|
-
"type": "string"
|
|
1695
|
-
}
|
|
1696
|
-
}
|
|
1697
|
-
]
|
|
1698
|
-
},
|
|
1699
|
-
"@included": {
|
|
1700
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1701
|
-
},
|
|
1702
|
-
"@graph": {
|
|
1703
|
-
"anyOf": [
|
|
1704
|
-
{
|
|
1705
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1706
|
-
},
|
|
1707
|
-
{
|
|
1708
|
-
"type": "array",
|
|
1709
|
-
"items": {
|
|
1710
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1711
|
-
}
|
|
1712
|
-
}
|
|
1713
|
-
]
|
|
1714
|
-
},
|
|
1715
|
-
"@nest": {
|
|
1716
|
-
"anyOf": [
|
|
1717
|
-
{
|
|
1718
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
1719
|
-
},
|
|
1720
|
-
{
|
|
1721
|
-
"type": "array",
|
|
1722
|
-
"items": {
|
|
1723
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
1724
|
-
}
|
|
1725
|
-
}
|
|
1726
|
-
]
|
|
1727
|
-
},
|
|
1728
|
-
"@type": {
|
|
1729
|
-
"type": "string",
|
|
1730
|
-
"const": "Distribution",
|
|
1731
|
-
"description": "The type identifier, typically \"Distribution\"."
|
|
1732
|
-
},
|
|
1733
|
-
"@reverse": {
|
|
1734
|
-
"type": "object",
|
|
1735
|
-
"additionalProperties": {
|
|
1736
|
-
"type": "string"
|
|
1737
|
-
}
|
|
1738
|
-
},
|
|
1739
|
-
"@index": {
|
|
1740
|
-
"type": "string"
|
|
1741
|
-
},
|
|
1742
|
-
"dcterms:title": {
|
|
1743
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1744
|
-
},
|
|
1745
|
-
"dcterms:description": {
|
|
1746
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
1747
|
-
},
|
|
1748
|
-
"dcterms:issued": {
|
|
1749
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
1750
|
-
},
|
|
1751
|
-
"dcterms:modified": {
|
|
1752
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
1753
|
-
},
|
|
1754
|
-
"dcterms:license": {
|
|
1755
|
-
"type": "string",
|
|
1756
|
-
"description": "A legal document under which the distribution is made available."
|
|
1757
|
-
},
|
|
1758
|
-
"dcterms:accessRights": {
|
|
1759
|
-
"type": "string",
|
|
1760
|
-
"description": "Information about who can access the distribution."
|
|
1761
|
-
},
|
|
1762
|
-
"dcterms:rights": {
|
|
1763
|
-
"type": "string",
|
|
1764
|
-
"description": "Information about rights held in and over the distribution."
|
|
1765
|
-
},
|
|
1766
|
-
"dcat:accessURL": {
|
|
1767
|
-
"type": "string",
|
|
1768
|
-
"description": "A URL of the resource that gives access to a distribution of the dataset."
|
|
1769
|
-
},
|
|
1770
|
-
"dcat:accessService": {
|
|
1771
|
-
"type": "string",
|
|
1772
|
-
"description": "A data service that gives access to the distribution."
|
|
1773
|
-
},
|
|
1774
|
-
"dcat:downloadURL": {
|
|
1775
|
-
"type": "string",
|
|
1776
|
-
"description": "The URL of the downloadable file in a given format."
|
|
1777
|
-
},
|
|
1778
|
-
"dcat:byteSize": {
|
|
1779
|
-
"$ref": "#/components/schemas/NonNegativeIntegerType"
|
|
1780
|
-
},
|
|
1781
|
-
"dcat:spatialResolutionInMeters": {
|
|
1782
|
-
"$ref": "#/components/schemas/DecimalType"
|
|
1783
|
-
},
|
|
1784
|
-
"dcat:temporalResolution": {
|
|
1785
|
-
"$ref": "#/components/schemas/DurationType"
|
|
1786
|
-
},
|
|
1787
|
-
"dcterms:conformsTo": {
|
|
1788
|
-
"description": "Object or array data type",
|
|
1789
|
-
"anyOf": [
|
|
1790
|
-
{
|
|
1791
|
-
"type": "string"
|
|
1792
|
-
},
|
|
1793
|
-
{
|
|
1794
|
-
"type": "array",
|
|
1795
|
-
"items": {
|
|
1796
|
-
"type": "string"
|
|
1797
|
-
}
|
|
1798
|
-
}
|
|
1799
|
-
]
|
|
1800
|
-
},
|
|
1801
|
-
"dcat:mediaType": {
|
|
1802
|
-
"type": "string",
|
|
1803
|
-
"description": "The media type of the distribution as defined by IANA."
|
|
1804
|
-
},
|
|
1805
|
-
"dcterms:format": {
|
|
1806
|
-
"type": "string",
|
|
1807
|
-
"description": "The file format of the distribution."
|
|
1808
|
-
},
|
|
1809
|
-
"dcat:compressFormat": {
|
|
1810
|
-
"type": "string",
|
|
1811
|
-
"description": "The compression format of the distribution."
|
|
1812
|
-
},
|
|
1813
|
-
"dcat:packageFormat": {
|
|
1814
|
-
"type": "string",
|
|
1815
|
-
"description": "The package format of the distribution."
|
|
1816
|
-
},
|
|
1817
|
-
"spdx:checksum": {
|
|
1818
|
-
"type": "string",
|
|
1819
|
-
"description": "The checksum property provides a mechanism to verify the data integrity."
|
|
1820
|
-
},
|
|
1821
|
-
"odrl:hasPolicy": {
|
|
1822
|
-
"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
|
|
1823
|
-
}
|
|
1824
|
-
},
|
|
1825
|
-
"required": [
|
|
1826
|
-
"@type"
|
|
1827
|
-
],
|
|
1828
|
-
"additionalProperties": {
|
|
1829
|
-
"anyOf": [
|
|
1830
|
-
{
|
|
1831
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1832
|
-
},
|
|
1833
|
-
{
|
|
1834
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
1835
|
-
},
|
|
1836
|
-
{
|
|
1837
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
1838
|
-
},
|
|
1839
|
-
{
|
|
1840
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1841
|
-
},
|
|
1842
|
-
{
|
|
1843
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
1844
|
-
},
|
|
1845
|
-
{
|
|
1846
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
1847
|
-
},
|
|
1848
|
-
{
|
|
1849
|
-
"type": "array"
|
|
1850
|
-
}
|
|
1851
|
-
]
|
|
1852
|
-
},
|
|
1853
|
-
"description": "Interface for DCAT Distribution. A specific representation of a dataset. A dataset might be available in multiple serializations that may differ in various ways."
|
|
1854
|
-
},
|
|
1855
|
-
"Document": {
|
|
1856
|
-
"type": "object",
|
|
1857
|
-
"properties": {
|
|
1858
|
-
"@context": {
|
|
1859
|
-
"$ref": "#/components/schemas/FoafContextType"
|
|
1860
|
-
},
|
|
1861
|
-
"@id": {
|
|
1862
|
-
"anyOf": [
|
|
1863
|
-
{
|
|
1864
|
-
"type": "string"
|
|
1865
|
-
},
|
|
1866
|
-
{
|
|
1867
|
-
"type": "array",
|
|
1868
|
-
"items": {
|
|
1869
|
-
"type": "string"
|
|
1870
|
-
}
|
|
1871
|
-
}
|
|
1872
|
-
]
|
|
1873
|
-
},
|
|
1874
|
-
"@included": {
|
|
1875
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1876
|
-
},
|
|
1877
|
-
"@graph": {
|
|
1878
|
-
"anyOf": [
|
|
1879
|
-
{
|
|
1880
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1881
|
-
},
|
|
1882
|
-
{
|
|
1883
|
-
"type": "array",
|
|
1884
|
-
"items": {
|
|
1885
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1886
|
-
}
|
|
1887
|
-
}
|
|
1888
|
-
]
|
|
1889
|
-
},
|
|
1890
|
-
"@nest": {
|
|
1891
|
-
"anyOf": [
|
|
1892
|
-
{
|
|
1893
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
1894
|
-
},
|
|
1895
|
-
{
|
|
1896
|
-
"type": "array",
|
|
1897
|
-
"items": {
|
|
1898
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
1899
|
-
}
|
|
1900
|
-
}
|
|
1901
|
-
]
|
|
1902
|
-
},
|
|
1903
|
-
"@type": {
|
|
1904
|
-
"type": "string",
|
|
1905
|
-
"enum": [
|
|
1906
|
-
"Document",
|
|
1907
|
-
"Image"
|
|
1908
|
-
],
|
|
1909
|
-
"description": "Type."
|
|
1910
|
-
},
|
|
1911
|
-
"@reverse": {
|
|
1912
|
-
"type": "object",
|
|
1913
|
-
"additionalProperties": {
|
|
1914
|
-
"type": "string"
|
|
1915
|
-
}
|
|
1916
|
-
},
|
|
1917
|
-
"@index": {
|
|
1918
|
-
"type": "string"
|
|
1919
|
-
},
|
|
1920
|
-
"name": {
|
|
1921
|
-
"type": "string",
|
|
1922
|
-
"description": "A name for some thing."
|
|
1923
|
-
},
|
|
1924
|
-
"title": {
|
|
1925
|
-
"type": "string",
|
|
1926
|
-
"description": "Title (Mr, Mrs, Ms, Dr. etc)"
|
|
1927
|
-
},
|
|
1928
|
-
"mbox": {
|
|
1929
|
-
"type": "string",
|
|
1930
|
-
"description": "A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox"
|
|
1931
|
-
},
|
|
1932
|
-
"homepage": {
|
|
1933
|
-
"type": "string",
|
|
1934
|
-
"description": "A homepage for some thing."
|
|
1935
|
-
},
|
|
1936
|
-
"depiction": {
|
|
1937
|
-
"$ref": "#/components/schemas/Image"
|
|
1938
|
-
},
|
|
1939
|
-
"topic": {
|
|
1940
|
-
"type": "string",
|
|
1941
|
-
"description": "A topic of some page or document."
|
|
1942
|
-
},
|
|
1943
|
-
"primaryTopic": {
|
|
1944
|
-
"description": "Object or array data type",
|
|
1945
|
-
"anyOf": [
|
|
1946
|
-
{
|
|
1947
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1948
|
-
},
|
|
1949
|
-
{
|
|
1950
|
-
"type": "array",
|
|
1951
|
-
"items": {
|
|
1952
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1953
|
-
}
|
|
1954
|
-
}
|
|
1955
|
-
]
|
|
1956
|
-
},
|
|
1957
|
-
"sha1": {
|
|
1958
|
-
"type": "string",
|
|
1959
|
-
"description": "A sha1sum hash, in hex."
|
|
1960
|
-
}
|
|
1961
|
-
},
|
|
1962
|
-
"required": [
|
|
1963
|
-
"@type"
|
|
1964
|
-
],
|
|
1965
|
-
"additionalProperties": {
|
|
1966
|
-
"anyOf": [
|
|
1967
|
-
{
|
|
1968
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1969
|
-
},
|
|
1970
|
-
{
|
|
1971
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
1972
|
-
},
|
|
1973
|
-
{
|
|
1974
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
1975
|
-
},
|
|
1976
|
-
{
|
|
1977
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1978
|
-
},
|
|
1979
|
-
{
|
|
1980
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
1981
|
-
},
|
|
1982
|
-
{
|
|
1983
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
1984
|
-
},
|
|
1985
|
-
{
|
|
1986
|
-
"type": "array"
|
|
1987
|
-
}
|
|
1988
|
-
]
|
|
1989
|
-
},
|
|
1990
|
-
"description": "A FOAF Document"
|
|
1991
|
-
},
|
|
1992
|
-
"DurationType": {
|
|
1993
|
-
"type": "string",
|
|
1994
|
-
"description": "Duration values in ISO 8601 duration format (xsd:duration)."
|
|
1995
|
-
},
|
|
1996
|
-
"Error": {
|
|
1997
|
-
"type": "object",
|
|
1998
|
-
"properties": {
|
|
1999
|
-
"name": {
|
|
2000
|
-
"type": "string",
|
|
2001
|
-
"description": "The name for the error."
|
|
2002
|
-
},
|
|
2003
|
-
"message": {
|
|
2004
|
-
"type": "string",
|
|
2005
|
-
"description": "The message for the error."
|
|
2006
|
-
},
|
|
2007
|
-
"source": {
|
|
2008
|
-
"type": "string",
|
|
2009
|
-
"description": "The source of the error."
|
|
2010
|
-
},
|
|
2011
|
-
"properties": {
|
|
2012
|
-
"type": "object",
|
|
2013
|
-
"additionalProperties": {},
|
|
2014
|
-
"description": "Any additional information for the error."
|
|
2015
|
-
},
|
|
2016
|
-
"stack": {
|
|
2017
|
-
"type": "string",
|
|
2018
|
-
"description": "The stack trace for the error."
|
|
2019
|
-
},
|
|
2020
|
-
"cause": {
|
|
2021
|
-
"$ref": "#/components/schemas/Error"
|
|
2022
|
-
}
|
|
2023
|
-
},
|
|
2024
|
-
"required": [
|
|
2025
|
-
"name",
|
|
2026
|
-
"message"
|
|
2027
|
-
],
|
|
2028
|
-
"additionalProperties": false,
|
|
2029
|
-
"description": "Model to describe serialized error."
|
|
2030
|
-
},
|
|
2031
|
-
"FoafContextType": {
|
|
2032
|
-
"anyOf": [
|
|
2033
|
-
{
|
|
2034
|
-
"type": "string",
|
|
2035
|
-
"const": "https://xmlns.com/foaf/0.1/"
|
|
2036
|
-
},
|
|
2037
|
-
{
|
|
2038
|
-
"type": "array",
|
|
2039
|
-
"items": {
|
|
2040
|
-
"type": "string",
|
|
2041
|
-
"const": "https://xmlns.com/foaf/0.1/"
|
|
2042
|
-
},
|
|
2043
|
-
"minItems": 1,
|
|
2044
|
-
"maxItems": 1
|
|
2045
|
-
},
|
|
2046
|
-
{
|
|
2047
|
-
"type": "array",
|
|
2048
|
-
"minItems": 1,
|
|
2049
|
-
"prefixItems": [
|
|
2050
|
-
{
|
|
2051
|
-
"type": "string",
|
|
2052
|
-
"const": "https://xmlns.com/foaf/0.1/"
|
|
2053
|
-
}
|
|
2054
|
-
],
|
|
2055
|
-
"items": {
|
|
2056
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
2057
|
-
}
|
|
2058
|
-
}
|
|
2059
|
-
],
|
|
2060
|
-
"description": "The FOAF JSON-LD context type."
|
|
2061
|
-
},
|
|
2062
|
-
"Image": {
|
|
2063
|
-
"type": "object",
|
|
2064
|
-
"properties": {
|
|
2065
|
-
"@context": {
|
|
2066
|
-
"$ref": "#/components/schemas/FoafContextType"
|
|
2067
|
-
},
|
|
2068
|
-
"@id": {
|
|
2069
|
-
"anyOf": [
|
|
2070
|
-
{
|
|
2071
|
-
"type": "string"
|
|
2072
|
-
},
|
|
2073
|
-
{
|
|
2074
|
-
"type": "array",
|
|
2075
|
-
"items": {
|
|
2076
|
-
"type": "string"
|
|
2077
|
-
}
|
|
2078
|
-
}
|
|
2079
|
-
]
|
|
2080
|
-
},
|
|
2081
|
-
"@included": {
|
|
2082
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2083
|
-
},
|
|
2084
|
-
"@graph": {
|
|
2085
|
-
"anyOf": [
|
|
2086
|
-
{
|
|
2087
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2088
|
-
},
|
|
2089
|
-
{
|
|
2090
|
-
"type": "array",
|
|
2091
|
-
"items": {
|
|
2092
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2093
|
-
}
|
|
2094
|
-
}
|
|
2095
|
-
]
|
|
2096
|
-
},
|
|
2097
|
-
"@nest": {
|
|
2098
|
-
"anyOf": [
|
|
2099
|
-
{
|
|
2100
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2101
|
-
},
|
|
2102
|
-
{
|
|
2103
|
-
"type": "array",
|
|
2104
|
-
"items": {
|
|
2105
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2106
|
-
}
|
|
2107
|
-
}
|
|
2108
|
-
]
|
|
2109
|
-
},
|
|
2110
|
-
"@type": {
|
|
2111
|
-
"type": "string",
|
|
2112
|
-
"const": "Image",
|
|
2113
|
-
"description": "Type."
|
|
2114
|
-
},
|
|
2115
|
-
"@reverse": {
|
|
2116
|
-
"type": "object",
|
|
2117
|
-
"additionalProperties": {
|
|
2118
|
-
"type": "string"
|
|
2119
|
-
}
|
|
2120
|
-
},
|
|
2121
|
-
"@index": {
|
|
2122
|
-
"type": "string"
|
|
2123
|
-
},
|
|
2124
|
-
"name": {
|
|
2125
|
-
"type": "string",
|
|
2126
|
-
"description": "A name for some thing."
|
|
2127
|
-
},
|
|
2128
|
-
"title": {
|
|
2129
|
-
"type": "string",
|
|
2130
|
-
"description": "Title (Mr, Mrs, Ms, Dr. etc)"
|
|
2131
|
-
},
|
|
2132
|
-
"mbox": {
|
|
2133
|
-
"type": "string",
|
|
2134
|
-
"description": "A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox"
|
|
2135
|
-
},
|
|
2136
|
-
"homepage": {
|
|
2137
|
-
"type": "string",
|
|
2138
|
-
"description": "A homepage for some thing."
|
|
2139
|
-
},
|
|
2140
|
-
"depiction": {
|
|
2141
|
-
"$ref": "#/components/schemas/Image"
|
|
2142
|
-
},
|
|
2143
|
-
"topic": {
|
|
2144
|
-
"type": "string",
|
|
2145
|
-
"description": "A topic of some page or document."
|
|
2146
|
-
},
|
|
2147
|
-
"primaryTopic": {
|
|
2148
|
-
"description": "Object or array data type",
|
|
2149
|
-
"anyOf": [
|
|
2150
|
-
{
|
|
2151
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2152
|
-
},
|
|
2153
|
-
{
|
|
2154
|
-
"type": "array",
|
|
2155
|
-
"items": {
|
|
2156
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2157
|
-
}
|
|
2158
|
-
}
|
|
2159
|
-
]
|
|
2160
|
-
},
|
|
2161
|
-
"sha1": {
|
|
2162
|
-
"type": "string",
|
|
2163
|
-
"description": "A sha1sum hash, in hex."
|
|
2164
|
-
},
|
|
2165
|
-
"depicts": {
|
|
2166
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2167
|
-
},
|
|
2168
|
-
"thumbnail": {
|
|
2169
|
-
"$ref": "#/components/schemas/Image"
|
|
2170
|
-
}
|
|
2171
|
-
},
|
|
2172
|
-
"required": [
|
|
2173
|
-
"@type"
|
|
2174
|
-
],
|
|
2175
|
-
"additionalProperties": {
|
|
2176
|
-
"anyOf": [
|
|
2177
|
-
{
|
|
2178
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
2179
|
-
},
|
|
2180
|
-
{
|
|
2181
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
2182
|
-
},
|
|
2183
|
-
{
|
|
2184
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
2185
|
-
},
|
|
2186
|
-
{
|
|
2187
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2188
|
-
},
|
|
2189
|
-
{
|
|
2190
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
2191
|
-
},
|
|
2192
|
-
{
|
|
2193
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
2194
|
-
},
|
|
2195
|
-
{
|
|
2196
|
-
"type": "array"
|
|
2197
|
-
}
|
|
2198
|
-
]
|
|
2199
|
-
},
|
|
2200
|
-
"description": "A FOAF image."
|
|
2201
|
-
},
|
|
2202
|
-
"LiteralType": {
|
|
2203
|
-
"anyOf": [
|
|
2204
|
-
{
|
|
2205
|
-
"type": "string"
|
|
2206
|
-
},
|
|
2207
|
-
{
|
|
2208
|
-
"type": "array",
|
|
2209
|
-
"items": {
|
|
2210
|
-
"type": "string"
|
|
2211
|
-
}
|
|
2212
|
-
}
|
|
2213
|
-
],
|
|
2214
|
-
"description": "Literal values can be strings or arrays of strings (for multi-valued properties)."
|
|
2215
|
-
},
|
|
2216
|
-
"NonNegativeIntegerType": {
|
|
2217
|
-
"type": "number",
|
|
2218
|
-
"description": "Non-negative integer values (xsd:nonNegativeInteger)."
|
|
2219
|
-
},
|
|
2220
|
-
"PeriodOfTime": {
|
|
2221
|
-
"type": "object",
|
|
2222
|
-
"properties": {
|
|
2223
|
-
"@context": {
|
|
2224
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
2225
|
-
},
|
|
2226
|
-
"@id": {
|
|
2227
|
-
"anyOf": [
|
|
2228
|
-
{
|
|
2229
|
-
"type": "string"
|
|
2230
|
-
},
|
|
2231
|
-
{
|
|
2232
|
-
"type": "array",
|
|
2233
|
-
"items": {
|
|
2234
|
-
"type": "string"
|
|
2235
|
-
}
|
|
2236
|
-
}
|
|
2237
|
-
]
|
|
2238
|
-
},
|
|
2239
|
-
"@included": {
|
|
2240
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2241
|
-
},
|
|
2242
|
-
"@graph": {
|
|
2243
|
-
"anyOf": [
|
|
2244
|
-
{
|
|
2245
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2246
|
-
},
|
|
2247
|
-
{
|
|
2248
|
-
"type": "array",
|
|
2249
|
-
"items": {
|
|
2250
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2251
|
-
}
|
|
2252
|
-
}
|
|
2253
|
-
]
|
|
2254
|
-
},
|
|
2255
|
-
"@nest": {
|
|
2256
|
-
"anyOf": [
|
|
2257
|
-
{
|
|
2258
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2259
|
-
},
|
|
2260
|
-
{
|
|
2261
|
-
"type": "array",
|
|
2262
|
-
"items": {
|
|
2263
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2264
|
-
}
|
|
2265
|
-
}
|
|
2266
|
-
]
|
|
2267
|
-
},
|
|
2268
|
-
"@type": {
|
|
2269
|
-
"type": "string",
|
|
2270
|
-
"const": "PeriodOfTime",
|
|
2271
|
-
"description": "The type identifier for PeriodOfTime."
|
|
2272
|
-
},
|
|
2273
|
-
"@reverse": {
|
|
2274
|
-
"type": "object",
|
|
2275
|
-
"additionalProperties": {
|
|
2276
|
-
"type": "string"
|
|
2277
|
-
}
|
|
2278
|
-
},
|
|
2279
|
-
"@index": {
|
|
2280
|
-
"type": "string"
|
|
2281
|
-
},
|
|
2282
|
-
"dcat:startDate": {
|
|
2283
|
-
"type": "string",
|
|
2284
|
-
"description": "The start date of the period."
|
|
2285
|
-
},
|
|
2286
|
-
"dcat:endDate": {
|
|
2287
|
-
"type": "string",
|
|
2288
|
-
"description": "The end date of the period."
|
|
2289
|
-
},
|
|
2290
|
-
"time:hasBeginning": {
|
|
2291
|
-
"type": "string",
|
|
2292
|
-
"description": "The beginning of a period or interval."
|
|
2293
|
-
},
|
|
2294
|
-
"time:hasEnd": {
|
|
2295
|
-
"type": "string",
|
|
2296
|
-
"description": "The end of a period or interval."
|
|
2297
|
-
}
|
|
2298
|
-
},
|
|
2299
|
-
"additionalProperties": {
|
|
2300
|
-
"anyOf": [
|
|
2301
|
-
{
|
|
2302
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
2303
|
-
},
|
|
2304
|
-
{
|
|
2305
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
2306
|
-
},
|
|
2307
|
-
{
|
|
2308
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
2309
|
-
},
|
|
2310
|
-
{
|
|
2311
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2312
|
-
},
|
|
2313
|
-
{
|
|
2314
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
2315
|
-
},
|
|
2316
|
-
{
|
|
2317
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
2318
|
-
},
|
|
2319
|
-
{
|
|
2320
|
-
"type": "array"
|
|
2321
|
-
}
|
|
2322
|
-
]
|
|
2323
|
-
},
|
|
2324
|
-
"description": "Interface for Dublin Core Terms Period of Time. An interval of time that is named or defined by its start and end dates."
|
|
2325
|
-
},
|
|
2326
|
-
"Relationship": {
|
|
2327
|
-
"type": "object",
|
|
2328
|
-
"properties": {
|
|
2329
|
-
"@context": {
|
|
2330
|
-
"$ref": "#/components/schemas/DcatContextType"
|
|
2331
|
-
},
|
|
2332
|
-
"@id": {
|
|
2333
|
-
"anyOf": [
|
|
2334
|
-
{
|
|
2335
|
-
"type": "string"
|
|
2336
|
-
},
|
|
2337
|
-
{
|
|
2338
|
-
"type": "array",
|
|
2339
|
-
"items": {
|
|
2340
|
-
"type": "string"
|
|
2341
|
-
}
|
|
2342
|
-
}
|
|
2343
|
-
]
|
|
2344
|
-
},
|
|
2345
|
-
"@included": {
|
|
2346
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2347
|
-
},
|
|
2348
|
-
"@graph": {
|
|
2349
|
-
"anyOf": [
|
|
2350
|
-
{
|
|
2351
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2352
|
-
},
|
|
2353
|
-
{
|
|
2354
|
-
"type": "array",
|
|
2355
|
-
"items": {
|
|
2356
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2357
|
-
}
|
|
2358
|
-
}
|
|
2359
|
-
]
|
|
2360
|
-
},
|
|
2361
|
-
"@nest": {
|
|
2362
|
-
"anyOf": [
|
|
2363
|
-
{
|
|
2364
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2365
|
-
},
|
|
2366
|
-
{
|
|
2367
|
-
"type": "array",
|
|
2368
|
-
"items": {
|
|
2369
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2370
|
-
}
|
|
2371
|
-
}
|
|
2372
|
-
]
|
|
2373
|
-
},
|
|
2374
|
-
"@type": {
|
|
2375
|
-
"type": "string",
|
|
2376
|
-
"const": "Relationship",
|
|
2377
|
-
"description": "The type identifier, typically \"Relationship\"."
|
|
2378
|
-
},
|
|
2379
|
-
"@reverse": {
|
|
2380
|
-
"type": "object",
|
|
2381
|
-
"additionalProperties": {
|
|
2382
|
-
"type": "string"
|
|
2383
|
-
}
|
|
2384
|
-
},
|
|
2385
|
-
"@index": {
|
|
2386
|
-
"type": "string"
|
|
2387
|
-
},
|
|
2388
|
-
"dcterms:relation": {
|
|
2389
|
-
"type": "string",
|
|
2390
|
-
"description": "The link to a related resource."
|
|
2391
|
-
},
|
|
2392
|
-
"dcat:hadRole": {
|
|
2393
|
-
"$ref": "#/components/schemas/Role"
|
|
2394
|
-
}
|
|
2395
|
-
},
|
|
2396
|
-
"required": [
|
|
2397
|
-
"@context",
|
|
2398
|
-
"@type"
|
|
2399
|
-
],
|
|
2400
|
-
"additionalProperties": {
|
|
2401
|
-
"anyOf": [
|
|
2402
|
-
{
|
|
2403
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
2404
|
-
},
|
|
2405
|
-
{
|
|
2406
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
2407
|
-
},
|
|
2408
|
-
{
|
|
2409
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
2410
|
-
},
|
|
2411
|
-
{
|
|
2412
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2413
|
-
},
|
|
2414
|
-
{
|
|
2415
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
2416
|
-
},
|
|
2417
|
-
{
|
|
2418
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
2419
|
-
},
|
|
2420
|
-
{
|
|
2421
|
-
"type": "array"
|
|
2422
|
-
}
|
|
2423
|
-
]
|
|
2424
|
-
},
|
|
2425
|
-
"description": "Interface for DCAT Relationship. An association class for attaching additional information to a relationship between DCAT Resources."
|
|
2426
|
-
},
|
|
2427
|
-
"Resource": {
|
|
2428
|
-
"type": "object",
|
|
2429
|
-
"properties": {
|
|
2430
|
-
"@context": {
|
|
2431
|
-
"$ref": "#/components/schemas/DcatContextType"
|
|
2432
|
-
},
|
|
2433
|
-
"@id": {
|
|
2434
|
-
"anyOf": [
|
|
2435
|
-
{
|
|
2436
|
-
"type": "string"
|
|
2437
|
-
},
|
|
2438
|
-
{
|
|
2439
|
-
"type": "array",
|
|
2440
|
-
"items": {
|
|
2441
|
-
"type": "string"
|
|
2442
|
-
}
|
|
2443
|
-
}
|
|
2444
|
-
]
|
|
2445
|
-
},
|
|
2446
|
-
"@included": {
|
|
2447
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2448
|
-
},
|
|
2449
|
-
"@graph": {
|
|
2450
|
-
"anyOf": [
|
|
2451
|
-
{
|
|
2452
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2453
|
-
},
|
|
2454
|
-
{
|
|
2455
|
-
"type": "array",
|
|
2456
|
-
"items": {
|
|
2457
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2458
|
-
}
|
|
2459
|
-
}
|
|
2460
|
-
]
|
|
2461
|
-
},
|
|
2462
|
-
"@nest": {
|
|
2463
|
-
"anyOf": [
|
|
2464
|
-
{
|
|
2465
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2466
|
-
},
|
|
2467
|
-
{
|
|
2468
|
-
"type": "array",
|
|
2469
|
-
"items": {
|
|
2470
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2471
|
-
}
|
|
2472
|
-
}
|
|
2473
|
-
]
|
|
2474
|
-
},
|
|
2475
|
-
"@type": {
|
|
2476
|
-
"type": "string",
|
|
2477
|
-
"enum": [
|
|
2478
|
-
"Resource",
|
|
2479
|
-
"Dataset",
|
|
2480
|
-
"DataService",
|
|
2481
|
-
"Catalog",
|
|
2482
|
-
"DatasetSeries"
|
|
2483
|
-
],
|
|
2484
|
-
"description": "The type of the resource. Typically \"Catalog\", \"Dataset\", \"DataService\", \"DatasetSeries\", or the base \"Resource\"."
|
|
2485
|
-
},
|
|
2486
|
-
"@reverse": {
|
|
2487
|
-
"type": "object",
|
|
2488
|
-
"additionalProperties": {
|
|
2489
|
-
"type": "string"
|
|
2490
|
-
}
|
|
2491
|
-
},
|
|
2492
|
-
"@index": {
|
|
2493
|
-
"type": "string"
|
|
2494
|
-
},
|
|
2495
|
-
"dcterms:title": {
|
|
2496
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
2497
|
-
},
|
|
2498
|
-
"dcterms:description": {
|
|
2499
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
2500
|
-
},
|
|
2501
|
-
"dcterms:identifier": {
|
|
2502
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
2503
|
-
},
|
|
2504
|
-
"dcterms:issued": {
|
|
2505
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
2506
|
-
},
|
|
2507
|
-
"dcterms:modified": {
|
|
2508
|
-
"$ref": "#/components/schemas/DateTimeType"
|
|
2509
|
-
},
|
|
2510
|
-
"dcterms:language": {
|
|
2511
|
-
"description": "Object or array data type",
|
|
2512
|
-
"anyOf": [
|
|
2513
|
-
{
|
|
2514
|
-
"type": "string"
|
|
2515
|
-
},
|
|
2516
|
-
{
|
|
2517
|
-
"type": "array",
|
|
2518
|
-
"items": {
|
|
2519
|
-
"type": "string"
|
|
2520
|
-
}
|
|
2521
|
-
}
|
|
2522
|
-
]
|
|
2523
|
-
},
|
|
2524
|
-
"dcterms:publisher": {
|
|
2525
|
-
"anyOf": [
|
|
2526
|
-
{
|
|
2527
|
-
"$ref": "#/components/schemas/Agent"
|
|
2528
|
-
},
|
|
2529
|
-
{
|
|
2530
|
-
"type": "string"
|
|
2531
|
-
}
|
|
2532
|
-
],
|
|
2533
|
-
"description": "An entity responsible for making the resource available."
|
|
2534
|
-
},
|
|
2535
|
-
"dcterms:creator": {
|
|
2536
|
-
"$ref": "#/components/schemas/Agent"
|
|
2537
|
-
},
|
|
2538
|
-
"dcterms:accessRights": {
|
|
2539
|
-
"anyOf": [
|
|
2540
|
-
{
|
|
2541
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2542
|
-
},
|
|
2543
|
-
{
|
|
2544
|
-
"type": "string"
|
|
2545
|
-
}
|
|
2546
|
-
],
|
|
2547
|
-
"description": "Information about who can access the resource or an indication of its security status."
|
|
2548
|
-
},
|
|
2549
|
-
"dcterms:license": {
|
|
2550
|
-
"anyOf": [
|
|
2551
|
-
{
|
|
2552
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2553
|
-
},
|
|
2554
|
-
{
|
|
2555
|
-
"type": "string"
|
|
2556
|
-
}
|
|
2557
|
-
],
|
|
2558
|
-
"description": "A legal document under which the resource is made available."
|
|
2559
|
-
},
|
|
2560
|
-
"dcterms:rights": {
|
|
2561
|
-
"anyOf": [
|
|
2562
|
-
{
|
|
2563
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2564
|
-
},
|
|
2565
|
-
{
|
|
2566
|
-
"type": "string"
|
|
2567
|
-
}
|
|
2568
|
-
],
|
|
2569
|
-
"description": "Information about rights held in and over the resource."
|
|
2570
|
-
},
|
|
2571
|
-
"dcterms:conformsTo": {
|
|
2572
|
-
"description": "Object or array data type",
|
|
2573
|
-
"anyOf": [
|
|
2574
|
-
{
|
|
2575
|
-
"type": "string"
|
|
2576
|
-
},
|
|
2577
|
-
{
|
|
2578
|
-
"type": "array",
|
|
2579
|
-
"items": {
|
|
2580
|
-
"type": "string"
|
|
2581
|
-
}
|
|
2582
|
-
}
|
|
2583
|
-
]
|
|
2584
|
-
},
|
|
2585
|
-
"dcterms:type": {
|
|
2586
|
-
"type": "string",
|
|
2587
|
-
"description": "The nature or genre of the resource."
|
|
2588
|
-
},
|
|
2589
|
-
"dcat:contactPoint": {
|
|
2590
|
-
"anyOf": [
|
|
2591
|
-
{
|
|
2592
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2593
|
-
},
|
|
2594
|
-
{
|
|
2595
|
-
"type": "string"
|
|
2596
|
-
}
|
|
2597
|
-
],
|
|
2598
|
-
"description": "Relevant contact information for the catalogued resource."
|
|
2599
|
-
},
|
|
2600
|
-
"dcat:keyword": {
|
|
2601
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
2602
|
-
},
|
|
2603
|
-
"dcat:theme": {
|
|
2604
|
-
"description": "Object or array data type",
|
|
2605
|
-
"anyOf": [
|
|
2606
|
-
{
|
|
2607
|
-
"type": "string"
|
|
2608
|
-
},
|
|
2609
|
-
{
|
|
2610
|
-
"type": "array",
|
|
2611
|
-
"items": {
|
|
2612
|
-
"type": "string"
|
|
2613
|
-
}
|
|
2614
|
-
}
|
|
2615
|
-
]
|
|
2616
|
-
},
|
|
2617
|
-
"dcat:landingPage": {
|
|
2618
|
-
"description": "Object or array data type",
|
|
2619
|
-
"anyOf": [
|
|
2620
|
-
{
|
|
2621
|
-
"type": "string"
|
|
2622
|
-
},
|
|
2623
|
-
{
|
|
2624
|
-
"type": "array",
|
|
2625
|
-
"items": {
|
|
2626
|
-
"type": "string"
|
|
2627
|
-
}
|
|
2628
|
-
}
|
|
2629
|
-
]
|
|
2630
|
-
},
|
|
2631
|
-
"dcat:qualifiedRelation": {
|
|
2632
|
-
"anyOf": [
|
|
2633
|
-
{
|
|
2634
|
-
"$ref": "#/components/schemas/Relationship"
|
|
2635
|
-
},
|
|
2636
|
-
{
|
|
2637
|
-
"type": "string"
|
|
2638
|
-
}
|
|
2639
|
-
],
|
|
2640
|
-
"description": "Link to a description of a relationship with another resource."
|
|
2641
|
-
},
|
|
2642
|
-
"odrl:hasPolicy": {
|
|
2643
|
-
"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
|
|
2644
|
-
}
|
|
2645
|
-
},
|
|
2646
|
-
"required": [
|
|
2647
|
-
"@type"
|
|
2648
|
-
],
|
|
2649
|
-
"additionalProperties": {
|
|
2650
|
-
"anyOf": [
|
|
2651
|
-
{
|
|
2652
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
2653
|
-
},
|
|
2654
|
-
{
|
|
2655
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
2656
|
-
},
|
|
2657
|
-
{
|
|
2658
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
2659
|
-
},
|
|
2660
|
-
{
|
|
2661
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2662
|
-
},
|
|
2663
|
-
{
|
|
2664
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
2665
|
-
},
|
|
2666
|
-
{
|
|
2667
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
2668
|
-
},
|
|
2669
|
-
{
|
|
2670
|
-
"type": "array"
|
|
2671
|
-
}
|
|
2672
|
-
]
|
|
2673
|
-
},
|
|
2674
|
-
"description": "Base interface for DCAT catalogued resources. This is the parent class of dcat:Dataset, dcat:DataService, and dcat:Catalog."
|
|
2675
|
-
},
|
|
2676
|
-
"Role": {
|
|
2677
|
-
"type": "object",
|
|
2678
|
-
"properties": {
|
|
2679
|
-
"@context": {
|
|
2680
|
-
"$ref": "#/components/schemas/DcatContextType"
|
|
2681
|
-
},
|
|
2682
|
-
"@id": {
|
|
2683
|
-
"anyOf": [
|
|
2684
|
-
{
|
|
2685
|
-
"type": "string"
|
|
2686
|
-
},
|
|
2687
|
-
{
|
|
2688
|
-
"type": "array",
|
|
2689
|
-
"items": {
|
|
2690
|
-
"type": "string"
|
|
2691
|
-
}
|
|
2692
|
-
}
|
|
2693
|
-
]
|
|
2694
|
-
},
|
|
2695
|
-
"@included": {
|
|
2696
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2697
|
-
},
|
|
2698
|
-
"@graph": {
|
|
2699
|
-
"anyOf": [
|
|
2700
|
-
{
|
|
2701
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2702
|
-
},
|
|
2703
|
-
{
|
|
2704
|
-
"type": "array",
|
|
2705
|
-
"items": {
|
|
2706
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
2707
|
-
}
|
|
2708
|
-
}
|
|
2709
|
-
]
|
|
2710
|
-
},
|
|
2711
|
-
"@nest": {
|
|
2712
|
-
"anyOf": [
|
|
2713
|
-
{
|
|
2714
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2715
|
-
},
|
|
2716
|
-
{
|
|
2717
|
-
"type": "array",
|
|
2718
|
-
"items": {
|
|
2719
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
2720
|
-
}
|
|
2721
|
-
}
|
|
2722
|
-
]
|
|
2723
|
-
},
|
|
2724
|
-
"@type": {
|
|
2725
|
-
"type": "string",
|
|
2726
|
-
"const": "Role",
|
|
2727
|
-
"description": "The type identifier, typically \"Role\"."
|
|
2728
|
-
},
|
|
2729
|
-
"@reverse": {
|
|
2730
|
-
"type": "object",
|
|
2731
|
-
"additionalProperties": {
|
|
2732
|
-
"type": "string"
|
|
2733
|
-
}
|
|
2734
|
-
},
|
|
2735
|
-
"@index": {
|
|
2736
|
-
"type": "string"
|
|
2737
|
-
},
|
|
2738
|
-
"dcterms:title": {
|
|
2739
|
-
"$ref": "#/components/schemas/LiteralType"
|
|
506
|
+
"cause": {
|
|
507
|
+
"$ref": "#/components/schemas/Error"
|
|
2740
508
|
}
|
|
2741
509
|
},
|
|
2742
510
|
"required": [
|
|
2743
|
-
"
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
"anyOf": [
|
|
2747
|
-
{
|
|
2748
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
2749
|
-
},
|
|
2750
|
-
{
|
|
2751
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
2752
|
-
},
|
|
2753
|
-
{
|
|
2754
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
2755
|
-
},
|
|
2756
|
-
{
|
|
2757
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
2758
|
-
},
|
|
2759
|
-
{
|
|
2760
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
2761
|
-
},
|
|
2762
|
-
{
|
|
2763
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
2764
|
-
},
|
|
2765
|
-
{
|
|
2766
|
-
"type": "array"
|
|
2767
|
-
}
|
|
2768
|
-
]
|
|
2769
|
-
},
|
|
2770
|
-
"description": "Interface for DCAT Role. A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships."
|
|
511
|
+
"name",
|
|
512
|
+
"message"
|
|
513
|
+
]
|
|
2771
514
|
}
|
|
2772
515
|
},
|
|
2773
516
|
"securitySchemes": {
|