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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. package/README.md +1 -1
  2. package/dist/es/dataTypes/dcatDataTypes.js +80 -49
  3. package/dist/es/dataTypes/dcatDataTypes.js.map +1 -1
  4. package/dist/es/index.js +6 -2
  5. package/dist/es/index.js.map +1 -1
  6. package/dist/es/models/IDcatCatalog.js.map +1 -1
  7. package/dist/es/models/IDcatCatalogBase.js +2 -0
  8. package/dist/es/models/IDcatCatalogBase.js.map +1 -0
  9. package/dist/es/models/IDcatCatalogRecord.js.map +1 -1
  10. package/dist/es/models/IDcatCatalogRecordBase.js +2 -0
  11. package/dist/es/models/IDcatCatalogRecordBase.js.map +1 -0
  12. package/dist/es/models/IDcatDataService.js.map +1 -1
  13. package/dist/es/models/IDcatDataServiceBase.js +2 -0
  14. package/dist/es/models/IDcatDataServiceBase.js.map +1 -0
  15. package/dist/es/models/IDcatDataset.js.map +1 -1
  16. package/dist/es/models/IDcatDatasetBase.js +2 -0
  17. package/dist/es/models/IDcatDatasetBase.js.map +1 -0
  18. package/dist/es/models/IDcatDatasetSeries.js.map +1 -1
  19. package/dist/es/models/IDcatDistribution.js.map +1 -1
  20. package/dist/es/models/IDcatDistributionBase.js +2 -0
  21. package/dist/es/models/IDcatDistributionBase.js.map +1 -0
  22. package/dist/es/models/IDcatRelationship.js.map +1 -1
  23. package/dist/es/models/IDcatResource.js.map +1 -1
  24. package/dist/es/models/IDcatResourceBase.js +2 -0
  25. package/dist/es/models/IDcatResourceBase.js.map +1 -0
  26. package/dist/es/models/IDcatRole.js.map +1 -1
  27. package/dist/es/models/dcatContextType.js.map +1 -1
  28. package/dist/es/models/dcatContexts.js +15 -19
  29. package/dist/es/models/dcatContexts.js.map +1 -1
  30. package/dist/es/schemas/DcatCatalog.json +10 -489
  31. package/dist/es/schemas/DcatCatalogBase.json +109 -0
  32. package/dist/es/schemas/DcatCatalogRecord.json +10 -210
  33. package/dist/es/schemas/DcatCatalogRecordBase.json +76 -0
  34. package/dist/es/schemas/DcatContextType.json +30 -0
  35. package/dist/es/schemas/DcatDataService.json +10 -356
  36. package/dist/es/schemas/DcatDataServiceBase.json +43 -0
  37. package/dist/es/schemas/DcatDataset.json +10 -405
  38. package/dist/es/schemas/DcatDatasetBase.json +94 -0
  39. package/dist/es/schemas/DcatDatasetSeries.json +17 -394
  40. package/dist/es/schemas/DcatDistribution.json +10 -266
  41. package/dist/es/schemas/DcatDistributionBase.json +134 -0
  42. package/dist/es/schemas/DcatRelationship.json +11 -170
  43. package/dist/es/schemas/DcatResource.json +10 -340
  44. package/dist/es/schemas/DcatResourceBase.json +663 -0
  45. package/dist/es/schemas/DcatRole.json +15 -167
  46. package/dist/types/dataTypes/dcatDataTypes.d.ts +0 -1
  47. package/dist/types/index.d.ts +6 -2
  48. package/dist/types/models/IDcatCatalog.d.ts +5 -43
  49. package/dist/types/models/IDcatCatalogBase.d.ts +54 -0
  50. package/dist/types/models/IDcatCatalogRecord.d.ts +2 -40
  51. package/dist/types/models/IDcatCatalogRecordBase.d.ts +51 -0
  52. package/dist/types/models/IDcatDataService.d.ts +5 -22
  53. package/dist/types/models/IDcatDataServiceBase.d.ts +31 -0
  54. package/dist/types/models/IDcatDataset.d.ts +5 -51
  55. package/dist/types/models/IDcatDatasetBase.d.ts +60 -0
  56. package/dist/types/models/IDcatDatasetSeries.d.ts +6 -0
  57. package/dist/types/models/IDcatDistribution.d.ts +2 -110
  58. package/dist/types/models/IDcatDistributionBase.d.ts +123 -0
  59. package/dist/types/models/IDcatRelationship.d.ts +2 -2
  60. package/dist/types/models/IDcatResource.d.ts +3 -109
  61. package/dist/types/models/IDcatResourceBase.d.ts +120 -0
  62. package/dist/types/models/IDcatRole.d.ts +8 -5
  63. package/dist/types/models/dcatContextType.d.ts +4 -4
  64. package/dist/types/models/dcatContexts.d.ts +15 -19
  65. package/docs/changelog.md +1125 -11
  66. package/docs/examples.md +25 -1
  67. package/docs/reference/classes/DcatDataTypes.md +2 -3
  68. package/docs/reference/index.md +6 -11
  69. package/docs/reference/interfaces/IDcatCatalog.md +138 -106
  70. package/docs/reference/interfaces/IDcatCatalogBase.md +558 -0
  71. package/docs/reference/interfaces/IDcatCatalogRecord.md +53 -25
  72. package/docs/reference/interfaces/IDcatCatalogRecordBase.md +101 -0
  73. package/docs/reference/interfaces/IDcatDataService.md +90 -74
  74. package/docs/reference/interfaces/IDcatDataServiceBase.md +382 -0
  75. package/docs/reference/interfaces/IDcatDataset.md +120 -85
  76. package/docs/reference/interfaces/IDcatDatasetBase.md +443 -0
  77. package/docs/reference/interfaces/IDcatDatasetSeries.md +88 -68
  78. package/docs/reference/interfaces/IDcatDistribution.md +137 -53
  79. package/docs/reference/interfaces/IDcatDistributionBase.md +269 -0
  80. package/docs/reference/interfaces/IDcatRelationship.md +6 -22
  81. package/docs/reference/interfaces/IDcatResource.md +132 -57
  82. package/docs/reference/interfaces/IDcatResourceBase.md +260 -0
  83. package/docs/reference/interfaces/IDcatRole.md +11 -19
  84. package/docs/reference/type-aliases/DcatContextType.md +4 -4
  85. package/docs/reference/variables/DcatClasses.md +9 -9
  86. package/docs/reference/variables/DcatContexts.md +21 -33
  87. package/docs/reference/variables/DcatRelationshipType.md +9 -9
  88. package/package.json +10 -10
  89. package/dist/es/models/types/dcatContextFreeTypes.js +0 -4
  90. package/dist/es/models/types/dcatContextFreeTypes.js.map +0 -1
  91. package/dist/es/models/types/dcatPropertyTypes.js +0 -4
  92. package/dist/es/models/types/dcatPropertyTypes.js.map +0 -1
  93. package/dist/types/models/types/dcatContextFreeTypes.d.ts +0 -40
  94. package/dist/types/models/types/dcatPropertyTypes.d.ts +0 -29
  95. package/docs/reference/type-aliases/CatalogOptionalContext.md +0 -11
  96. package/docs/reference/type-aliases/CatalogRecordOptionalContext.md +0 -11
  97. package/docs/reference/type-aliases/DataServiceOptionalContext.md +0 -11
  98. package/docs/reference/type-aliases/DatasetOptionalContext.md +0 -11
  99. package/docs/reference/type-aliases/DcatDateTimeType.md +0 -6
  100. package/docs/reference/type-aliases/DcatDecimalType.md +0 -5
  101. package/docs/reference/type-aliases/DcatDurationType.md +0 -5
  102. package/docs/reference/type-aliases/DcatIriType.md +0 -5
  103. package/docs/reference/type-aliases/DcatLiteralType.md +0 -5
  104. package/docs/reference/type-aliases/DcatNonNegativeIntegerType.md +0 -5
  105. package/docs/reference/type-aliases/DistributionOptionalContext.md +0 -11
@@ -1,277 +1,21 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "https://schema.twindev.org/w3c-dcat/DcatDistribution",
4
- "description": "Interface for DCAT Distribution. A specific representation of a dataset. A dataset might be available in multiple serializations that may differ in various ways.",
4
+ "title": "DcatDistribution",
5
+ "description": "Interface for DCAT Distribution.\nA specific representation of a dataset. A dataset might be available in multiple\nserializations that may differ in various ways.",
5
6
  "type": "object",
6
7
  "properties": {
7
8
  "@context": {
8
- "description": "The DCAT JSON-LD context type. Supports the DCAT context URL or arrays with additional context definitions.",
9
- "type": "object",
10
- "additionalProperties": {
11
- "anyOf": [
12
- {
13
- "$ref": "https://schema.twindev.org/json-ld/JsonLdExpandedTermDefinition"
14
- },
15
- {
16
- "type": [
17
- "null",
18
- "string"
19
- ]
20
- }
21
- ]
22
- },
23
- "properties": {
24
- "@base": {
25
- "type": [
26
- "string",
27
- "null"
28
- ]
29
- },
30
- "@direction": {
31
- "type": [
32
- "string",
33
- "null"
34
- ],
35
- "enum": [
36
- "ltr",
37
- "rtl",
38
- null
39
- ]
40
- },
41
- "@import": {
42
- "type": "string"
43
- },
44
- "@language": {
45
- "type": "string"
46
- },
47
- "@propagate": {
48
- "type": "boolean"
49
- },
50
- "@protected": {
51
- "type": "boolean"
52
- },
53
- "@type": {
54
- "type": "object",
55
- "properties": {
56
- "@container": {
57
- "type": "string",
58
- "const": "@set"
59
- },
60
- "@protected": {
61
- "type": "boolean"
62
- }
63
- },
64
- "required": [
65
- "@container"
66
- ],
67
- "additionalProperties": false
68
- },
69
- "@version": {
70
- "type": "string",
71
- "const": "1.1"
72
- },
73
- "@vocab": {
74
- "type": [
75
- "string",
76
- "null"
77
- ]
78
- },
79
- "dcat": {
80
- "type": "string",
81
- "const": "http://www.w3.org/ns/dcat#"
82
- },
83
- "dcterms": {
84
- "type": "string",
85
- "const": "http://purl.org/dc/terms/"
86
- },
87
- "odrl": {
88
- "type": "string",
89
- "const": "http://www.w3.org/ns/odrl/2/"
90
- },
91
- "foaf": {
92
- "type": "string",
93
- "const": "https://xmlns.com/foaf/0.1/"
94
- }
95
- },
96
- "required": [
97
- "dcat",
98
- "dcterms"
99
- ]
100
- },
101
- "@id": {
102
- "anyOf": [
103
- {
104
- "type": "string"
105
- },
106
- {
107
- "type": "array",
108
- "items": {
109
- "type": "string"
110
- }
111
- }
112
- ]
113
- },
114
- "@included": {
115
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
116
- },
117
- "@graph": {
118
- "anyOf": [
119
- {
120
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
121
- },
122
- {
123
- "type": "array",
124
- "items": {
125
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
126
- }
127
- }
128
- ]
129
- },
130
- "@nest": {
131
- "anyOf": [
132
- {
133
- "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
134
- },
135
- {
136
- "type": "array",
137
- "items": {
138
- "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
139
- }
140
- }
141
- ]
142
- },
143
- "@type": {
144
- "type": "string",
145
- "const": "dcat:Distribution",
146
- "description": "The type identifier, typically \"Distribution\"."
147
- },
148
- "@reverse": {
149
- "type": "object",
150
- "additionalProperties": {
151
- "type": "string"
152
- }
153
- },
154
- "@index": {
155
- "type": "string"
156
- },
157
- "dcterms:title": {
158
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatLiteralType",
159
- "description": "A name given to the distribution."
160
- },
161
- "dcterms:description": {
162
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatLiteralType",
163
- "description": "A free-text account of the distribution."
164
- },
165
- "dcterms:issued": {
166
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatDateTimeType",
167
- "description": "Date of formal issuance of the distribution."
168
- },
169
- "dcterms:modified": {
170
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatDateTimeType",
171
- "description": "Most recent date on which the distribution was changed, updated or modified."
172
- },
173
- "dcterms:license": {
174
- "type": "string",
175
- "description": "A legal document under which the distribution is made available."
176
- },
177
- "dcterms:accessRights": {
178
- "type": "string",
179
- "description": "Information about who can access the distribution."
180
- },
181
- "dcterms:rights": {
182
- "type": "string",
183
- "description": "Information about rights held in and over the distribution."
184
- },
185
- "dcat:accessURL": {
186
- "type": "string",
187
- "description": "A URL of the resource that gives access to a distribution of the dataset."
188
- },
189
- "dcat:accessService": {
190
- "type": "string",
191
- "description": "A data service that gives access to the distribution."
192
- },
193
- "dcat:downloadURL": {
194
- "type": "string",
195
- "description": "The URL of the downloadable file in a given format."
196
- },
197
- "dcat:byteSize": {
198
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatNonNegativeIntegerType",
199
- "description": "The size of the distribution in bytes."
200
- },
201
- "dcat:spatialResolutionInMeters": {
202
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatDecimalType",
203
- "description": "The minimum spatial separation resolvable in a distribution, measured in meters."
204
- },
205
- "dcat:temporalResolution": {
206
- "$ref": "https://schema.twindev.org/w3c-dcat/DcatDurationType",
207
- "description": "Minimum time period resolvable in the distribution."
208
- },
209
- "dcterms:conformsTo": {
210
- "description": "Object or array data type",
211
- "anyOf": [
212
- {
213
- "type": "string"
214
- },
215
- {
216
- "type": "array",
217
- "items": {
218
- "type": "string"
219
- }
220
- }
221
- ]
222
- },
223
- "dcat:mediaType": {
224
- "type": "string",
225
- "description": "The media type of the distribution as defined by IANA."
226
- },
227
- "dcterms:format": {
228
- "type": "string",
229
- "description": "The file format of the distribution."
230
- },
231
- "dcat:compressFormat": {
232
- "type": "string",
233
- "description": "The compression format of the distribution."
234
- },
235
- "dcat:packageFormat": {
236
- "type": "string",
237
- "description": "The package format of the distribution."
238
- },
239
- "spdx:checksum": {
240
- "type": "string",
241
- "description": "The checksum property provides a mechanism to verify the data integrity."
242
- },
243
- "odrl:hasPolicy": {
244
- "$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy",
245
- "description": "An ODRL conformant policy expressing the rights associated with the distribution."
9
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatContextType",
10
+ "description": "The JSON-LD context for the resource."
246
11
  }
247
12
  },
248
13
  "required": [
249
- "@context",
250
- "@type"
14
+ "@context"
251
15
  ],
252
- "additionalProperties": {
253
- "anyOf": [
254
- {
255
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
256
- },
257
- {
258
- "$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
259
- },
260
- {
261
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
262
- },
263
- {
264
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
265
- },
266
- {
267
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
268
- },
269
- {
270
- "$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
271
- },
272
- {
273
- "type": "array"
274
- }
275
- ]
276
- }
16
+ "allOf": [
17
+ {
18
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatDistributionBase"
19
+ }
20
+ ]
277
21
  }
@@ -0,0 +1,134 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://schema.twindev.org/w3c-dcat/DcatDistributionBase",
4
+ "title": "DcatDistributionBase",
5
+ "description": "Base interface for DCAT Distribution without JSON-LD context.\nThis is the context-free variant of IDcatDistribution, intended for embedding\ndistribution objects inline within datasets where the context is provided by the enclosing document.",
6
+ "type": "object",
7
+ "properties": {
8
+ "@type": {
9
+ "const": "dcat:Distribution",
10
+ "description": "The type identifier, typically \"Distribution\"."
11
+ },
12
+ "@id": {
13
+ "type": "string",
14
+ "description": "The unique identifier for the distribution object."
15
+ },
16
+ "dcterms:title": {
17
+ "anyOf": [
18
+ {
19
+ "type": "string"
20
+ },
21
+ {
22
+ "type": "array",
23
+ "items": {
24
+ "type": "string"
25
+ }
26
+ }
27
+ ],
28
+ "description": "A name given to the distribution."
29
+ },
30
+ "dcterms:description": {
31
+ "anyOf": [
32
+ {
33
+ "type": "string"
34
+ },
35
+ {
36
+ "type": "array",
37
+ "items": {
38
+ "type": "string"
39
+ }
40
+ }
41
+ ],
42
+ "description": "A free-text account of the distribution."
43
+ },
44
+ "dcterms:issued": {
45
+ "type": "string",
46
+ "description": "Date of formal issuance of the distribution.",
47
+ "format": "date-time"
48
+ },
49
+ "dcterms:modified": {
50
+ "type": "string",
51
+ "description": "Most recent date on which the distribution was changed, updated or modified.",
52
+ "format": "date-time"
53
+ },
54
+ "dcterms:license": {
55
+ "type": "string",
56
+ "description": "A legal document under which the distribution is made available."
57
+ },
58
+ "dcterms:accessRights": {
59
+ "type": "string",
60
+ "description": "Information about who can access the distribution."
61
+ },
62
+ "dcterms:rights": {
63
+ "type": "string",
64
+ "description": "Information about rights held in and over the distribution."
65
+ },
66
+ "dcat:accessURL": {
67
+ "type": "string",
68
+ "description": "A URL of the resource that gives access to a distribution of the dataset."
69
+ },
70
+ "dcat:accessService": {
71
+ "type": "string",
72
+ "description": "A data service that gives access to the distribution."
73
+ },
74
+ "dcat:downloadURL": {
75
+ "type": "string",
76
+ "description": "The URL of the downloadable file in a given format."
77
+ },
78
+ "dcat:byteSize": {
79
+ "type": "number",
80
+ "description": "The size of the distribution in bytes.",
81
+ "minimum": 0
82
+ },
83
+ "dcat:spatialResolutionInMeters": {
84
+ "type": "number",
85
+ "description": "The minimum spatial separation resolvable in a distribution, measured in meters."
86
+ },
87
+ "dcat:temporalResolution": {
88
+ "type": "string",
89
+ "description": "Minimum time period resolvable in the distribution.",
90
+ "format": "duration"
91
+ },
92
+ "dcterms:conformsTo": {
93
+ "anyOf": [
94
+ {
95
+ "type": "string"
96
+ },
97
+ {
98
+ "type": "array",
99
+ "items": {
100
+ "type": "string"
101
+ }
102
+ }
103
+ ],
104
+ "description": "An established standard to which the distribution conforms."
105
+ },
106
+ "dcat:mediaType": {
107
+ "type": "string",
108
+ "description": "The media type of the distribution as defined by IANA."
109
+ },
110
+ "dcterms:format": {
111
+ "type": "string",
112
+ "description": "The file format of the distribution."
113
+ },
114
+ "dcat:compressFormat": {
115
+ "type": "string",
116
+ "description": "The compression format of the distribution."
117
+ },
118
+ "dcat:packageFormat": {
119
+ "type": "string",
120
+ "description": "The package format of the distribution."
121
+ },
122
+ "spdx:checksum": {
123
+ "type": "string",
124
+ "description": "The checksum property provides a mechanism to verify the data integrity."
125
+ },
126
+ "odrl:hasPolicy": {
127
+ "$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy",
128
+ "description": "An ODRL conformant policy expressing the rights associated with the distribution."
129
+ }
130
+ },
131
+ "required": [
132
+ "@type"
133
+ ]
134
+ }
@@ -1,161 +1,27 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "https://schema.twindev.org/w3c-dcat/DcatRelationship",
4
- "description": "Interface for DCAT Relationship. An association class for attaching additional information to a relationship between DCAT Resources.",
4
+ "title": "DcatRelationship",
5
+ "description": "Interface for DCAT Relationship.\nAn association class for attaching additional information to a relationship\nbetween DCAT Resources.",
5
6
  "type": "object",
6
7
  "properties": {
7
8
  "@context": {
8
- "description": "The DCAT JSON-LD context type. Supports the DCAT context URL or arrays with additional context definitions.",
9
- "type": "object",
10
- "additionalProperties": {
11
- "anyOf": [
12
- {
13
- "$ref": "https://schema.twindev.org/json-ld/JsonLdExpandedTermDefinition"
14
- },
15
- {
16
- "type": [
17
- "null",
18
- "string"
19
- ]
20
- }
21
- ]
22
- },
23
- "properties": {
24
- "@base": {
25
- "type": [
26
- "string",
27
- "null"
28
- ]
29
- },
30
- "@direction": {
31
- "type": [
32
- "string",
33
- "null"
34
- ],
35
- "enum": [
36
- "ltr",
37
- "rtl",
38
- null
39
- ]
40
- },
41
- "@import": {
42
- "type": "string"
43
- },
44
- "@language": {
45
- "type": "string"
46
- },
47
- "@propagate": {
48
- "type": "boolean"
49
- },
50
- "@protected": {
51
- "type": "boolean"
52
- },
53
- "@type": {
54
- "type": "object",
55
- "properties": {
56
- "@container": {
57
- "type": "string",
58
- "const": "@set"
59
- },
60
- "@protected": {
61
- "type": "boolean"
62
- }
63
- },
64
- "required": [
65
- "@container"
66
- ],
67
- "additionalProperties": false
68
- },
69
- "@version": {
70
- "type": "string",
71
- "const": "1.1"
72
- },
73
- "@vocab": {
74
- "type": [
75
- "string",
76
- "null"
77
- ]
78
- },
79
- "dcat": {
80
- "type": "string",
81
- "const": "http://www.w3.org/ns/dcat#"
82
- },
83
- "dcterms": {
84
- "type": "string",
85
- "const": "http://purl.org/dc/terms/"
86
- },
87
- "odrl": {
88
- "type": "string",
89
- "const": "http://www.w3.org/ns/odrl/2/"
90
- },
91
- "foaf": {
92
- "type": "string",
93
- "const": "https://xmlns.com/foaf/0.1/"
94
- }
95
- },
96
- "required": [
97
- "dcat",
98
- "dcterms"
99
- ]
9
+ "$ref": "https://schema.twindev.org/w3c-dcat/DcatContextType",
10
+ "description": "The JSON-LD context for the resource."
100
11
  },
101
- "@id": {
102
- "anyOf": [
103
- {
104
- "type": "string"
105
- },
106
- {
107
- "type": "array",
108
- "items": {
109
- "type": "string"
110
- }
111
- }
112
- ]
113
- },
114
- "@included": {
115
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
12
+ "@type": {
13
+ "const": "dcat:Relationship",
14
+ "description": "The type identifier, typically \"Relationship\"."
116
15
  },
117
- "@graph": {
16
+ "dcterms:relation": {
118
17
  "anyOf": [
119
18
  {
120
19
  "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
121
20
  },
122
21
  {
123
- "type": "array",
124
- "items": {
125
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
126
- }
127
- }
128
- ]
129
- },
130
- "@nest": {
131
- "anyOf": [
132
- {
133
- "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
134
- },
135
- {
136
- "type": "array",
137
- "items": {
138
- "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
139
- }
22
+ "type": "string"
140
23
  }
141
- ]
142
- },
143
- "@type": {
144
- "type": "string",
145
- "const": "dcat:Relationship",
146
- "description": "The type identifier, typically \"Relationship\"."
147
- },
148
- "@reverse": {
149
- "type": "object",
150
- "additionalProperties": {
151
- "type": "string"
152
- }
153
- },
154
- "@index": {
155
- "type": "string"
156
- },
157
- "dcterms:relation": {
158
- "type": "string",
24
+ ],
159
25
  "description": "The link to a related resource."
160
26
  },
161
27
  "dcat:hadRole": {
@@ -166,30 +32,5 @@
166
32
  "required": [
167
33
  "@context",
168
34
  "@type"
169
- ],
170
- "additionalProperties": {
171
- "anyOf": [
172
- {
173
- "$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
174
- },
175
- {
176
- "$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
177
- },
178
- {
179
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
180
- },
181
- {
182
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
183
- },
184
- {
185
- "$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
186
- },
187
- {
188
- "$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
189
- },
190
- {
191
- "type": "array"
192
- }
193
- ]
194
- }
35
+ ]
195
36
  }