@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
@@ -8,43 +8,27 @@ between DCAT Resources.
8
8
 
9
9
  https://www.w3.org/TR/vocab-dcat-3/#Class:Relationship
10
10
 
11
- ## Extends
12
-
13
- - `IJsonLdNodeObject`
14
-
15
- ## Indexable
16
-
17
- \[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
18
-
19
11
  ## Properties
20
12
 
21
- ### @context
13
+ ### @context {#context}
22
14
 
23
15
  > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
24
16
 
25
17
  The JSON-LD context for the resource.
26
18
 
27
- #### Overrides
28
-
29
- `IJsonLdNodeObject.@context`
30
-
31
19
  ***
32
20
 
33
- ### @type
21
+ ### @type {#type}
34
22
 
35
23
  > **@type**: `"dcat:Relationship"`
36
24
 
37
25
  The type identifier, typically "Relationship".
38
26
 
39
- #### Overrides
40
-
41
- `IJsonLdNodeObject.@type`
42
-
43
27
  ***
44
28
 
45
- ### dcterms:relation?
29
+ ### dcterms:relation? {#dctermsrelation}
46
30
 
47
- > `optional` **dcterms:relation**: `string`
31
+ > `optional` **dcterms:relation?**: `string` \| `IJsonLdNodeObject`
48
32
 
49
33
  The link to a related resource.
50
34
 
@@ -54,9 +38,9 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:relationship_relation
54
38
 
55
39
  ***
56
40
 
57
- ### dcat:hadRole?
41
+ ### dcat:hadRole? {#dcathadrole}
58
42
 
59
- > `optional` **dcat:hadRole**: [`IDcatRole`](IDcatRole.md)
43
+ > `optional` **dcat:hadRole?**: [`IDcatRole`](IDcatRole.md)
60
44
 
61
45
  The function of an entity or agent with respect to another resource.
62
46
 
@@ -1,6 +1,6 @@
1
1
  # Interface: IDcatResource
2
2
 
3
- Base interface for DCAT catalogued resources.
3
+ Interface for DCAT catalogued resources.
4
4
  This is the parent class of dcat:Dataset, dcat:DataService, and dcat:Catalog.
5
5
 
6
6
  ## See
@@ -9,47 +9,46 @@ https://www.w3.org/TR/vocab-dcat-3/#Class:Resource
9
9
 
10
10
  ## Extends
11
11
 
12
- - `IJsonLdNodeObject`
13
-
14
- ## Extended by
15
-
16
- - [`IDcatDataService`](IDcatDataService.md)
17
- - [`IDcatDataset`](IDcatDataset.md)
18
-
19
- ## Indexable
20
-
21
- \[`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`
12
+ - [`IDcatResourceBase`](IDcatResourceBase.md)
22
13
 
23
14
  ## Properties
24
15
 
25
- ### @context
16
+ ### @context {#context}
26
17
 
27
18
  > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
28
19
 
29
20
  The JSON-LD context for the resource.
30
21
 
31
- #### Overrides
32
-
33
- `IJsonLdNodeObject.@context`
34
-
35
22
  ***
36
23
 
37
- ### @type
24
+ ### @type {#type}
38
25
 
39
26
  > **@type**: `"dcat:Catalog"` \| `"dcat:Resource"` \| `"dcat:Dataset"` \| `"dcat:DataService"` \| `"dcat:DatasetSeries"`
40
27
 
41
28
  The type of the resource.
42
29
  Typically "Catalog", "Dataset", "DataService", "DatasetSeries", or the base "Resource".
43
30
 
44
- #### Overrides
31
+ #### Inherited from
32
+
33
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`@type`](IDcatResourceBase.md#type)
34
+
35
+ ***
36
+
37
+ ### @id? {#id}
38
+
39
+ > `optional` **@id?**: `string`
40
+
41
+ The unique identifier for the resource.
42
+
43
+ #### Inherited from
45
44
 
46
- `IJsonLdNodeObject.@type`
45
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`@id`](IDcatResourceBase.md#id)
47
46
 
48
47
  ***
49
48
 
50
- ### dcterms:title?
49
+ ### dcterms:title? {#dctermstitle}
51
50
 
52
- > `optional` **dcterms:title**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
51
+ > `optional` **dcterms:title?**: `ObjectOrArray`\<`string`\>
53
52
 
54
53
  A name given to the resource.
55
54
 
@@ -57,11 +56,15 @@ A name given to the resource.
57
56
 
58
57
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
59
58
 
59
+ #### Inherited from
60
+
61
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:title`](IDcatResourceBase.md#dctermstitle)
62
+
60
63
  ***
61
64
 
62
- ### dcterms:description?
65
+ ### dcterms:description? {#dctermsdescription}
63
66
 
64
- > `optional` **dcterms:description**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
67
+ > `optional` **dcterms:description?**: `ObjectOrArray`\<`string`\>
65
68
 
66
69
  A free-text account of the resource.
67
70
 
@@ -69,11 +72,15 @@ A free-text account of the resource.
69
72
 
70
73
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
71
74
 
75
+ #### Inherited from
76
+
77
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:description`](IDcatResourceBase.md#dctermsdescription)
78
+
72
79
  ***
73
80
 
74
- ### dcterms:identifier?
81
+ ### dcterms:identifier? {#dctermsidentifier}
75
82
 
76
- > `optional` **dcterms:identifier**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
83
+ > `optional` **dcterms:identifier?**: `ObjectOrArray`\<`string`\>
77
84
 
78
85
  A unique identifier of the resource.
79
86
 
@@ -81,11 +88,15 @@ A unique identifier of the resource.
81
88
 
82
89
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
83
90
 
91
+ #### Inherited from
92
+
93
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:identifier`](IDcatResourceBase.md#dctermsidentifier)
94
+
84
95
  ***
85
96
 
86
- ### dcterms:issued?
97
+ ### dcterms:issued? {#dctermsissued}
87
98
 
88
- > `optional` **dcterms:issued**: `string`
99
+ > `optional` **dcterms:issued?**: `string`
89
100
 
90
101
  Date of formal issuance (publication) of the resource.
91
102
 
@@ -93,11 +104,15 @@ Date of formal issuance (publication) of the resource.
93
104
 
94
105
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
95
106
 
107
+ #### Inherited from
108
+
109
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:issued`](IDcatResourceBase.md#dctermsissued)
110
+
96
111
  ***
97
112
 
98
- ### dcterms:modified?
113
+ ### dcterms:modified? {#dctermsmodified}
99
114
 
100
- > `optional` **dcterms:modified**: `string`
115
+ > `optional` **dcterms:modified?**: `string`
101
116
 
102
117
  Most recent date on which the resource was changed, updated or modified.
103
118
 
@@ -105,11 +120,15 @@ Most recent date on which the resource was changed, updated or modified.
105
120
 
106
121
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
107
122
 
123
+ #### Inherited from
124
+
125
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:modified`](IDcatResourceBase.md#dctermsmodified)
126
+
108
127
  ***
109
128
 
110
- ### dcterms:language?
129
+ ### dcterms:language? {#dctermslanguage}
111
130
 
112
- > `optional` **dcterms:language**: `ObjectOrArray`\<`string`\>
131
+ > `optional` **dcterms:language?**: `ObjectOrArray`\<`string`\>
113
132
 
114
133
  A language of the resource.
115
134
 
@@ -117,11 +136,15 @@ A language of the resource.
117
136
 
118
137
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
119
138
 
139
+ #### Inherited from
140
+
141
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:language`](IDcatResourceBase.md#dctermslanguage)
142
+
120
143
  ***
121
144
 
122
- ### dcterms:publisher?
145
+ ### dcterms:publisher? {#dctermspublisher}
123
146
 
124
- > `optional` **dcterms:publisher**: `string` \| `IFoafAgent`
147
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
125
148
 
126
149
  An entity responsible for making the resource available.
127
150
 
@@ -129,11 +152,15 @@ An entity responsible for making the resource available.
129
152
 
130
153
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
131
154
 
155
+ #### Inherited from
156
+
157
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:publisher`](IDcatResourceBase.md#dctermspublisher)
158
+
132
159
  ***
133
160
 
134
- ### dcterms:creator?
161
+ ### dcterms:creator? {#dctermscreator}
135
162
 
136
- > `optional` **dcterms:creator**: `IFoafAgent`
163
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
137
164
 
138
165
  An entity responsible for producing the resource.
139
166
 
@@ -141,11 +168,15 @@ An entity responsible for producing the resource.
141
168
 
142
169
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
143
170
 
171
+ #### Inherited from
172
+
173
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:creator`](IDcatResourceBase.md#dctermscreator)
174
+
144
175
  ***
145
176
 
146
- ### dcterms:accessRights?
177
+ ### dcterms:accessRights? {#dctermsaccessrights}
147
178
 
148
- > `optional` **dcterms:accessRights**: `string` \| `IJsonLdNodeObject`
179
+ > `optional` **dcterms:accessRights?**: `string` \| `IJsonLdNodeObject`
149
180
 
150
181
  Information about who can access the resource or an indication of its security status.
151
182
 
@@ -153,11 +184,15 @@ Information about who can access the resource or an indication of its security s
153
184
 
154
185
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
155
186
 
187
+ #### Inherited from
188
+
189
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:accessRights`](IDcatResourceBase.md#dctermsaccessrights)
190
+
156
191
  ***
157
192
 
158
- ### dcterms:license?
193
+ ### dcterms:license? {#dctermslicense}
159
194
 
160
- > `optional` **dcterms:license**: `string` \| `IJsonLdNodeObject`
195
+ > `optional` **dcterms:license?**: `string` \| `IJsonLdNodeObject`
161
196
 
162
197
  A legal document under which the resource is made available.
163
198
 
@@ -165,11 +200,15 @@ A legal document under which the resource is made available.
165
200
 
166
201
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
167
202
 
203
+ #### Inherited from
204
+
205
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:license`](IDcatResourceBase.md#dctermslicense)
206
+
168
207
  ***
169
208
 
170
- ### dcterms:rights?
209
+ ### dcterms:rights? {#dctermsrights}
171
210
 
172
- > `optional` **dcterms:rights**: `string` \| `IJsonLdNodeObject`
211
+ > `optional` **dcterms:rights?**: `string` \| `IJsonLdNodeObject`
173
212
 
174
213
  Information about rights held in and over the resource.
175
214
 
@@ -177,11 +216,15 @@ Information about rights held in and over the resource.
177
216
 
178
217
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
179
218
 
219
+ #### Inherited from
220
+
221
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:rights`](IDcatResourceBase.md#dctermsrights)
222
+
180
223
  ***
181
224
 
182
- ### dcterms:conformsTo?
225
+ ### dcterms:conformsTo? {#dctermsconformsto}
183
226
 
184
- > `optional` **dcterms:conformsTo**: `ObjectOrArray`\<`string`\>
227
+ > `optional` **dcterms:conformsTo?**: `ObjectOrArray`\<`string`\>
185
228
 
186
229
  An established standard to which the resource conforms.
187
230
 
@@ -189,11 +232,15 @@ An established standard to which the resource conforms.
189
232
 
190
233
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
191
234
 
235
+ #### Inherited from
236
+
237
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:conformsTo`](IDcatResourceBase.md#dctermsconformsto)
238
+
192
239
  ***
193
240
 
194
- ### dcterms:type?
241
+ ### dcterms:type? {#dctermstype}
195
242
 
196
- > `optional` **dcterms:type**: `string`
243
+ > `optional` **dcterms:type?**: `string`
197
244
 
198
245
  The nature or genre of the resource.
199
246
 
@@ -201,11 +248,15 @@ The nature or genre of the resource.
201
248
 
202
249
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
203
250
 
251
+ #### Inherited from
252
+
253
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcterms:type`](IDcatResourceBase.md#dctermstype)
254
+
204
255
  ***
205
256
 
206
- ### dcat:contactPoint?
257
+ ### dcat:contactPoint? {#dcatcontactpoint}
207
258
 
208
- > `optional` **dcat:contactPoint**: `string` \| `IJsonLdNodeObject`
259
+ > `optional` **dcat:contactPoint?**: `string` \| `IJsonLdNodeObject`
209
260
 
210
261
  Relevant contact information for the catalogued resource.
211
262
 
@@ -213,11 +264,15 @@ Relevant contact information for the catalogued resource.
213
264
 
214
265
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
215
266
 
267
+ #### Inherited from
268
+
269
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcat:contactPoint`](IDcatResourceBase.md#dcatcontactpoint)
270
+
216
271
  ***
217
272
 
218
- ### dcat:keyword?
273
+ ### dcat:keyword? {#dcatkeyword}
219
274
 
220
- > `optional` **dcat:keyword**: [`DcatLiteralType`](../type-aliases/DcatLiteralType.md)
275
+ > `optional` **dcat:keyword?**: `ObjectOrArray`\<`string`\>
221
276
 
222
277
  A keyword or tag describing the resource.
223
278
 
@@ -225,11 +280,15 @@ A keyword or tag describing the resource.
225
280
 
226
281
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
227
282
 
283
+ #### Inherited from
284
+
285
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcat:keyword`](IDcatResourceBase.md#dcatkeyword)
286
+
228
287
  ***
229
288
 
230
- ### dcat:theme?
289
+ ### dcat:theme? {#dcattheme}
231
290
 
232
- > `optional` **dcat:theme**: `ObjectOrArray`\<`string`\>
291
+ > `optional` **dcat:theme?**: `ObjectOrArray`\<`string`\>
233
292
 
234
293
  A main category of the resource. A resource can have multiple themes.
235
294
 
@@ -237,11 +296,15 @@ A main category of the resource. A resource can have multiple themes.
237
296
 
238
297
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
239
298
 
299
+ #### Inherited from
300
+
301
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcat:theme`](IDcatResourceBase.md#dcattheme)
302
+
240
303
  ***
241
304
 
242
- ### dcat:landingPage?
305
+ ### dcat:landingPage? {#dcatlandingpage}
243
306
 
244
- > `optional` **dcat:landingPage**: `ObjectOrArray`\<`string`\>
307
+ > `optional` **dcat:landingPage?**: `ObjectOrArray`\<`string`\>
245
308
 
246
309
  A Web page that can be navigated to gain access to the resource.
247
310
 
@@ -249,11 +312,15 @@ A Web page that can be navigated to gain access to the resource.
249
312
 
250
313
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
251
314
 
315
+ #### Inherited from
316
+
317
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcat:landingPage`](IDcatResourceBase.md#dcatlandingpage)
318
+
252
319
  ***
253
320
 
254
- ### dcat:qualifiedRelation?
321
+ ### dcat:qualifiedRelation? {#dcatqualifiedrelation}
255
322
 
256
- > `optional` **dcat:qualifiedRelation**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
323
+ > `optional` **dcat:qualifiedRelation?**: `string` \| [`IDcatRelationship`](IDcatRelationship.md)
257
324
 
258
325
  Link to a description of a relationship with another resource.
259
326
 
@@ -261,14 +328,22 @@ Link to a description of a relationship with another resource.
261
328
 
262
329
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
263
330
 
331
+ #### Inherited from
332
+
333
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`dcat:qualifiedRelation`](IDcatResourceBase.md#dcatqualifiedrelation)
334
+
264
335
  ***
265
336
 
266
- ### odrl:hasPolicy?
337
+ ### odrl:hasPolicy? {#odrlhaspolicy}
267
338
 
268
- > `optional` **odrl:hasPolicy**: `IOdrlPolicy`
339
+ > `optional` **odrl:hasPolicy?**: `JsonLdObjectWithOptionalContext`\<`IOdrlPolicy`\>
269
340
 
270
341
  An ODRL conformant policy expressing the rights associated with the resource.
271
342
 
272
343
  #### See
273
344
 
274
345
  https://www.w3.org/TR/vocab-dcat-3/#Property:resource_has_policy
346
+
347
+ #### Inherited from
348
+
349
+ [`IDcatResourceBase`](IDcatResourceBase.md).[`odrl:hasPolicy`](IDcatResourceBase.md#odrlhaspolicy)