@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
@@ -0,0 +1,101 @@
1
+ # Interface: IDcatCatalogRecordBase
2
+
3
+ Base interface for DCAT Catalog Record without JSON-LD context.
4
+ This is the context-free variant of IDcatCatalogRecord, intended for embedding
5
+ catalog record objects inline within catalogs where the context is provided by the enclosing document.
6
+
7
+ ## See
8
+
9
+ https://www.w3.org/TR/vocab-dcat-3/#Class:Catalog_Record
10
+
11
+ ## Extended by
12
+
13
+ - [`IDcatCatalogRecord`](IDcatCatalogRecord.md)
14
+
15
+ ## Properties
16
+
17
+ ### @type {#type}
18
+
19
+ > **@type**: `"dcat:CatalogRecord"`
20
+
21
+ The type identifier, typically "CatalogRecord".
22
+
23
+ ***
24
+
25
+ ### @id? {#id}
26
+
27
+ > `optional` **@id?**: `string`
28
+
29
+ The unique identifier for the catalog record.
30
+
31
+ ***
32
+
33
+ ### dcterms:title? {#dctermstitle}
34
+
35
+ > `optional` **dcterms:title?**: `ObjectOrArray`\<`string`\>
36
+
37
+ A name given to the catalog record.
38
+
39
+ #### See
40
+
41
+ https://www.w3.org/TR/vocab-dcat-3/#Property:record_title
42
+
43
+ ***
44
+
45
+ ### dcterms:description? {#dctermsdescription}
46
+
47
+ > `optional` **dcterms:description?**: `ObjectOrArray`\<`string`\>
48
+
49
+ A free-text account of the catalog record.
50
+
51
+ #### See
52
+
53
+ https://www.w3.org/TR/vocab-dcat-3/#Property:record_description
54
+
55
+ ***
56
+
57
+ ### dcterms:issued? {#dctermsissued}
58
+
59
+ > `optional` **dcterms:issued?**: `string`
60
+
61
+ The date of listing of the catalog record in the catalog.
62
+
63
+ #### See
64
+
65
+ https://www.w3.org/TR/vocab-dcat-3/#Property:record_listing_date
66
+
67
+ ***
68
+
69
+ ### dcterms:modified? {#dctermsmodified}
70
+
71
+ > `optional` **dcterms:modified?**: `string`
72
+
73
+ Most recent date on which the catalog record entry was changed or modified.
74
+
75
+ #### See
76
+
77
+ https://www.w3.org/TR/vocab-dcat-3/#Property:record_update_date
78
+
79
+ ***
80
+
81
+ ### dcterms:conformsTo? {#dctermsconformsto}
82
+
83
+ > `optional` **dcterms:conformsTo?**: `ObjectOrArray`\<`string`\>
84
+
85
+ An established standard to which the catalog record conforms.
86
+
87
+ #### See
88
+
89
+ https://www.w3.org/TR/vocab-dcat-3/#Property:record_conforms_to
90
+
91
+ ***
92
+
93
+ ### foaf:primaryTopic? {#foafprimarytopic}
94
+
95
+ > `optional` **foaf:primaryTopic?**: [`IDcatResource`](IDcatResource.md)
96
+
97
+ The dataset or data service described in the catalog record.
98
+
99
+ #### See
100
+
101
+ https://www.w3.org/TR/vocab-dcat-3/#Property:record_primary_topic
@@ -10,29 +10,33 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Data_Service
10
10
 
11
11
  ## Extends
12
12
 
13
- - [`IDcatResource`](IDcatResource.md)
13
+ - [`IDcatDataServiceBase`](IDcatDataServiceBase.md)
14
14
 
15
- ## Indexable
15
+ ## Properties
16
16
 
17
- \[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
17
+ ### @context {#context}
18
18
 
19
- ## Properties
19
+ > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
20
+
21
+ The JSON-LD context for the resource.
20
22
 
21
- ### @type
23
+ ***
24
+
25
+ ### @type {#type}
22
26
 
23
27
  > **@type**: `"dcat:DataService"`
24
28
 
25
29
  The type identifier, typically "DataService".
26
30
 
27
- #### Overrides
31
+ #### Inherited from
28
32
 
29
- [`IDcatResource`](IDcatResource.md).[`@type`](IDcatResource.md#type)
33
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`@type`](IDcatDataServiceBase.md#type)
30
34
 
31
35
  ***
32
36
 
33
- ### dcat:endpointURL?
37
+ ### dcat:endpointURL? {#dcatendpointurl}
34
38
 
35
- > `optional` **dcat:endpointURL**: `string`
39
+ > `optional` **dcat:endpointURL?**: `string`
36
40
 
37
41
  The root location or primary endpoint of the service (a Web-resolvable IRI).
38
42
 
@@ -40,11 +44,15 @@ The root location or primary endpoint of the service (a Web-resolvable IRI).
40
44
 
41
45
  https://www.w3.org/TR/vocab-dcat-3/#Property:data_service_endpoint_url
42
46
 
47
+ #### Inherited from
48
+
49
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcat:endpointURL`](IDcatDataServiceBase.md#dcatendpointurl)
50
+
43
51
  ***
44
52
 
45
- ### dcat:endpointDescription?
53
+ ### dcat:endpointDescription? {#dcatendpointdescription}
46
54
 
47
- > `optional` **dcat:endpointDescription**: `string`
55
+ > `optional` **dcat:endpointDescription?**: `string`
48
56
 
49
57
  A description of the services available via the end-points, including their
50
58
  operations, parameters, etc.
@@ -53,11 +61,15 @@ operations, parameters, etc.
53
61
 
54
62
  https://www.w3.org/TR/vocab-dcat-3/#Property:data_service_endpoint_description
55
63
 
64
+ #### Inherited from
65
+
66
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcat:endpointDescription`](IDcatDataServiceBase.md#dcatendpointdescription)
67
+
56
68
  ***
57
69
 
58
- ### dcat:servesDataset?
70
+ ### dcat:servesDataset? {#dcatservesdataset}
59
71
 
60
- > `optional` **dcat:servesDataset**: `ObjectOrArray`\<`string`\>
72
+ > `optional` **dcat:servesDataset?**: `ObjectOrArray`\<`string`\>
61
73
 
62
74
  A collection of data that this data service can distribute.
63
75
 
@@ -65,23 +77,27 @@ A collection of data that this data service can distribute.
65
77
 
66
78
  https://www.w3.org/TR/vocab-dcat-3/#Property:data_service_serves_dataset
67
79
 
80
+ #### Inherited from
81
+
82
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcat:servesDataset`](IDcatDataServiceBase.md#dcatservesdataset)
83
+
68
84
  ***
69
85
 
70
- ### @context
86
+ ### @id? {#id}
71
87
 
72
- > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
88
+ > `optional` **@id?**: `string`
73
89
 
74
- The JSON-LD context for the resource.
90
+ The unique identifier for the resource.
75
91
 
76
92
  #### Inherited from
77
93
 
78
- [`IDcatResource`](IDcatResource.md).[`@context`](IDcatResource.md#context)
94
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`@id`](IDcatDataServiceBase.md#id)
79
95
 
80
96
  ***
81
97
 
82
- ### dcterms:title?
98
+ ### dcterms:title? {#dctermstitle}
83
99
 
84
- > `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
100
+ > `optional` **dcterms:title?**: `ObjectOrArray`\<`string`\>
85
101
 
86
102
  A name given to the resource.
87
103
 
@@ -91,13 +107,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
91
107
 
92
108
  #### Inherited from
93
109
 
94
- [`IDcatResource`](IDcatResource.md).[`dcterms:title`](IDcatResource.md#dctermstitle)
110
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:title`](IDcatDataServiceBase.md#dctermstitle)
95
111
 
96
112
  ***
97
113
 
98
- ### dcterms:description?
114
+ ### dcterms:description? {#dctermsdescription}
99
115
 
100
- > `optional` **dcterms:description**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
116
+ > `optional` **dcterms:description?**: `ObjectOrArray`\<`string`\>
101
117
 
102
118
  A free-text account of the resource.
103
119
 
@@ -107,13 +123,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
107
123
 
108
124
  #### Inherited from
109
125
 
110
- [`IDcatResource`](IDcatResource.md).[`dcterms:description`](IDcatResource.md#dctermsdescription)
126
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:description`](IDcatDataServiceBase.md#dctermsdescription)
111
127
 
112
128
  ***
113
129
 
114
- ### dcterms:identifier?
130
+ ### dcterms:identifier? {#dctermsidentifier}
115
131
 
116
- > `optional` **dcterms:identifier**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
132
+ > `optional` **dcterms:identifier?**: `ObjectOrArray`\<`string`\>
117
133
 
118
134
  A unique identifier of the resource.
119
135
 
@@ -123,13 +139,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
123
139
 
124
140
  #### Inherited from
125
141
 
126
- [`IDcatResource`](IDcatResource.md).[`dcterms:identifier`](IDcatResource.md#dctermsidentifier)
142
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:identifier`](IDcatDataServiceBase.md#dctermsidentifier)
127
143
 
128
144
  ***
129
145
 
130
- ### dcterms:issued?
146
+ ### dcterms:issued? {#dctermsissued}
131
147
 
132
- > `optional` **dcterms:issued**: `string`
148
+ > `optional` **dcterms:issued?**: `string`
133
149
 
134
150
  Date of formal issuance (publication) of the resource.
135
151
 
@@ -139,13 +155,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
139
155
 
140
156
  #### Inherited from
141
157
 
142
- [`IDcatResource`](IDcatResource.md).[`dcterms:issued`](IDcatResource.md#dctermsissued)
158
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:issued`](IDcatDataServiceBase.md#dctermsissued)
143
159
 
144
160
  ***
145
161
 
146
- ### dcterms:modified?
162
+ ### dcterms:modified? {#dctermsmodified}
147
163
 
148
- > `optional` **dcterms:modified**: `string`
164
+ > `optional` **dcterms:modified?**: `string`
149
165
 
150
166
  Most recent date on which the resource was changed, updated or modified.
151
167
 
@@ -155,13 +171,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
155
171
 
156
172
  #### Inherited from
157
173
 
158
- [`IDcatResource`](IDcatResource.md).[`dcterms:modified`](IDcatResource.md#dctermsmodified)
174
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:modified`](IDcatDataServiceBase.md#dctermsmodified)
159
175
 
160
176
  ***
161
177
 
162
- ### dcterms:language?
178
+ ### dcterms:language? {#dctermslanguage}
163
179
 
164
- > `optional` **dcterms:language**: `ObjectOrArray`\<`string`\>
180
+ > `optional` **dcterms:language?**: `ObjectOrArray`\<`string`\>
165
181
 
166
182
  A language of the resource.
167
183
 
@@ -171,13 +187,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
171
187
 
172
188
  #### Inherited from
173
189
 
174
- [`IDcatResource`](IDcatResource.md).[`dcterms:language`](IDcatResource.md#dctermslanguage)
190
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:language`](IDcatDataServiceBase.md#dctermslanguage)
175
191
 
176
192
  ***
177
193
 
178
- ### dcterms:publisher?
194
+ ### dcterms:publisher? {#dctermspublisher}
179
195
 
180
- > `optional` **dcterms:publisher**: `string` \| `IFoafAgent`
196
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
181
197
 
182
198
  An entity responsible for making the resource available.
183
199
 
@@ -187,13 +203,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
187
203
 
188
204
  #### Inherited from
189
205
 
190
- [`IDcatResource`](IDcatResource.md).[`dcterms:publisher`](IDcatResource.md#dctermspublisher)
206
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:publisher`](IDcatDataServiceBase.md#dctermspublisher)
191
207
 
192
208
  ***
193
209
 
194
- ### dcterms:creator?
210
+ ### dcterms:creator? {#dctermscreator}
195
211
 
196
- > `optional` **dcterms:creator**: `IFoafAgent`
212
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
197
213
 
198
214
  An entity responsible for producing the resource.
199
215
 
@@ -203,13 +219,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
203
219
 
204
220
  #### Inherited from
205
221
 
206
- [`IDcatResource`](IDcatResource.md).[`dcterms:creator`](IDcatResource.md#dctermscreator)
222
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:creator`](IDcatDataServiceBase.md#dctermscreator)
207
223
 
208
224
  ***
209
225
 
210
- ### dcterms:accessRights?
226
+ ### dcterms:accessRights? {#dctermsaccessrights}
211
227
 
212
- > `optional` **dcterms:accessRights**: `string` \| `IJsonLdNodeObject`
228
+ > `optional` **dcterms:accessRights?**: `string` \| `IJsonLdNodeObject`
213
229
 
214
230
  Information about who can access the resource or an indication of its security status.
215
231
 
@@ -219,13 +235,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
219
235
 
220
236
  #### Inherited from
221
237
 
222
- [`IDcatResource`](IDcatResource.md).[`dcterms:accessRights`](IDcatResource.md#dctermsaccessrights)
238
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:accessRights`](IDcatDataServiceBase.md#dctermsaccessrights)
223
239
 
224
240
  ***
225
241
 
226
- ### dcterms:license?
242
+ ### dcterms:license? {#dctermslicense}
227
243
 
228
- > `optional` **dcterms:license**: `string` \| `IJsonLdNodeObject`
244
+ > `optional` **dcterms:license?**: `string` \| `IJsonLdNodeObject`
229
245
 
230
246
  A legal document under which the resource is made available.
231
247
 
@@ -235,13 +251,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
235
251
 
236
252
  #### Inherited from
237
253
 
238
- [`IDcatResource`](IDcatResource.md).[`dcterms:license`](IDcatResource.md#dctermslicense)
254
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:license`](IDcatDataServiceBase.md#dctermslicense)
239
255
 
240
256
  ***
241
257
 
242
- ### dcterms:rights?
258
+ ### dcterms:rights? {#dctermsrights}
243
259
 
244
- > `optional` **dcterms:rights**: `string` \| `IJsonLdNodeObject`
260
+ > `optional` **dcterms:rights?**: `string` \| `IJsonLdNodeObject`
245
261
 
246
262
  Information about rights held in and over the resource.
247
263
 
@@ -251,13 +267,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
251
267
 
252
268
  #### Inherited from
253
269
 
254
- [`IDcatResource`](IDcatResource.md).[`dcterms:rights`](IDcatResource.md#dctermsrights)
270
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:rights`](IDcatDataServiceBase.md#dctermsrights)
255
271
 
256
272
  ***
257
273
 
258
- ### dcterms:conformsTo?
274
+ ### dcterms:conformsTo? {#dctermsconformsto}
259
275
 
260
- > `optional` **dcterms:conformsTo**: `ObjectOrArray`\<`string`\>
276
+ > `optional` **dcterms:conformsTo?**: `ObjectOrArray`\<`string`\>
261
277
 
262
278
  An established standard to which the resource conforms.
263
279
 
@@ -267,13 +283,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
267
283
 
268
284
  #### Inherited from
269
285
 
270
- [`IDcatResource`](IDcatResource.md).[`dcterms:conformsTo`](IDcatResource.md#dctermsconformsto)
286
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:conformsTo`](IDcatDataServiceBase.md#dctermsconformsto)
271
287
 
272
288
  ***
273
289
 
274
- ### dcterms:type?
290
+ ### dcterms:type? {#dctermstype}
275
291
 
276
- > `optional` **dcterms:type**: `string`
292
+ > `optional` **dcterms:type?**: `string`
277
293
 
278
294
  The nature or genre of the resource.
279
295
 
@@ -283,13 +299,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
283
299
 
284
300
  #### Inherited from
285
301
 
286
- [`IDcatResource`](IDcatResource.md).[`dcterms:type`](IDcatResource.md#dctermstype)
302
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcterms:type`](IDcatDataServiceBase.md#dctermstype)
287
303
 
288
304
  ***
289
305
 
290
- ### dcat:contactPoint?
306
+ ### dcat:contactPoint? {#dcatcontactpoint}
291
307
 
292
- > `optional` **dcat:contactPoint**: `string` \| `IJsonLdNodeObject`
308
+ > `optional` **dcat:contactPoint?**: `string` \| `IJsonLdNodeObject`
293
309
 
294
310
  Relevant contact information for the catalogued resource.
295
311
 
@@ -299,13 +315,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
299
315
 
300
316
  #### Inherited from
301
317
 
302
- [`IDcatResource`](IDcatResource.md).[`dcat:contactPoint`](IDcatResource.md#dcatcontactpoint)
318
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcat:contactPoint`](IDcatDataServiceBase.md#dcatcontactpoint)
303
319
 
304
320
  ***
305
321
 
306
- ### dcat:keyword?
322
+ ### dcat:keyword? {#dcatkeyword}
307
323
 
308
- > `optional` **dcat:keyword**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
324
+ > `optional` **dcat:keyword?**: `ObjectOrArray`\<`string`\>
309
325
 
310
326
  A keyword or tag describing the resource.
311
327
 
@@ -315,13 +331,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
315
331
 
316
332
  #### Inherited from
317
333
 
318
- [`IDcatResource`](IDcatResource.md).[`dcat:keyword`](IDcatResource.md#dcatkeyword)
334
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcat:keyword`](IDcatDataServiceBase.md#dcatkeyword)
319
335
 
320
336
  ***
321
337
 
322
- ### dcat:theme?
338
+ ### dcat:theme? {#dcattheme}
323
339
 
324
- > `optional` **dcat:theme**: `ObjectOrArray`\<`string`\>
340
+ > `optional` **dcat:theme?**: `ObjectOrArray`\<`string`\>
325
341
 
326
342
  A main category of the resource. A resource can have multiple themes.
327
343
 
@@ -331,13 +347,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
331
347
 
332
348
  #### Inherited from
333
349
 
334
- [`IDcatResource`](IDcatResource.md).[`dcat:theme`](IDcatResource.md#dcattheme)
350
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcat:theme`](IDcatDataServiceBase.md#dcattheme)
335
351
 
336
352
  ***
337
353
 
338
- ### dcat:landingPage?
354
+ ### dcat:landingPage? {#dcatlandingpage}
339
355
 
340
- > `optional` **dcat:landingPage**: `ObjectOrArray`\<`string`\>
356
+ > `optional` **dcat:landingPage?**: `ObjectOrArray`\<`string`\>
341
357
 
342
358
  A Web page that can be navigated to gain access to the resource.
343
359
 
@@ -347,13 +363,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
347
363
 
348
364
  #### Inherited from
349
365
 
350
- [`IDcatResource`](IDcatResource.md).[`dcat:landingPage`](IDcatResource.md#dcatlandingpage)
366
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcat:landingPage`](IDcatDataServiceBase.md#dcatlandingpage)
351
367
 
352
368
  ***
353
369
 
354
- ### dcat:qualifiedRelation?
370
+ ### dcat:qualifiedRelation? {#dcatqualifiedrelation}
355
371
 
356
- > `optional` **dcat:qualifiedRelation**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
372
+ > `optional` **dcat:qualifiedRelation?**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
357
373
 
358
374
  Link to a description of a relationship with another resource.
359
375
 
@@ -363,13 +379,13 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
363
379
 
364
380
  #### Inherited from
365
381
 
366
- [`IDcatResource`](IDcatResource.md).[`dcat:qualifiedRelation`](IDcatResource.md#dcatqualifiedrelation)
382
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`dcat:qualifiedRelation`](IDcatDataServiceBase.md#dcatqualifiedrelation)
367
383
 
368
384
  ***
369
385
 
370
- ### odrl:hasPolicy?
386
+ ### odrl:hasPolicy? {#odrlhaspolicy}
371
387
 
372
- > `optional` **odrl:hasPolicy**: `IOdrlPolicy`
388
+ > `optional` **odrl:hasPolicy?**: `JsonLdObjectWithOptionalContext`\<`IOdrlPolicy`\>
373
389
 
374
390
  An ODRL conformant policy expressing the rights associated with the resource.
375
391
 
@@ -379,4 +395,4 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_has_policy
379
395
 
380
396
  #### Inherited from
381
397
 
382
- [`IDcatResource`](IDcatResource.md).[`odrl:hasPolicy`](IDcatResource.md#odrlhaspolicy)
398
+ [`IDcatDataServiceBase`](IDcatDataServiceBase.md).[`odrl:hasPolicy`](IDcatDataServiceBase.md#odrlhaspolicy)