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

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 (87) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +21 -0
  3. package/dist/es/dataTypes/dcatDataTypes.js +77 -0
  4. package/dist/es/dataTypes/dcatDataTypes.js.map +1 -0
  5. package/dist/es/index.js +18 -0
  6. package/dist/es/index.js.map +1 -0
  7. package/dist/es/models/ICatalog.js +2 -0
  8. package/dist/es/models/ICatalog.js.map +1 -0
  9. package/dist/es/models/ICatalogRecord.js +2 -0
  10. package/dist/es/models/ICatalogRecord.js.map +1 -0
  11. package/dist/es/models/IDataService.js +2 -0
  12. package/dist/es/models/IDataService.js.map +1 -0
  13. package/dist/es/models/IDataset.js +2 -0
  14. package/dist/es/models/IDataset.js.map +1 -0
  15. package/dist/es/models/IDatasetSeries.js +2 -0
  16. package/dist/es/models/IDatasetSeries.js.map +1 -0
  17. package/dist/es/models/IDistribution.js +2 -0
  18. package/dist/es/models/IDistribution.js.map +1 -0
  19. package/dist/es/models/IRelationship.js +2 -0
  20. package/dist/es/models/IRelationship.js.map +1 -0
  21. package/dist/es/models/IResource.js +2 -0
  22. package/dist/es/models/IResource.js.map +1 -0
  23. package/dist/es/models/IRole.js +2 -0
  24. package/dist/es/models/IRole.js.map +1 -0
  25. package/dist/es/models/dcatClasses.js +56 -0
  26. package/dist/es/models/dcatClasses.js.map +1 -0
  27. package/dist/es/models/dcatContextType.js +2 -0
  28. package/dist/es/models/dcatContextType.js.map +1 -0
  29. package/dist/es/models/dcatContexts.js +38 -0
  30. package/dist/es/models/dcatContexts.js.map +1 -0
  31. package/dist/es/models/dcatRelationshipTypes.js +57 -0
  32. package/dist/es/models/dcatRelationshipTypes.js.map +1 -0
  33. package/dist/es/models/types/dcatPropertyTypes.js +4 -0
  34. package/dist/es/models/types/dcatPropertyTypes.js.map +1 -0
  35. package/dist/es/schemas/Catalog.json +491 -0
  36. package/dist/es/schemas/CatalogRecord.json +212 -0
  37. package/dist/es/schemas/DataService.json +358 -0
  38. package/dist/es/schemas/Dataset.json +407 -0
  39. package/dist/es/schemas/DatasetSeries.json +425 -0
  40. package/dist/es/schemas/Distribution.json +268 -0
  41. package/dist/es/schemas/Relationship.json +187 -0
  42. package/dist/es/schemas/Resource.json +342 -0
  43. package/dist/es/schemas/Role.json +182 -0
  44. package/dist/types/dataTypes/dcatDataTypes.d.ts +14 -0
  45. package/dist/types/index.d.ts +15 -0
  46. package/dist/types/models/ICatalog.d.ts +53 -0
  47. package/dist/types/models/ICatalogRecord.d.ts +52 -0
  48. package/dist/types/models/IDataService.d.ts +31 -0
  49. package/dist/types/models/IDataset.d.ts +60 -0
  50. package/dist/types/models/IDatasetSeries.d.ts +30 -0
  51. package/dist/types/models/IDistribution.d.ts +122 -0
  52. package/dist/types/models/IRelationship.d.ts +30 -0
  53. package/dist/types/models/IResource.d.ts +119 -0
  54. package/dist/types/models/IRole.d.ts +25 -0
  55. package/dist/types/models/dcatClasses.d.ts +56 -0
  56. package/dist/types/models/dcatContextType.d.ts +11 -0
  57. package/dist/types/models/dcatContexts.d.ts +38 -0
  58. package/dist/types/models/dcatRelationshipTypes.d.ts +57 -0
  59. package/dist/types/models/types/dcatPropertyTypes.d.ts +29 -0
  60. package/docs/changelog.md +22 -0
  61. package/docs/examples.md +1 -0
  62. package/docs/reference/classes/DcatDataTypes.md +38 -0
  63. package/docs/reference/index.md +36 -0
  64. package/docs/reference/interfaces/ICatalog.md +557 -0
  65. package/docs/reference/interfaces/ICatalogRecord.md +113 -0
  66. package/docs/reference/interfaces/IDataService.md +382 -0
  67. package/docs/reference/interfaces/IDataset.md +447 -0
  68. package/docs/reference/interfaces/IDatasetSeries.md +509 -0
  69. package/docs/reference/interfaces/IDistribution.md +281 -0
  70. package/docs/reference/interfaces/IRelationship.md +65 -0
  71. package/docs/reference/interfaces/IResource.md +274 -0
  72. package/docs/reference/interfaces/IRole.md +53 -0
  73. package/docs/reference/type-aliases/DateTimeType.md +6 -0
  74. package/docs/reference/type-aliases/DcatClasses.md +5 -0
  75. package/docs/reference/type-aliases/DcatContextType.md +16 -0
  76. package/docs/reference/type-aliases/DcatContexts.md +5 -0
  77. package/docs/reference/type-aliases/DcatRelationshipType.md +5 -0
  78. package/docs/reference/type-aliases/DecimalType.md +5 -0
  79. package/docs/reference/type-aliases/DurationType.md +5 -0
  80. package/docs/reference/type-aliases/IriType.md +5 -0
  81. package/docs/reference/type-aliases/LiteralType.md +5 -0
  82. package/docs/reference/type-aliases/NonNegativeIntegerType.md +5 -0
  83. package/docs/reference/variables/DcatClasses.md +102 -0
  84. package/docs/reference/variables/DcatContexts.md +63 -0
  85. package/docs/reference/variables/DcatRelationshipType.md +103 -0
  86. package/locales/en.json +1 -0
  87. package/package.json +57 -0
@@ -0,0 +1,281 @@
1
+ # Interface: IDistribution
2
+
3
+ Interface for DCAT Distribution.
4
+ A specific representation of a dataset. A dataset might be available in multiple
5
+ serializations that may differ in various ways.
6
+
7
+ ## See
8
+
9
+ https://www.w3.org/TR/vocab-dcat-3/#Class:Distribution
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
+ ## Properties
20
+
21
+ ### @context?
22
+
23
+ > `optional` **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
24
+
25
+ The JSON-LD context for the resource.
26
+
27
+ #### Overrides
28
+
29
+ `IJsonLdNodeObject.@context`
30
+
31
+ ***
32
+
33
+ ### @type
34
+
35
+ > **@type**: `"Distribution"`
36
+
37
+ The type identifier, typically "Distribution".
38
+
39
+ #### Overrides
40
+
41
+ `IJsonLdNodeObject.@type`
42
+
43
+ ***
44
+
45
+ ### dcterms:title?
46
+
47
+ > `optional` **dcterms:title**: [`LiteralType`](../type-aliases/LiteralType.md)
48
+
49
+ A name given to the distribution.
50
+
51
+ #### See
52
+
53
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_title
54
+
55
+ ***
56
+
57
+ ### dcterms:description?
58
+
59
+ > `optional` **dcterms:description**: [`LiteralType`](../type-aliases/LiteralType.md)
60
+
61
+ A free-text account of the distribution.
62
+
63
+ #### See
64
+
65
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_description
66
+
67
+ ***
68
+
69
+ ### dcterms:issued?
70
+
71
+ > `optional` **dcterms:issued**: `string`
72
+
73
+ Date of formal issuance of the distribution.
74
+
75
+ #### See
76
+
77
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_release_date
78
+
79
+ ***
80
+
81
+ ### dcterms:modified?
82
+
83
+ > `optional` **dcterms:modified**: `string`
84
+
85
+ Most recent date on which the distribution was changed, updated or modified.
86
+
87
+ #### See
88
+
89
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_update_date
90
+
91
+ ***
92
+
93
+ ### dcterms:license?
94
+
95
+ > `optional` **dcterms:license**: `string`
96
+
97
+ A legal document under which the distribution is made available.
98
+
99
+ #### See
100
+
101
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_license
102
+
103
+ ***
104
+
105
+ ### dcterms:accessRights?
106
+
107
+ > `optional` **dcterms:accessRights**: `string`
108
+
109
+ Information about who can access the distribution.
110
+
111
+ #### See
112
+
113
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_access_rights
114
+
115
+ ***
116
+
117
+ ### dcterms:rights?
118
+
119
+ > `optional` **dcterms:rights**: `string`
120
+
121
+ Information about rights held in and over the distribution.
122
+
123
+ #### See
124
+
125
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_rights
126
+
127
+ ***
128
+
129
+ ### dcat:accessURL?
130
+
131
+ > `optional` **dcat:accessURL**: `string`
132
+
133
+ A URL of the resource that gives access to a distribution of the dataset.
134
+
135
+ #### See
136
+
137
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_access_url
138
+
139
+ ***
140
+
141
+ ### dcat:accessService?
142
+
143
+ > `optional` **dcat:accessService**: `string`
144
+
145
+ A data service that gives access to the distribution.
146
+
147
+ #### See
148
+
149
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_access_service
150
+
151
+ ***
152
+
153
+ ### dcat:downloadURL?
154
+
155
+ > `optional` **dcat:downloadURL**: `string`
156
+
157
+ The URL of the downloadable file in a given format.
158
+
159
+ #### See
160
+
161
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_download_url
162
+
163
+ ***
164
+
165
+ ### dcat:byteSize?
166
+
167
+ > `optional` **dcat:byteSize**: `number`
168
+
169
+ The size of the distribution in bytes.
170
+
171
+ #### See
172
+
173
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_byte_size
174
+
175
+ ***
176
+
177
+ ### dcat:spatialResolutionInMeters?
178
+
179
+ > `optional` **dcat:spatialResolutionInMeters**: `number`
180
+
181
+ The minimum spatial separation resolvable in a distribution, measured in meters.
182
+
183
+ #### See
184
+
185
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_spatial_resolution
186
+
187
+ ***
188
+
189
+ ### dcat:temporalResolution?
190
+
191
+ > `optional` **dcat:temporalResolution**: `string`
192
+
193
+ Minimum time period resolvable in the distribution.
194
+
195
+ #### See
196
+
197
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_temporal_resolution
198
+
199
+ ***
200
+
201
+ ### dcterms:conformsTo?
202
+
203
+ > `optional` **dcterms:conformsTo**: `ObjectOrArray`\<`string`\>
204
+
205
+ An established standard to which the distribution conforms.
206
+
207
+ #### See
208
+
209
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_conforms_to
210
+
211
+ ***
212
+
213
+ ### dcat:mediaType?
214
+
215
+ > `optional` **dcat:mediaType**: `string`
216
+
217
+ The media type of the distribution as defined by IANA.
218
+
219
+ #### See
220
+
221
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_media_type
222
+
223
+ ***
224
+
225
+ ### dcterms:format?
226
+
227
+ > `optional` **dcterms:format**: `string`
228
+
229
+ The file format of the distribution.
230
+
231
+ #### See
232
+
233
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_format
234
+
235
+ ***
236
+
237
+ ### dcat:compressFormat?
238
+
239
+ > `optional` **dcat:compressFormat**: `string`
240
+
241
+ The compression format of the distribution.
242
+
243
+ #### See
244
+
245
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_compression_format
246
+
247
+ ***
248
+
249
+ ### dcat:packageFormat?
250
+
251
+ > `optional` **dcat:packageFormat**: `string`
252
+
253
+ The package format of the distribution.
254
+
255
+ #### See
256
+
257
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_packaging_format
258
+
259
+ ***
260
+
261
+ ### spdx:checksum?
262
+
263
+ > `optional` **spdx:checksum**: `string`
264
+
265
+ The checksum property provides a mechanism to verify the data integrity.
266
+
267
+ #### See
268
+
269
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_checksum
270
+
271
+ ***
272
+
273
+ ### odrl:hasPolicy?
274
+
275
+ > `optional` **odrl:hasPolicy**: `IOdrlPolicy`
276
+
277
+ An ODRL conformant policy expressing the rights associated with the distribution.
278
+
279
+ #### See
280
+
281
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_has_policy
@@ -0,0 +1,65 @@
1
+ # Interface: IRelationship
2
+
3
+ Interface for DCAT Relationship.
4
+ An association class for attaching additional information to a relationship
5
+ between DCAT Resources.
6
+
7
+ ## See
8
+
9
+ https://www.w3.org/TR/vocab-dcat-3/#Class:Relationship
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
+ ## Properties
20
+
21
+ ### @context
22
+
23
+ > **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
24
+
25
+ The JSON-LD context for the resource.
26
+
27
+ #### Overrides
28
+
29
+ `IJsonLdNodeObject.@context`
30
+
31
+ ***
32
+
33
+ ### @type
34
+
35
+ > **@type**: `"Relationship"`
36
+
37
+ The type identifier, typically "Relationship".
38
+
39
+ #### Overrides
40
+
41
+ `IJsonLdNodeObject.@type`
42
+
43
+ ***
44
+
45
+ ### dcterms:relation?
46
+
47
+ > `optional` **dcterms:relation**: `string`
48
+
49
+ The link to a related resource.
50
+
51
+ #### See
52
+
53
+ https://www.w3.org/TR/vocab-dcat-3/#Property:relationship_relation
54
+
55
+ ***
56
+
57
+ ### dcat:hadRole?
58
+
59
+ > `optional` **dcat:hadRole**: [`IRole`](IRole.md)
60
+
61
+ The function of an entity or agent with respect to another resource.
62
+
63
+ #### See
64
+
65
+ https://www.w3.org/TR/vocab-dcat-3/#Property:relationship_hadRole
@@ -0,0 +1,274 @@
1
+ # Interface: IResource
2
+
3
+ Base interface for DCAT catalogued resources.
4
+ This is the parent class of dcat:Dataset, dcat:DataService, and dcat:Catalog.
5
+
6
+ ## See
7
+
8
+ https://www.w3.org/TR/vocab-dcat-3/#Class:Resource
9
+
10
+ ## Extends
11
+
12
+ - `IJsonLdNodeObject`
13
+
14
+ ## Extended by
15
+
16
+ - [`IDataService`](IDataService.md)
17
+ - [`IDataset`](IDataset.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`
22
+
23
+ ## Properties
24
+
25
+ ### @context?
26
+
27
+ > `optional` **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
28
+
29
+ The JSON-LD context for the resource.
30
+
31
+ #### Overrides
32
+
33
+ `IJsonLdNodeObject.@context`
34
+
35
+ ***
36
+
37
+ ### @type
38
+
39
+ > **@type**: `"Catalog"` \| `"Resource"` \| `"Dataset"` \| `"DataService"` \| `"DatasetSeries"`
40
+
41
+ The type of the resource.
42
+ Typically "Catalog", "Dataset", "DataService", "DatasetSeries", or the base "Resource".
43
+
44
+ #### Overrides
45
+
46
+ `IJsonLdNodeObject.@type`
47
+
48
+ ***
49
+
50
+ ### dcterms:title?
51
+
52
+ > `optional` **dcterms:title**: [`LiteralType`](../type-aliases/LiteralType.md)
53
+
54
+ A name given to the resource.
55
+
56
+ #### See
57
+
58
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title
59
+
60
+ ***
61
+
62
+ ### dcterms:description?
63
+
64
+ > `optional` **dcterms:description**: [`LiteralType`](../type-aliases/LiteralType.md)
65
+
66
+ A free-text account of the resource.
67
+
68
+ #### See
69
+
70
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description
71
+
72
+ ***
73
+
74
+ ### dcterms:identifier?
75
+
76
+ > `optional` **dcterms:identifier**: [`LiteralType`](../type-aliases/LiteralType.md)
77
+
78
+ A unique identifier of the resource.
79
+
80
+ #### See
81
+
82
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier
83
+
84
+ ***
85
+
86
+ ### dcterms:issued?
87
+
88
+ > `optional` **dcterms:issued**: `string`
89
+
90
+ Date of formal issuance (publication) of the resource.
91
+
92
+ #### See
93
+
94
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date
95
+
96
+ ***
97
+
98
+ ### dcterms:modified?
99
+
100
+ > `optional` **dcterms:modified**: `string`
101
+
102
+ Most recent date on which the resource was changed, updated or modified.
103
+
104
+ #### See
105
+
106
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date
107
+
108
+ ***
109
+
110
+ ### dcterms:language?
111
+
112
+ > `optional` **dcterms:language**: `ObjectOrArray`\<`string`\>
113
+
114
+ A language of the resource.
115
+
116
+ #### See
117
+
118
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
119
+
120
+ ***
121
+
122
+ ### dcterms:publisher?
123
+
124
+ > `optional` **dcterms:publisher**: `string` \| `IAgent`
125
+
126
+ An entity responsible for making the resource available.
127
+
128
+ #### See
129
+
130
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
131
+
132
+ ***
133
+
134
+ ### dcterms:creator?
135
+
136
+ > `optional` **dcterms:creator**: `IAgent`
137
+
138
+ An entity responsible for producing the resource.
139
+
140
+ #### See
141
+
142
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
143
+
144
+ ***
145
+
146
+ ### dcterms:accessRights?
147
+
148
+ > `optional` **dcterms:accessRights**: `string` \| `IJsonLdNodeObject`
149
+
150
+ Information about who can access the resource or an indication of its security status.
151
+
152
+ #### See
153
+
154
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
155
+
156
+ ***
157
+
158
+ ### dcterms:license?
159
+
160
+ > `optional` **dcterms:license**: `string` \| `IJsonLdNodeObject`
161
+
162
+ A legal document under which the resource is made available.
163
+
164
+ #### See
165
+
166
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license
167
+
168
+ ***
169
+
170
+ ### dcterms:rights?
171
+
172
+ > `optional` **dcterms:rights**: `string` \| `IJsonLdNodeObject`
173
+
174
+ Information about rights held in and over the resource.
175
+
176
+ #### See
177
+
178
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights
179
+
180
+ ***
181
+
182
+ ### dcterms:conformsTo?
183
+
184
+ > `optional` **dcterms:conformsTo**: `ObjectOrArray`\<`string`\>
185
+
186
+ An established standard to which the resource conforms.
187
+
188
+ #### See
189
+
190
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to
191
+
192
+ ***
193
+
194
+ ### dcterms:type?
195
+
196
+ > `optional` **dcterms:type**: `string`
197
+
198
+ The nature or genre of the resource.
199
+
200
+ #### See
201
+
202
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type
203
+
204
+ ***
205
+
206
+ ### dcat:contactPoint?
207
+
208
+ > `optional` **dcat:contactPoint**: `string` \| `IJsonLdNodeObject`
209
+
210
+ Relevant contact information for the catalogued resource.
211
+
212
+ #### See
213
+
214
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point
215
+
216
+ ***
217
+
218
+ ### dcat:keyword?
219
+
220
+ > `optional` **dcat:keyword**: [`LiteralType`](../type-aliases/LiteralType.md)
221
+
222
+ A keyword or tag describing the resource.
223
+
224
+ #### See
225
+
226
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword
227
+
228
+ ***
229
+
230
+ ### dcat:theme?
231
+
232
+ > `optional` **dcat:theme**: `ObjectOrArray`\<`string`\>
233
+
234
+ A main category of the resource. A resource can have multiple themes.
235
+
236
+ #### See
237
+
238
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme
239
+
240
+ ***
241
+
242
+ ### dcat:landingPage?
243
+
244
+ > `optional` **dcat:landingPage**: `ObjectOrArray`\<`string`\>
245
+
246
+ A Web page that can be navigated to gain access to the resource.
247
+
248
+ #### See
249
+
250
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page
251
+
252
+ ***
253
+
254
+ ### dcat:qualifiedRelation?
255
+
256
+ > `optional` **dcat:qualifiedRelation**: `string` \| [`IRelationship`](IRelationship.md)
257
+
258
+ Link to a description of a relationship with another resource.
259
+
260
+ #### See
261
+
262
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation
263
+
264
+ ***
265
+
266
+ ### odrl:hasPolicy?
267
+
268
+ > `optional` **odrl:hasPolicy**: `IOdrlPolicy`
269
+
270
+ An ODRL conformant policy expressing the rights associated with the resource.
271
+
272
+ #### See
273
+
274
+ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_has_policy
@@ -0,0 +1,53 @@
1
+ # Interface: IRole
2
+
3
+ Interface for DCAT Role.
4
+ A role is the function of a resource or agent with respect to another resource,
5
+ in the context of resource attribution or resource relationships.
6
+
7
+ ## See
8
+
9
+ https://www.w3.org/TR/vocab-dcat-3/#Class:Role
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
+ ## Properties
20
+
21
+ ### @context?
22
+
23
+ > `optional` **@context**: [`DcatContextType`](../type-aliases/DcatContextType.md)
24
+
25
+ The JSON-LD context for the resource.
26
+
27
+ #### Overrides
28
+
29
+ `IJsonLdNodeObject.@context`
30
+
31
+ ***
32
+
33
+ ### @type
34
+
35
+ > **@type**: `"Role"`
36
+
37
+ The type identifier, typically "Role".
38
+
39
+ #### Overrides
40
+
41
+ `IJsonLdNodeObject.@type`
42
+
43
+ ***
44
+
45
+ ### dcterms:title?
46
+
47
+ > `optional` **dcterms:title**: [`LiteralType`](../type-aliases/LiteralType.md)
48
+
49
+ A name given to the distribution.
50
+
51
+ #### See
52
+
53
+ https://www.w3.org/TR/vocab-dcat-3/#Property:distribution_title
@@ -0,0 +1,6 @@
1
+ # Type Alias: DateTimeType
2
+
3
+ > **DateTimeType** = `string`
4
+
5
+ Date/time values in ISO 8601 format.
6
+ Can be xsd:date, xsd:dateTime, or xsd:gYear.
@@ -0,0 +1,5 @@
1
+ # Type Alias: DcatClasses
2
+
3
+ > **DcatClasses** = *typeof* [`DcatClasses`](../variables/DcatClasses.md)\[keyof *typeof* [`DcatClasses`](../variables/DcatClasses.md)\]
4
+
5
+ The classes for DCAT.
@@ -0,0 +1,16 @@
1
+ # Type Alias: DcatContextType
2
+
3
+ > **DcatContextType** = `object` & `IJsonLdContextDefinition`
4
+
5
+ The DCAT JSON-LD context type.
6
+ Supports the DCAT context URL or arrays with additional context definitions.
7
+
8
+ ## Type Declaration
9
+
10
+ ### dcat
11
+
12
+ > **dcat**: *typeof* [`ContextRoot`](../variables/DcatContexts.md#contextroot)
13
+
14
+ ### dcterms
15
+
16
+ > **dcterms**: *typeof* `DublinCoreContexts.ContextTerms`
@@ -0,0 +1,5 @@
1
+ # Type Alias: DcatContexts
2
+
3
+ > **DcatContexts** = *typeof* [`DcatContexts`](../variables/DcatContexts.md)\[keyof *typeof* [`DcatContexts`](../variables/DcatContexts.md)\]
4
+
5
+ The contexts for DCAT.
@@ -0,0 +1,5 @@
1
+ # Type Alias: DcatRelationshipType
2
+
3
+ > **DcatRelationshipType** = *typeof* [`DcatRelationshipType`](../variables/DcatRelationshipType.md)\[keyof *typeof* [`DcatRelationshipType`](../variables/DcatRelationshipType.md)\]
4
+
5
+ The relationship types for DCAT.