@twin.org/standards-w3c-dcat 0.0.3-next.9 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. package/README.md +1 -1
  2. package/dist/es/dataTypes/dcatDataTypes.js +80 -49
  3. package/dist/es/dataTypes/dcatDataTypes.js.map +1 -1
  4. package/dist/es/index.js +6 -2
  5. package/dist/es/index.js.map +1 -1
  6. package/dist/es/models/IDcatCatalog.js.map +1 -1
  7. package/dist/es/models/IDcatCatalogBase.js +2 -0
  8. package/dist/es/models/IDcatCatalogBase.js.map +1 -0
  9. package/dist/es/models/IDcatCatalogRecord.js.map +1 -1
  10. package/dist/es/models/IDcatCatalogRecordBase.js +2 -0
  11. package/dist/es/models/IDcatCatalogRecordBase.js.map +1 -0
  12. package/dist/es/models/IDcatDataService.js.map +1 -1
  13. package/dist/es/models/IDcatDataServiceBase.js +2 -0
  14. package/dist/es/models/IDcatDataServiceBase.js.map +1 -0
  15. package/dist/es/models/IDcatDataset.js.map +1 -1
  16. package/dist/es/models/IDcatDatasetBase.js +2 -0
  17. package/dist/es/models/IDcatDatasetBase.js.map +1 -0
  18. package/dist/es/models/IDcatDatasetSeries.js.map +1 -1
  19. package/dist/es/models/IDcatDistribution.js.map +1 -1
  20. package/dist/es/models/IDcatDistributionBase.js +2 -0
  21. package/dist/es/models/IDcatDistributionBase.js.map +1 -0
  22. package/dist/es/models/IDcatRelationship.js.map +1 -1
  23. package/dist/es/models/IDcatResource.js.map +1 -1
  24. package/dist/es/models/IDcatResourceBase.js +2 -0
  25. package/dist/es/models/IDcatResourceBase.js.map +1 -0
  26. package/dist/es/models/IDcatRole.js.map +1 -1
  27. package/dist/es/models/dcatContextType.js.map +1 -1
  28. package/dist/es/models/dcatContexts.js +15 -19
  29. package/dist/es/models/dcatContexts.js.map +1 -1
  30. package/dist/es/schemas/DcatCatalog.json +10 -489
  31. package/dist/es/schemas/DcatCatalogBase.json +109 -0
  32. package/dist/es/schemas/DcatCatalogRecord.json +10 -210
  33. package/dist/es/schemas/DcatCatalogRecordBase.json +76 -0
  34. package/dist/es/schemas/DcatContextType.json +30 -0
  35. package/dist/es/schemas/DcatDataService.json +10 -356
  36. package/dist/es/schemas/DcatDataServiceBase.json +43 -0
  37. package/dist/es/schemas/DcatDataset.json +10 -405
  38. package/dist/es/schemas/DcatDatasetBase.json +94 -0
  39. package/dist/es/schemas/DcatDatasetSeries.json +17 -394
  40. package/dist/es/schemas/DcatDistribution.json +10 -266
  41. package/dist/es/schemas/DcatDistributionBase.json +134 -0
  42. package/dist/es/schemas/DcatRelationship.json +11 -170
  43. package/dist/es/schemas/DcatResource.json +10 -340
  44. package/dist/es/schemas/DcatResourceBase.json +663 -0
  45. package/dist/es/schemas/DcatRole.json +15 -167
  46. package/dist/types/dataTypes/dcatDataTypes.d.ts +0 -1
  47. package/dist/types/index.d.ts +6 -2
  48. package/dist/types/models/IDcatCatalog.d.ts +5 -43
  49. package/dist/types/models/IDcatCatalogBase.d.ts +54 -0
  50. package/dist/types/models/IDcatCatalogRecord.d.ts +2 -40
  51. package/dist/types/models/IDcatCatalogRecordBase.d.ts +51 -0
  52. package/dist/types/models/IDcatDataService.d.ts +5 -22
  53. package/dist/types/models/IDcatDataServiceBase.d.ts +31 -0
  54. package/dist/types/models/IDcatDataset.d.ts +5 -51
  55. package/dist/types/models/IDcatDatasetBase.d.ts +60 -0
  56. package/dist/types/models/IDcatDatasetSeries.d.ts +6 -0
  57. package/dist/types/models/IDcatDistribution.d.ts +2 -110
  58. package/dist/types/models/IDcatDistributionBase.d.ts +123 -0
  59. package/dist/types/models/IDcatRelationship.d.ts +2 -2
  60. package/dist/types/models/IDcatResource.d.ts +3 -109
  61. package/dist/types/models/IDcatResourceBase.d.ts +120 -0
  62. package/dist/types/models/IDcatRole.d.ts +8 -5
  63. package/dist/types/models/dcatContextType.d.ts +4 -4
  64. package/dist/types/models/dcatContexts.d.ts +15 -19
  65. package/docs/changelog.md +1125 -11
  66. package/docs/examples.md +25 -1
  67. package/docs/reference/classes/DcatDataTypes.md +2 -3
  68. package/docs/reference/index.md +6 -11
  69. package/docs/reference/interfaces/IDcatCatalog.md +138 -106
  70. package/docs/reference/interfaces/IDcatCatalogBase.md +558 -0
  71. package/docs/reference/interfaces/IDcatCatalogRecord.md +53 -25
  72. package/docs/reference/interfaces/IDcatCatalogRecordBase.md +101 -0
  73. package/docs/reference/interfaces/IDcatDataService.md +90 -74
  74. package/docs/reference/interfaces/IDcatDataServiceBase.md +382 -0
  75. package/docs/reference/interfaces/IDcatDataset.md +120 -85
  76. package/docs/reference/interfaces/IDcatDatasetBase.md +443 -0
  77. package/docs/reference/interfaces/IDcatDatasetSeries.md +88 -68
  78. package/docs/reference/interfaces/IDcatDistribution.md +137 -53
  79. package/docs/reference/interfaces/IDcatDistributionBase.md +269 -0
  80. package/docs/reference/interfaces/IDcatRelationship.md +6 -22
  81. package/docs/reference/interfaces/IDcatResource.md +132 -57
  82. package/docs/reference/interfaces/IDcatResourceBase.md +260 -0
  83. package/docs/reference/interfaces/IDcatRole.md +11 -19
  84. package/docs/reference/type-aliases/DcatContextType.md +4 -4
  85. package/docs/reference/variables/DcatClasses.md +9 -9
  86. package/docs/reference/variables/DcatContexts.md +21 -33
  87. package/docs/reference/variables/DcatRelationshipType.md +9 -9
  88. package/package.json +10 -10
  89. package/dist/es/models/types/dcatContextFreeTypes.js +0 -4
  90. package/dist/es/models/types/dcatContextFreeTypes.js.map +0 -1
  91. package/dist/es/models/types/dcatPropertyTypes.js +0 -4
  92. package/dist/es/models/types/dcatPropertyTypes.js.map +0 -1
  93. package/dist/types/models/types/dcatContextFreeTypes.d.ts +0 -40
  94. package/dist/types/models/types/dcatPropertyTypes.d.ts +0 -29
  95. package/docs/reference/type-aliases/CatalogOptionalContext.md +0 -11
  96. package/docs/reference/type-aliases/CatalogRecordOptionalContext.md +0 -11
  97. package/docs/reference/type-aliases/DataServiceOptionalContext.md +0 -11
  98. package/docs/reference/type-aliases/DatasetOptionalContext.md +0 -11
  99. package/docs/reference/type-aliases/DcatDateTimeType.md +0 -6
  100. package/docs/reference/type-aliases/DcatDecimalType.md +0 -5
  101. package/docs/reference/type-aliases/DcatDurationType.md +0 -5
  102. package/docs/reference/type-aliases/DcatIriType.md +0 -5
  103. package/docs/reference/type-aliases/DcatLiteralType.md +0 -5
  104. package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +0 -5
  105. package/docs/reference/type-aliases/DistributionOptionalContext.md +0 -11
@@ -1,500 +1,21 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "https://schema.twindev.org/w3c-dcat/DcatCatalog",
4
- "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.",
4
+ "title": "DcatCatalog",
5
+ "description": "Interface for DCAT Catalog.\nA curated collection of metadata about resources (datasets and data services).\nNote: dcat:Catalog is a sub-class of dcat:Dataset per the W3C spec.",
5
6
  "type": "object",
6
7
  "properties": {
7
8
  "@context": {
8
- "description": "The DCAT JSON-LD context type. Supports the DCAT context URL or arrays with additional context definitions.",
9
- "type": "object",
10
- "additionalProperties": {
11
- "anyOf": [
12
- {
13
- "$ref": "https://schema.twindev.org/json-ld/JsonLdExpandedTermDefinition"
14
- },
15
- {
16
- "type": [
17
- "null",
18
- "string"
19
- ]
20
- }
21
- ]
22
- },
23
- "properties": {
24
- "@base": {
25
- "type": [
26
- "string",
27
- "null"
28
- ]
29
- },
30
- "@direction": {
31
- "type": [
32
- "string",
33
- "null"
34
- ],
35
- "enum": [
36
- "ltr",
37
- "rtl",
38
- null
39
- ]
40
- },
41
- "@import": {
42
- "type": "string"
43
- },
44
- "@language": {
45
- "type": "string"
46
- },
47
- "@propagate": {
48
- "type": "boolean"
49
- },
50
- "@protected": {
51
- "type": "boolean"
52
- },
53
- "@type": {
54
- "type": "object",
55
- "properties": {
56
- "@container": {
57
- "type": "string",
58
- "const": "@set"
59
- },
60
- "@protected": {
61
- "type": "boolean"
62
- }
63
- },
64
- "required": [
65
- "@container"
66
- ],
67
- "additionalProperties": false
68
- },
69
- "@version": {
70
- "type": "string",
71
- "const": "1.1"
72
- },
73
- "@vocab": {
74
- "type": [
75
- "string",
76
- "null"
77
- ]
78
- },
79
- "dcat": {
80
- "type": "string",
81
- "const": "http://www.w3.org/ns/dcat#"
82
- },
83
- "dcterms": {
84
- "type": "string",
85
- "const": "http://purl.org/dc/terms/"
86
- },
87
- "odrl": {
88
- "type": "string",
89
- "const": "http://www.w3.org/ns/odrl/2/"
90
- },
91
- "foaf": {
92
- "type": "string",
93
- "const": "https://xmlns.com/foaf/0.1/"
94
- }
95
- },
96
- "required": [
97
- "dcat",
98
- "dcterms"
99
- ]
100
- },
101
- "@id": {
102
- "anyOf": [
103
- {
104
- "type": "string"
105
- },
106
- {
107
- "type": "array",
108
- "items": {
109
- "type": "string"
110
- }
111
- }
112
- ]
113
- },
114
- "@included": {
115
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
116
- },
117
- "@graph": {
118
- "anyOf": [
119
- {
120
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
121
- },
122
- {
123
- "type": "array",
124
- "items": {
125
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
126
- }
127
- }
128
- ]
129
- },
130
- "@nest": {
131
- "anyOf": [
132
- {
133
- "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
134
- },
135
- {
136
- "type": "array",
137
- "items": {
138
- "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
139
- }
140
- }
141
- ]
142
- },
143
- "@type": {
144
- "type": "string",
145
- "const": "dcat:Catalog",
146
- "description": "The type identifier, typically \"Catalog\"."
147
- },
148
- "@reverse": {
149
- "type": "object",
150
- "additionalProperties": {
151
- "type": "string"
152
- }
153
- },
154
- "@index": {
155
- "type": "string"
156
- },
157
- "dcterms:title": {
158
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatLiteralType",
159
- "description": "A name given to the resource."
160
- },
161
- "dcterms:description": {
162
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatLiteralType",
163
- "description": "A free-text account of the resource."
164
- },
165
- "dcterms:identifier": {
166
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatLiteralType",
167
- "description": "A unique identifier of the resource."
168
- },
169
- "dcterms:issued": {
170
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatDateTimeType",
171
- "description": "Date of formal issuance (publication) of the resource."
172
- },
173
- "dcterms:modified": {
174
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatDateTimeType",
175
- "description": "Most recent date on which the resource was changed, updated or modified."
176
- },
177
- "dcterms:language": {
178
- "description": "Object or array data type",
179
- "anyOf": [
180
- {
181
- "type": "string"
182
- },
183
- {
184
- "type": "array",
185
- "items": {
186
- "type": "string"
187
- }
188
- }
189
- ]
190
- },
191
- "dcterms:publisher": {
192
- "anyOf": [
193
- {
194
- "$ref": "https://schema.twindev.org/w3c-dcat/FoafAgent"
195
- },
196
- {
197
- "type": "string"
198
- }
199
- ],
200
- "description": "An entity responsible for making the resource available."
201
- },
202
- "dcterms:creator": {
203
- "$ref": "https://schema.twindev.org/w3c-dcat/FoafAgent",
204
- "description": "An entity responsible for producing the resource."
205
- },
206
- "dcterms:accessRights": {
207
- "anyOf": [
208
- {
209
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
210
- },
211
- {
212
- "type": "string"
213
- }
214
- ],
215
- "description": "Information about who can access the resource or an indication of its security status."
216
- },
217
- "dcterms:license": {
218
- "anyOf": [
219
- {
220
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
221
- },
222
- {
223
- "type": "string"
224
- }
225
- ],
226
- "description": "A legal document under which the resource is made available."
227
- },
228
- "dcterms:rights": {
229
- "anyOf": [
230
- {
231
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
232
- },
233
- {
234
- "type": "string"
235
- }
236
- ],
237
- "description": "Information about rights held in and over the resource."
238
- },
239
- "dcterms:conformsTo": {
240
- "description": "Object or array data type",
241
- "anyOf": [
242
- {
243
- "type": "string"
244
- },
245
- {
246
- "type": "array",
247
- "items": {
248
- "type": "string"
249
- }
250
- }
251
- ]
252
- },
253
- "dcterms:type": {
254
- "type": "string",
255
- "description": "The nature or genre of the resource."
256
- },
257
- "dcat:contactPoint": {
258
- "anyOf": [
259
- {
260
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
261
- },
262
- {
263
- "type": "string"
264
- }
265
- ],
266
- "description": "Relevant contact information for the catalogued resource."
267
- },
268
- "dcat:keyword": {
269
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatLiteralType",
270
- "description": "A keyword or tag describing the resource."
271
- },
272
- "dcat:theme": {
273
- "description": "Object or array data type",
274
- "anyOf": [
275
- {
276
- "type": "string"
277
- },
278
- {
279
- "type": "array",
280
- "items": {
281
- "type": "string"
282
- }
283
- }
284
- ]
285
- },
286
- "dcat:landingPage": {
287
- "description": "Object or array data type",
288
- "anyOf": [
289
- {
290
- "type": "string"
291
- },
292
- {
293
- "type": "array",
294
- "items": {
295
- "type": "string"
296
- }
297
- }
298
- ]
299
- },
300
- "dcat:qualifiedRelation": {
301
- "anyOf": [
302
- {
303
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatRelationship"
304
- },
305
- {
306
- "type": "string"
307
- }
308
- ],
309
- "description": "Link to a description of a relationship with another resource."
310
- },
311
- "odrl:hasPolicy": {
312
- "$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy",
313
- "description": "An ODRL conformant policy expressing the rights associated with the resource."
314
- },
315
- "dcat:distribution": {
316
- "description": "Object or array data type",
317
- "anyOf": [
318
- {
319
- "$ref": "https://schema.twindev.org/w3c-dcat/DistributionOptionalContext"
320
- },
321
- {
322
- "type": "array",
323
- "items": {
324
- "$ref": "https://schema.twindev.org/w3c-dcat/DistributionOptionalContext"
325
- }
326
- }
327
- ]
328
- },
329
- "dcterms:accrualPeriodicity": {
330
- "type": "string",
331
- "description": "The frequency at which the dataset is published."
332
- },
333
- "dcat:inSeries": {
334
- "type": "string",
335
- "description": "A dataset series of which the dataset is part."
336
- },
337
- "dcterms:spatial": {
338
- "anyOf": [
339
- {
340
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
341
- },
342
- {
343
- "anyOf": [
344
- {
345
- "type": "string"
346
- },
347
- {
348
- "type": "array",
349
- "items": {
350
- "type": "string"
351
- }
352
- }
353
- ],
354
- "description": "Object or array data type"
355
- }
356
- ],
357
- "description": "The geographical area covered by the dataset."
358
- },
359
- "dcat:spatialResolutionInMeters": {
360
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatDecimalType",
361
- "description": "Minimum spatial separation resolvable in a dataset, measured in meters."
362
- },
363
- "dcterms:temporal": {
364
- "$ref": "https://schema.twindev.org/w3c-dcat/DublinCorePeriodOfTime",
365
- "description": "The temporal period that the dataset covers."
366
- },
367
- "dcat:temporalResolution": {
368
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatDurationType",
369
- "description": "Minimum time period resolvable in the dataset."
370
- },
371
- "prov:wasGeneratedBy": {
372
- "anyOf": [
373
- {
374
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
375
- },
376
- {
377
- "type": "string"
378
- }
379
- ],
380
- "description": "An activity that generated, or provides the business context for, the creation of the dataset."
381
- },
382
- "foaf:homepage": {
383
- "type": "string",
384
- "description": "A homepage of the catalog (a public Web document usually available in HTML)."
385
- },
386
- "dcat:themeTaxonomy": {
387
- "description": "Object or array data type",
388
- "anyOf": [
389
- {
390
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatResource"
391
- },
392
- {
393
- "type": "array",
394
- "items": {
395
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatResource"
396
- }
397
- }
398
- ]
399
- },
400
- "dcat:resource": {
401
- "description": "Object or array data type",
402
- "anyOf": [
403
- {
404
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatResource"
405
- },
406
- {
407
- "type": "array",
408
- "items": {
409
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatResource"
410
- }
411
- }
412
- ]
413
- },
414
- "dcat:dataset": {
415
- "description": "Object or array data type",
416
- "anyOf": [
417
- {
418
- "$ref": "https://schema.twindev.org/w3c-dcat/DatasetOptionalContext"
419
- },
420
- {
421
- "type": "array",
422
- "items": {
423
- "$ref": "https://schema.twindev.org/w3c-dcat/DatasetOptionalContext"
424
- }
425
- }
426
- ]
427
- },
428
- "dcat:service": {
429
- "description": "Object or array data type",
430
- "anyOf": [
431
- {
432
- "$ref": "https://schema.twindev.org/w3c-dcat/DataServiceOptionalContext"
433
- },
434
- {
435
- "type": "array",
436
- "items": {
437
- "$ref": "https://schema.twindev.org/w3c-dcat/DataServiceOptionalContext"
438
- }
439
- }
440
- ]
441
- },
442
- "dcat:catalog": {
443
- "description": "Object or array data type",
444
- "anyOf": [
445
- {
446
- "$ref": "https://schema.twindev.org/w3c-dcat/CatalogOptionalContext"
447
- },
448
- {
449
- "type": "array",
450
- "items": {
451
- "$ref": "https://schema.twindev.org/w3c-dcat/CatalogOptionalContext"
452
- }
453
- }
454
- ]
455
- },
456
- "dcat:record": {
457
- "description": "Object or array data type",
458
- "anyOf": [
459
- {
460
- "$ref": "https://schema.twindev.org/w3c-dcat/CatalogRecordOptionalContext"
461
- },
462
- {
463
- "type": "array",
464
- "items": {
465
- "$ref": "https://schema.twindev.org/w3c-dcat/CatalogRecordOptionalContext"
466
- }
467
- }
468
- ]
9
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatContextType",
10
+ "description": "The JSON-LD context for the resource."
469
11
  }
470
12
  },
471
13
  "required": [
472
- "@context",
473
- "@type"
14
+ "@context"
474
15
  ],
475
- "additionalProperties": {
476
- "anyOf": [
477
- {
478
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
479
- },
480
- {
481
- "$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
482
- },
483
- {
484
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
485
- },
486
- {
487
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
488
- },
489
- {
490
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
491
- },
492
- {
493
- "$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
494
- },
495
- {
496
- "type": "array"
497
- }
498
- ]
499
- }
16
+ "allOf": [
17
+ {
18
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatCatalogBase"
19
+ }
20
+ ]
500
21
  }
@@ -0,0 +1,109 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://schema.twindev.org/w3c-dcat/DcatCatalogBase",
4
+ "title": "DcatCatalogBase",
5
+ "description": "Base interface for DCAT Catalog without JSON-LD context.\nThis is the context-free variant of IDcatCatalog, intended for embedding\ncatalogs inline within other objects where the context is provided by the enclosing document.\nNote: dcat:Catalog is a sub-class of dcat:Dataset per the W3C spec.",
6
+ "type": "object",
7
+ "properties": {
8
+ "@type": {
9
+ "const": "dcat:Catalog",
10
+ "description": "The type identifier, typically \"Catalog\"."
11
+ },
12
+ "foaf:homepage": {
13
+ "type": "string",
14
+ "description": "A homepage of the catalog (a public Web document usually available in HTML)."
15
+ },
16
+ "dcat:themeTaxonomy": {
17
+ "anyOf": [
18
+ {
19
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatResource"
20
+ },
21
+ {
22
+ "type": "array",
23
+ "items": {
24
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatResource"
25
+ }
26
+ }
27
+ ],
28
+ "description": "A knowledge organization system (KOS) used to classify the resources in the catalog."
29
+ },
30
+ "dcat:resource": {
31
+ "anyOf": [
32
+ {
33
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatResource"
34
+ },
35
+ {
36
+ "type": "array",
37
+ "items": {
38
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatResource"
39
+ }
40
+ }
41
+ ],
42
+ "description": "A resource that is listed in the catalog."
43
+ },
44
+ "dcat:dataset": {
45
+ "anyOf": [
46
+ {
47
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatDatasetBase"
48
+ },
49
+ {
50
+ "type": "array",
51
+ "items": {
52
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatDatasetBase"
53
+ }
54
+ }
55
+ ],
56
+ "description": "A dataset that is listed in the catalog."
57
+ },
58
+ "dcat:service": {
59
+ "anyOf": [
60
+ {
61
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatDataServiceBase"
62
+ },
63
+ {
64
+ "type": "array",
65
+ "items": {
66
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatDataServiceBase"
67
+ }
68
+ }
69
+ ],
70
+ "description": "A data service that is listed in the catalog."
71
+ },
72
+ "dcat:catalog": {
73
+ "anyOf": [
74
+ {
75
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatCatalogBase"
76
+ },
77
+ {
78
+ "type": "array",
79
+ "items": {
80
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatCatalogBase"
81
+ }
82
+ }
83
+ ],
84
+ "description": "A catalog that is listed in the catalog."
85
+ },
86
+ "dcat:record": {
87
+ "anyOf": [
88
+ {
89
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatCatalogRecordBase"
90
+ },
91
+ {
92
+ "type": "array",
93
+ "items": {
94
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatCatalogRecordBase"
95
+ }
96
+ }
97
+ ],
98
+ "description": "A record describing the registration of a single resource in the catalog."
99
+ }
100
+ },
101
+ "required": [
102
+ "@type"
103
+ ],
104
+ "allOf": [
105
+ {
106
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatDatasetBase"
107
+ }
108
+ ]
109
+ }