@twin.org/standards-w3c-dcat 0.0.3-next.3 → 0.0.3-next.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (102) hide show
  1. package/dist/es/dataTypes/dcatDataTypes.js +54 -57
  2. package/dist/es/dataTypes/dcatDataTypes.js.map +1 -1
  3. package/dist/es/index.js +10 -9
  4. package/dist/es/index.js.map +1 -1
  5. package/dist/es/models/IDcatCatalog.js +2 -0
  6. package/dist/es/models/IDcatCatalog.js.map +1 -0
  7. package/dist/es/models/IDcatCatalogRecord.js +2 -0
  8. package/dist/es/models/IDcatCatalogRecord.js.map +1 -0
  9. package/dist/es/models/IDcatDataService.js +2 -0
  10. package/dist/es/models/IDcatDataService.js.map +1 -0
  11. package/dist/es/models/IDcatDataset.js +2 -0
  12. package/dist/es/models/IDcatDataset.js.map +1 -0
  13. package/dist/es/models/IDcatDatasetSeries.js +2 -0
  14. package/dist/es/models/IDcatDatasetSeries.js.map +1 -0
  15. package/dist/es/models/IDcatDistribution.js +2 -0
  16. package/dist/es/models/IDcatDistribution.js.map +1 -0
  17. package/dist/es/models/IDcatRelationship.js +2 -0
  18. package/dist/es/models/IDcatRelationship.js.map +1 -0
  19. package/dist/es/models/IDcatResource.js +2 -0
  20. package/dist/es/models/IDcatResource.js.map +1 -0
  21. package/dist/es/models/IDcatRole.js +2 -0
  22. package/dist/es/models/IDcatRole.js.map +1 -0
  23. package/dist/es/models/dcatClasses.js +9 -9
  24. package/dist/es/models/dcatClasses.js.map +1 -1
  25. package/dist/es/models/dcatContextType.js.map +1 -1
  26. package/dist/es/models/dcatContexts.js +16 -16
  27. package/dist/es/models/dcatContexts.js.map +1 -1
  28. package/dist/es/models/types/dcatContextFreeTypes.js +4 -0
  29. package/dist/es/models/types/dcatContextFreeTypes.js.map +1 -0
  30. package/dist/es/models/types/dcatPropertyTypes.js.map +1 -1
  31. package/dist/es/schemas/{Catalog.json → DcatCatalog.json} +37 -28
  32. package/dist/es/schemas/{CatalogRecord.json → DcatCatalogRecord.json} +16 -7
  33. package/dist/es/schemas/{DataService.json → DcatDataService.json} +20 -11
  34. package/dist/es/schemas/{Dataset.json → DcatDataset.json} +27 -18
  35. package/dist/es/schemas/{DatasetSeries.json → DcatDatasetSeries.json} +25 -16
  36. package/dist/es/schemas/{Distribution.json → DcatDistribution.json} +18 -9
  37. package/dist/es/schemas/{Relationship.json → DcatRelationship.json} +11 -3
  38. package/dist/es/schemas/{Resource.json → DcatResource.json} +24 -15
  39. package/dist/es/schemas/{Role.json → DcatRole.json} +12 -3
  40. package/dist/types/index.d.ts +10 -9
  41. package/dist/types/models/{ICatalog.d.ts → IDcatCatalog.d.ts} +10 -11
  42. package/dist/types/models/{ICatalogRecord.d.ts → IDcatCatalogRecord.d.ts} +9 -9
  43. package/dist/types/models/{IDataService.d.ts → IDcatDataService.d.ts} +2 -2
  44. package/dist/types/models/{IDataset.d.ts → IDcatDataset.d.ts} +9 -9
  45. package/dist/types/models/{IDatasetSeries.d.ts → IDcatDatasetSeries.d.ts} +2 -2
  46. package/dist/types/models/{IDistribution.d.ts → IDcatDistribution.d.ts} +10 -10
  47. package/dist/types/models/{IRelationship.d.ts → IDcatRelationship.d.ts} +3 -3
  48. package/dist/types/models/{IResource.d.ts → IDcatResource.d.ts} +14 -14
  49. package/dist/types/models/{IRole.d.ts → IDcatRole.d.ts} +4 -4
  50. package/dist/types/models/dcatClasses.d.ts +9 -9
  51. package/dist/types/models/dcatContextType.d.ts +6 -2
  52. package/dist/types/models/dcatContexts.d.ts +16 -16
  53. package/dist/types/models/types/dcatContextFreeTypes.d.ts +40 -0
  54. package/dist/types/models/types/dcatPropertyTypes.d.ts +6 -6
  55. package/docs/changelog.md +464 -0
  56. package/docs/reference/index.md +20 -15
  57. package/docs/reference/interfaces/{ICatalog.md → IDcatCatalog.md} +49 -49
  58. package/docs/reference/interfaces/{ICatalogRecord.md → IDcatCatalogRecord.md} +7 -7
  59. package/docs/reference/interfaces/{IDataService.md → IDcatDataService.md} +33 -33
  60. package/docs/reference/interfaces/{IDataset.md → IDcatDataset.md} +37 -37
  61. package/docs/reference/interfaces/{IDatasetSeries.md → IDcatDatasetSeries.md} +43 -43
  62. package/docs/reference/interfaces/{IDistribution.md → IDcatDistribution.md} +6 -6
  63. package/docs/reference/interfaces/{IRelationship.md → IDcatRelationship.md} +3 -3
  64. package/docs/reference/interfaces/{IResource.md → IDcatResource.md} +13 -13
  65. package/docs/reference/interfaces/{IRole.md → IDcatRole.md} +5 -5
  66. package/docs/reference/type-aliases/CatalogOptionalContext.md +11 -0
  67. package/docs/reference/type-aliases/CatalogRecordOptionalContext.md +11 -0
  68. package/docs/reference/type-aliases/DataServiceOptionalContext.md +11 -0
  69. package/docs/reference/type-aliases/DatasetOptionalContext.md +11 -0
  70. package/docs/reference/type-aliases/DcatContextType.md +10 -2
  71. package/docs/reference/type-aliases/{DateTimeType.md → DcatDateTimeType.md} +2 -2
  72. package/docs/reference/type-aliases/DcatDecimalType.md +5 -0
  73. package/docs/reference/type-aliases/DcatDurationType.md +5 -0
  74. package/docs/reference/type-aliases/DcatIriType.md +5 -0
  75. package/docs/reference/type-aliases/{LiteralType.md → DcatLiteralType.md} +2 -2
  76. package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +5 -0
  77. package/docs/reference/type-aliases/DistributionOptionalContext.md +11 -0
  78. package/docs/reference/variables/DcatClasses.md +9 -9
  79. package/docs/reference/variables/DcatContexts.md +22 -28
  80. package/package.json +5 -5
  81. package/dist/es/models/ICatalog.js +0 -2
  82. package/dist/es/models/ICatalog.js.map +0 -1
  83. package/dist/es/models/ICatalogRecord.js +0 -2
  84. package/dist/es/models/ICatalogRecord.js.map +0 -1
  85. package/dist/es/models/IDataService.js +0 -2
  86. package/dist/es/models/IDataService.js.map +0 -1
  87. package/dist/es/models/IDataset.js +0 -2
  88. package/dist/es/models/IDataset.js.map +0 -1
  89. package/dist/es/models/IDatasetSeries.js +0 -2
  90. package/dist/es/models/IDatasetSeries.js.map +0 -1
  91. package/dist/es/models/IDistribution.js +0 -2
  92. package/dist/es/models/IDistribution.js.map +0 -1
  93. package/dist/es/models/IRelationship.js +0 -2
  94. package/dist/es/models/IRelationship.js.map +0 -1
  95. package/dist/es/models/IResource.js +0 -2
  96. package/dist/es/models/IResource.js.map +0 -1
  97. package/dist/es/models/IRole.js +0 -2
  98. package/dist/es/models/IRole.js.map +0 -1
  99. package/docs/reference/type-aliases/DecimalType.md +0 -5
  100. package/docs/reference/type-aliases/DurationType.md +0 -5
  101. package/docs/reference/type-aliases/IriType.md +0 -5
  102. package/docs/reference/type-aliases/NonNegativeIntegerType.md +0 -5
@@ -1,4 +1,4 @@
1
- # Interface: ICatalog
1
+ # Interface: IDcatCatalog
2
2
 
3
3
  Interface for DCAT Catalog.
4
4
  A curated collection of metadata about resources (datasets and data services).
@@ -10,7 +10,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Catalog
10
10
 
11
11
  ## Extends
12
12
 
13
- - [`IDataset`](IDataset.md)
13
+ - [`IDcatDataset`](IDcatDataset.md)
14
14
 
15
15
  ## Indexable
16
16
 
@@ -20,13 +20,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Catalog
20
20
 
21
21
  ### @type
22
22
 
23
- > **@type**: `"Catalog"`
23
+ > **@type**: `"dcat:Catalog"`
24
24
 
25
25
  The type identifier, typically "Catalog".
26
26
 
27
27
  #### Overrides
28
28
 
29
- [`IDataset`](IDataset.md).[`@type`](IDataset.md#type)
29
+ [`IDcatDataset`](IDcatDataset.md).[`@type`](IDcatDataset.md#type)
30
30
 
31
31
  ***
32
32
 
@@ -44,7 +44,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_homepage
44
44
 
45
45
  ### dcat:themeTaxonomy?
46
46
 
47
- > `optional` **dcat:themeTaxonomy**: `ObjectOrArray`\<[`IResource`](IResource.md)\>
47
+ > `optional` **dcat:themeTaxonomy**: `ObjectOrArray`\<[`IDcatResource`](IDcatResource.md)\>
48
48
 
49
49
  A knowledge organization system (KOS) used to classify the resources in the catalog.
50
50
 
@@ -56,7 +56,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_themes
56
56
 
57
57
  ### dcat:resource?
58
58
 
59
- > `optional` **dcat:resource**: `ObjectOrArray`\<[`IResource`](IResource.md)\>
59
+ > `optional` **dcat:resource**: `ObjectOrArray`\<[`IDcatResource`](IDcatResource.md)\>
60
60
 
61
61
  A resource that is listed in the catalog.
62
62
 
@@ -68,7 +68,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_resource
68
68
 
69
69
  ### dcat:dataset?
70
70
 
71
- > `optional` **dcat:dataset**: `ObjectOrArray`\<[`IDataset`](IDataset.md)\>
71
+ > `optional` **dcat:dataset**: `ObjectOrArray`\<[`DatasetOptionalContext`](../type-aliases/DatasetOptionalContext.md)\>
72
72
 
73
73
  A dataset that is listed in the catalog.
74
74
 
@@ -80,7 +80,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_dataset
80
80
 
81
81
  ### dcat:service?
82
82
 
83
- > `optional` **dcat:service**: `ObjectOrArray`\<[`IDataService`](IDataService.md)\>
83
+ > `optional` **dcat:service**: `ObjectOrArray`\<[`DataServiceOptionalContext`](../type-aliases/DataServiceOptionalContext.md)\>
84
84
 
85
85
  A data service that is listed in the catalog.
86
86
 
@@ -92,7 +92,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_service
92
92
 
93
93
  ### dcat:catalog?
94
94
 
95
- > `optional` **dcat:catalog**: `ObjectOrArray`\<`ICatalog`\>
95
+ > `optional` **dcat:catalog**: `ObjectOrArray`\<[`CatalogOptionalContext`](../type-aliases/CatalogOptionalContext.md)\>
96
96
 
97
97
  A catalog that is listed in the catalog.
98
98
 
@@ -104,7 +104,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_catalog
104
104
 
105
105
  ### dcat:record?
106
106
 
107
- > `optional` **dcat:record**: `ObjectOrArray`\<[`ICatalogRecord`](ICatalogRecord.md)\>
107
+ > `optional` **dcat:record**: `ObjectOrArray`\<[`CatalogRecordOptionalContext`](../type-aliases/CatalogRecordOptionalContext.md)\>
108
108
 
109
109
  A record describing the registration of a single resource in the catalog.
110
110
 
@@ -116,7 +116,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:catalog_catalog_record
116
116
 
117
117
  ### dcat:distribution?
118
118
 
119
- > `optional` **dcat:distribution**: `ObjectOrArray`\<[`IDistribution`](IDistribution.md)\>
119
+ > `optional` **dcat:distribution**: `ObjectOrArray`\<[`DistributionOptionalContext`](../type-aliases/DistributionOptionalContext.md)\>
120
120
 
121
121
  An available distribution of the dataset.
122
122
 
@@ -126,7 +126,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_distribution
126
126
 
127
127
  #### Inherited from
128
128
 
129
- [`IDataset`](IDataset.md).[`dcat:distribution`](IDataset.md#dcatdistribution)
129
+ [`IDcatDataset`](IDcatDataset.md).[`dcat:distribution`](IDcatDataset.md#dcatdistribution)
130
130
 
131
131
  ***
132
132
 
@@ -142,7 +142,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_frequency
142
142
 
143
143
  #### Inherited from
144
144
 
145
- [`IDataset`](IDataset.md).[`dcterms:accrualPeriodicity`](IDataset.md#dctermsaccrualperiodicity)
145
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:accrualPeriodicity`](IDcatDataset.md#dctermsaccrualperiodicity)
146
146
 
147
147
  ***
148
148
 
@@ -158,7 +158,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_in_series
158
158
 
159
159
  #### Inherited from
160
160
 
161
- [`IDataset`](IDataset.md).[`dcat:inSeries`](IDataset.md#dcatinseries)
161
+ [`IDcatDataset`](IDcatDataset.md).[`dcat:inSeries`](IDcatDataset.md#dcatinseries)
162
162
 
163
163
  ***
164
164
 
@@ -174,7 +174,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial
174
174
 
175
175
  #### Inherited from
176
176
 
177
- [`IDataset`](IDataset.md).[`dcterms:spatial`](IDataset.md#dctermsspatial)
177
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:spatial`](IDcatDataset.md#dctermsspatial)
178
178
 
179
179
  ***
180
180
 
@@ -190,13 +190,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_spatial_resolution
190
190
 
191
191
  #### Inherited from
192
192
 
193
- [`IDataset`](IDataset.md).[`dcat:spatialResolutionInMeters`](IDataset.md#dcatspatialresolutioninmeters)
193
+ [`IDcatDataset`](IDcatDataset.md).[`dcat:spatialResolutionInMeters`](IDcatDataset.md#dcatspatialresolutioninmeters)
194
194
 
195
195
  ***
196
196
 
197
197
  ### dcterms:temporal?
198
198
 
199
- > `optional` **dcterms:temporal**: `IPeriodOfTime`
199
+ > `optional` **dcterms:temporal**: `IDublinCorePeriodOfTime`
200
200
 
201
201
  The temporal period that the dataset covers.
202
202
 
@@ -206,7 +206,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal
206
206
 
207
207
  #### Inherited from
208
208
 
209
- [`IDataset`](IDataset.md).[`dcterms:temporal`](IDataset.md#dctermstemporal)
209
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:temporal`](IDcatDataset.md#dctermstemporal)
210
210
 
211
211
  ***
212
212
 
@@ -222,7 +222,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_temporal_resolution
222
222
 
223
223
  #### Inherited from
224
224
 
225
- [`IDataset`](IDataset.md).[`dcat:temporalResolution`](IDataset.md#dcattemporalresolution)
225
+ [`IDcatDataset`](IDcatDataset.md).[`dcat:temporalResolution`](IDcatDataset.md#dcattemporalresolution)
226
226
 
227
227
  ***
228
228
 
@@ -238,25 +238,25 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:dataset_was_generated_by
238
238
 
239
239
  #### Inherited from
240
240
 
241
- [`IDataset`](IDataset.md).[`prov:wasGeneratedBy`](IDataset.md#provwasgeneratedby)
241
+ [`IDcatDataset`](IDcatDataset.md).[`prov:wasGeneratedBy`](IDcatDataset.md#provwasgeneratedby)
242
242
 
243
243
  ***
244
244
 
245
- ### @context?
245
+ ### @context
246
246
 
247
- > `optional` **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
247
+ > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
248
248
 
249
249
  The JSON-LD context for the resource.
250
250
 
251
251
  #### Inherited from
252
252
 
253
- [`IDataset`](IDataset.md).[`@context`](IDataset.md#context)
253
+ [`IDcatDataset`](IDcatDataset.md).[`@context`](IDcatDataset.md#context)
254
254
 
255
255
  ***
256
256
 
257
257
  ### dcterms:title?
258
258
 
259
- > `optional` **dcterms:title**: [`LiteralType`](../type-aliases/LiteralType.md)
259
+ > `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
260
260
 
261
261
  A name given to the resource.
262
262
 
@@ -266,13 +266,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
266
266
 
267
267
  #### Inherited from
268
268
 
269
- [`IDataset`](IDataset.md).[`dcterms:title`](IDataset.md#dctermstitle)
269
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:title`](IDcatDataset.md#dctermstitle)
270
270
 
271
271
  ***
272
272
 
273
273
  ### dcterms:description?
274
274
 
275
- > `optional` **dcterms:description**: [`LiteralType`](../type-aliases/LiteralType.md)
275
+ > `optional` **dcterms:description**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
276
276
 
277
277
  A free-text account of the resource.
278
278
 
@@ -282,13 +282,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
282
282
 
283
283
  #### Inherited from
284
284
 
285
- [`IDataset`](IDataset.md).[`dcterms:description`](IDataset.md#dctermsdescription)
285
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:description`](IDcatDataset.md#dctermsdescription)
286
286
 
287
287
  ***
288
288
 
289
289
  ### dcterms:identifier?
290
290
 
291
- > `optional` **dcterms:identifier**: [`LiteralType`](../type-aliases/LiteralType.md)
291
+ > `optional` **dcterms:identifier**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
292
292
 
293
293
  A unique identifier of the resource.
294
294
 
@@ -298,7 +298,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
298
298
 
299
299
  #### Inherited from
300
300
 
301
- [`IDataset`](IDataset.md).[`dcterms:identifier`](IDataset.md#dctermsidentifier)
301
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:identifier`](IDcatDataset.md#dctermsidentifier)
302
302
 
303
303
  ***
304
304
 
@@ -314,7 +314,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
314
314
 
315
315
  #### Inherited from
316
316
 
317
- [`IDataset`](IDataset.md).[`dcterms:issued`](IDataset.md#dctermsissued)
317
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:issued`](IDcatDataset.md#dctermsissued)
318
318
 
319
319
  ***
320
320
 
@@ -330,7 +330,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
330
330
 
331
331
  #### Inherited from
332
332
 
333
- [`IDataset`](IDataset.md).[`dcterms:modified`](IDataset.md#dctermsmodified)
333
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:modified`](IDcatDataset.md#dctermsmodified)
334
334
 
335
335
  ***
336
336
 
@@ -346,13 +346,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
346
346
 
347
347
  #### Inherited from
348
348
 
349
- [`IDataset`](IDataset.md).[`dcterms:language`](IDataset.md#dctermslanguage)
349
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:language`](IDcatDataset.md#dctermslanguage)
350
350
 
351
351
  ***
352
352
 
353
353
  ### dcterms:publisher?
354
354
 
355
- > `optional` **dcterms:publisher**: `string` \| `IAgent`
355
+ > `optional` **dcterms:publisher**: `string` \| `IFoafAgent`
356
356
 
357
357
  An entity responsible for making the resource available.
358
358
 
@@ -362,13 +362,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
362
362
 
363
363
  #### Inherited from
364
364
 
365
- [`IDataset`](IDataset.md).[`dcterms:publisher`](IDataset.md#dctermspublisher)
365
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:publisher`](IDcatDataset.md#dctermspublisher)
366
366
 
367
367
  ***
368
368
 
369
369
  ### dcterms:creator?
370
370
 
371
- > `optional` **dcterms:creator**: `IAgent`
371
+ > `optional` **dcterms:creator**: `IFoafAgent`
372
372
 
373
373
  An entity responsible for producing the resource.
374
374
 
@@ -378,7 +378,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
378
378
 
379
379
  #### Inherited from
380
380
 
381
- [`IDataset`](IDataset.md).[`dcterms:creator`](IDataset.md#dctermscreator)
381
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:creator`](IDcatDataset.md#dctermscreator)
382
382
 
383
383
  ***
384
384
 
@@ -394,7 +394,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
394
394
 
395
395
  #### Inherited from
396
396
 
397
- [`IDataset`](IDataset.md).[`dcterms:accessRights`](IDataset.md#dctermsaccessrights)
397
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:accessRights`](IDcatDataset.md#dctermsaccessrights)
398
398
 
399
399
  ***
400
400
 
@@ -410,7 +410,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
410
410
 
411
411
  #### Inherited from
412
412
 
413
- [`IDataset`](IDataset.md).[`dcterms:license`](IDataset.md#dctermslicense)
413
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:license`](IDcatDataset.md#dctermslicense)
414
414
 
415
415
  ***
416
416
 
@@ -426,7 +426,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
426
426
 
427
427
  #### Inherited from
428
428
 
429
- [`IDataset`](IDataset.md).[`dcterms:rights`](IDataset.md#dctermsrights)
429
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:rights`](IDcatDataset.md#dctermsrights)
430
430
 
431
431
  ***
432
432
 
@@ -442,7 +442,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
442
442
 
443
443
  #### Inherited from
444
444
 
445
- [`IDataset`](IDataset.md).[`dcterms:conformsTo`](IDataset.md#dctermsconformsto)
445
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:conformsTo`](IDcatDataset.md#dctermsconformsto)
446
446
 
447
447
  ***
448
448
 
@@ -458,7 +458,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
458
458
 
459
459
  #### Inherited from
460
460
 
461
- [`IDataset`](IDataset.md).[`dcterms:type`](IDataset.md#dctermstype)
461
+ [`IDcatDataset`](IDcatDataset.md).[`dcterms:type`](IDcatDataset.md#dctermstype)
462
462
 
463
463
  ***
464
464
 
@@ -474,13 +474,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
474
474
 
475
475
  #### Inherited from
476
476
 
477
- [`IDataset`](IDataset.md).[`dcat:contactPoint`](IDataset.md#dcatcontactpoint)
477
+ [`IDcatDataset`](IDcatDataset.md).[`dcat:contactPoint`](IDcatDataset.md#dcatcontactpoint)
478
478
 
479
479
  ***
480
480
 
481
481
  ### dcat:keyword?
482
482
 
483
- > `optional` **dcat:keyword**: [`LiteralType`](../type-aliases/LiteralType.md)
483
+ > `optional` **dcat:keyword**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
484
484
 
485
485
  A keyword or tag describing the resource.
486
486
 
@@ -490,7 +490,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
490
490
 
491
491
  #### Inherited from
492
492
 
493
- [`IDataset`](IDataset.md).[`dcat:keyword`](IDataset.md#dcatkeyword)
493
+ [`IDcatDataset`](IDcatDataset.md).[`dcat:keyword`](IDcatDataset.md#dcatkeyword)
494
494
 
495
495
  ***
496
496
 
@@ -506,7 +506,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
506
506
 
507
507
  #### Inherited from
508
508
 
509
- [`IDataset`](IDataset.md).[`dcat:theme`](IDataset.md#dcattheme)
509
+ [`IDcatDataset`](IDcatDataset.md).[`dcat:theme`](IDcatDataset.md#dcattheme)
510
510
 
511
511
  ***
512
512
 
@@ -522,13 +522,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
522
522
 
523
523
  #### Inherited from
524
524
 
525
- [`IDataset`](IDataset.md).[`dcat:landingPage`](IDataset.md#dcatlandingpage)
525
+ [`IDcatDataset`](IDcatDataset.md).[`dcat:landingPage`](IDcatDataset.md#dcatlandingpage)
526
526
 
527
527
  ***
528
528
 
529
529
  ### dcat:qualifiedRelation?
530
530
 
531
- > `optional` **dcat:qualifiedRelation**: `string` \| [`IRelationship`](IRelationship.md)
531
+ > `optional` **dcat:qualifiedRelation**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
532
532
 
533
533
  Link to a description of a relationship with another resource.
534
534
 
@@ -538,7 +538,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
538
538
 
539
539
  #### Inherited from
540
540
 
541
- [`IDataset`](IDataset.md).[`dcat:qualifiedRelation`](IDataset.md#dcatqualifiedrelation)
541
+ [`IDcatDataset`](IDcatDataset.md).[`dcat:qualifiedRelation`](IDcatDataset.md#dcatqualifiedrelation)
542
542
 
543
543
  ***
544
544
 
@@ -554,4 +554,4 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_has_policy
554
554
 
555
555
  #### Inherited from
556
556
 
557
- [`IDataset`](IDataset.md).[`odrl:hasPolicy`](IDataset.md#odrlhaspolicy)
557
+ [`IDcatDataset`](IDcatDataset.md).[`odrl:hasPolicy`](IDcatDataset.md#odrlhaspolicy)
@@ -1,4 +1,4 @@
1
- # Interface: ICatalogRecord
1
+ # Interface: IDcatCatalogRecord
2
2
 
3
3
  Interface for DCAT Catalog Record.
4
4
  A record in a catalog, describing the registration of a single dataset or data
@@ -18,9 +18,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Catalog_Record
18
18
 
19
19
  ## Properties
20
20
 
21
- ### @context?
21
+ ### @context
22
22
 
23
- > `optional` **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
23
+ > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
24
24
 
25
25
  The JSON-LD context for the resource.
26
26
 
@@ -32,7 +32,7 @@ The JSON-LD context for the resource.
32
32
 
33
33
  ### @type
34
34
 
35
- > **@type**: `"CatalogRecord"`
35
+ > **@type**: `"dcat:CatalogRecord"`
36
36
 
37
37
  The type identifier, typically "CatalogRecord".
38
38
 
@@ -44,7 +44,7 @@ The type identifier, typically "CatalogRecord".
44
44
 
45
45
  ### dcterms:title?
46
46
 
47
- > `optional` **dcterms:title**: [`LiteralType`](../type-aliases/LiteralType.md)
47
+ > `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
48
48
 
49
49
  A name given to the catalog record.
50
50
 
@@ -56,7 +56,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:record_title
56
56
 
57
57
  ### dcterms:description?
58
58
 
59
- > `optional` **dcterms:description**: [`LiteralType`](../type-aliases/LiteralType.md)
59
+ > `optional` **dcterms:description**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
60
60
 
61
61
  A free-text account of the catalog record.
62
62
 
@@ -104,7 +104,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:record_conforms_to
104
104
 
105
105
  ### foaf:primaryTopic?
106
106
 
107
- > `optional` **foaf:primaryTopic**: [`IResource`](IResource.md)
107
+ > `optional` **foaf:primaryTopic**: [`IDcatResource`](IDcatResource.md)
108
108
 
109
109
  The dataset or data service described in the catalog record.
110
110