@twin.org/dataspace-data-plane-service 0.0.3-next.15
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.
- package/LICENSE +201 -0
- package/README.md +73 -0
- package/dist/es/dataspaceDataPlaneRoutes.js +312 -0
- package/dist/es/dataspaceDataPlaneRoutes.js.map +1 -0
- package/dist/es/dataspaceDataPlaneService.js +1077 -0
- package/dist/es/dataspaceDataPlaneService.js.map +1 -0
- package/dist/es/dataspaceDataPlaneSocketRoutes.js +82 -0
- package/dist/es/dataspaceDataPlaneSocketRoutes.js.map +1 -0
- package/dist/es/entities/activityLogDetails.js +69 -0
- package/dist/es/entities/activityLogDetails.js.map +1 -0
- package/dist/es/entities/activityTask.js +27 -0
- package/dist/es/entities/activityTask.js.map +1 -0
- package/dist/es/index.js +13 -0
- package/dist/es/index.js.map +1 -0
- package/dist/es/models/IDataspaceDataPlaneServiceConfig.js +4 -0
- package/dist/es/models/IDataspaceDataPlaneServiceConfig.js.map +1 -0
- package/dist/es/models/IDataspaceDataPlaneServiceConstructorOptions.js +2 -0
- package/dist/es/models/IDataspaceDataPlaneServiceConstructorOptions.js.map +1 -0
- package/dist/es/restEntryPoints.js +10 -0
- package/dist/es/restEntryPoints.js.map +1 -0
- package/dist/es/schema.js +13 -0
- package/dist/es/schema.js.map +1 -0
- package/dist/es/socketEntryPoints.js +11 -0
- package/dist/es/socketEntryPoints.js.map +1 -0
- package/dist/types/dataspaceDataPlaneRoutes.d.ts +50 -0
- package/dist/types/dataspaceDataPlaneService.d.ts +90 -0
- package/dist/types/dataspaceDataPlaneSocketRoutes.d.ts +29 -0
- package/dist/types/entities/activityLogDetails.d.ts +33 -0
- package/dist/types/entities/activityTask.d.ts +14 -0
- package/dist/types/index.d.ts +10 -0
- package/dist/types/models/IDataspaceDataPlaneServiceConfig.d.ts +15 -0
- package/dist/types/models/IDataspaceDataPlaneServiceConstructorOptions.d.ts +55 -0
- package/dist/types/restEntryPoints.d.ts +2 -0
- package/dist/types/schema.d.ts +4 -0
- package/dist/types/socketEntryPoints.d.ts +2 -0
- package/docs/changelog.md +415 -0
- package/docs/examples.md +1 -0
- package/docs/open-api/spec.json +1658 -0
- package/docs/reference/classes/ActivityLogDetails.md +69 -0
- package/docs/reference/classes/ActivityTask.md +29 -0
- package/docs/reference/classes/DataspaceDataPlaneService.md +336 -0
- package/docs/reference/functions/activityLogEntryGet.md +31 -0
- package/docs/reference/functions/activityLogStatusConnected.md +17 -0
- package/docs/reference/functions/activityLogStatusDisconnected.md +23 -0
- package/docs/reference/functions/activityLogStatusUpdate.md +37 -0
- package/docs/reference/functions/activityStreamNotify.md +37 -0
- package/docs/reference/functions/generateRestRoutesDataspaceDataPlane.md +25 -0
- package/docs/reference/functions/generateSocketRoutesDataspaceDataPlane.md +25 -0
- package/docs/reference/functions/getDataAssetEntities.md +31 -0
- package/docs/reference/functions/initSchema.md +9 -0
- package/docs/reference/functions/queryDataAsset.md +31 -0
- package/docs/reference/index.md +32 -0
- package/docs/reference/interfaces/IDataspaceDataPlaneServiceConfig.md +31 -0
- package/docs/reference/interfaces/IDataspaceDataPlaneServiceConstructorOptions.md +132 -0
- package/docs/reference/variables/ACTIVITY_LOG_ROUTE.md +5 -0
- package/docs/reference/variables/restEntryPoints.md +3 -0
- package/docs/reference/variables/socketEntryPoints.md +3 -0
- package/docs/reference/variables/tagsDataspaceDataPlane.md +5 -0
- package/locales/en.json +41 -0
- package/package.json +74 -0
|
@@ -0,0 +1,1658 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.1.1",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "TWIN Dataspace Connector",
|
|
5
|
+
"description": "REST API Dataspace Connector.",
|
|
6
|
+
"version": "0.0.1",
|
|
7
|
+
"license": {
|
|
8
|
+
"name": "Apache 2.0 License",
|
|
9
|
+
"url": "https://opensource.org/licenses/Apache-2.0"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"servers": [
|
|
13
|
+
{
|
|
14
|
+
"url": "http://localhost:3010"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"tags": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Dataspace Data Plane",
|
|
20
|
+
"description": "Endpoints to access a Dataspace Data Plane."
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"paths": {
|
|
24
|
+
"/dataspace-data-plane/notify": {
|
|
25
|
+
"post": {
|
|
26
|
+
"operationId": "activityStreamNotify",
|
|
27
|
+
"summary": "Notify of a new Activity",
|
|
28
|
+
"tags": [
|
|
29
|
+
"Dataspace Data Plane"
|
|
30
|
+
],
|
|
31
|
+
"security": [
|
|
32
|
+
{
|
|
33
|
+
"jwtBearerAuthScheme": []
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"requestBody": {
|
|
37
|
+
"description": "Activity Stream Notify Request.",
|
|
38
|
+
"required": true,
|
|
39
|
+
"content": {
|
|
40
|
+
"application/ld+json": {
|
|
41
|
+
"schema": {
|
|
42
|
+
"$ref": "#/components/schemas/ActivityStreamsActivity"
|
|
43
|
+
},
|
|
44
|
+
"examples": {
|
|
45
|
+
"activityStreamNotifyExample": {
|
|
46
|
+
"value": {
|
|
47
|
+
"@context": "https://www.w3.org/ns/activitystreams",
|
|
48
|
+
"type": "Add",
|
|
49
|
+
"actor": {
|
|
50
|
+
"id": "did:iota:testnet:0x123456"
|
|
51
|
+
},
|
|
52
|
+
"object": {
|
|
53
|
+
"@context": "https://vocabulary.uncefact.org",
|
|
54
|
+
"@type": "Consignment",
|
|
55
|
+
"globalId": "24KEP051219453I002610796"
|
|
56
|
+
},
|
|
57
|
+
"updated": "2025-08-12T12:00:00Z"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"responses": {
|
|
65
|
+
"201": {
|
|
66
|
+
"description": "The rest request ended in created response."
|
|
67
|
+
},
|
|
68
|
+
"400": {
|
|
69
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
70
|
+
"content": {
|
|
71
|
+
"application/json": {
|
|
72
|
+
"schema": {
|
|
73
|
+
"$ref": "#/components/schemas/Error"
|
|
74
|
+
},
|
|
75
|
+
"examples": {
|
|
76
|
+
"exampleResponse": {
|
|
77
|
+
"value": {
|
|
78
|
+
"name": "GeneralError",
|
|
79
|
+
"message": "errorMessage",
|
|
80
|
+
"properties": {
|
|
81
|
+
"foo": "bar"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"401": {
|
|
90
|
+
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
91
|
+
"content": {
|
|
92
|
+
"application/json": {
|
|
93
|
+
"schema": {
|
|
94
|
+
"$ref": "#/components/schemas/Error"
|
|
95
|
+
},
|
|
96
|
+
"examples": {
|
|
97
|
+
"exampleResponse": {
|
|
98
|
+
"value": {
|
|
99
|
+
"name": "UnauthorizedError",
|
|
100
|
+
"message": "errorMessage"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"422": {
|
|
108
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
109
|
+
"content": {
|
|
110
|
+
"application/json": {
|
|
111
|
+
"schema": {
|
|
112
|
+
"$ref": "#/components/schemas/Error"
|
|
113
|
+
},
|
|
114
|
+
"examples": {
|
|
115
|
+
"exampleResponse": {
|
|
116
|
+
"value": {
|
|
117
|
+
"name": "UnprocessableError",
|
|
118
|
+
"message": "errorMessage"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"500": {
|
|
126
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
127
|
+
"content": {
|
|
128
|
+
"application/json": {
|
|
129
|
+
"schema": {
|
|
130
|
+
"$ref": "#/components/schemas/Error"
|
|
131
|
+
},
|
|
132
|
+
"examples": {
|
|
133
|
+
"exampleResponse": {
|
|
134
|
+
"value": {
|
|
135
|
+
"name": "InternalServerError",
|
|
136
|
+
"message": "errorMessage"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"/dataspace-data-plane/activity-logs/{id}": {
|
|
147
|
+
"get": {
|
|
148
|
+
"operationId": "dataspaceDataPlaneGetActivityLogEntry",
|
|
149
|
+
"summary": "Get a Activity Log Entry",
|
|
150
|
+
"tags": [
|
|
151
|
+
"Dataspace Data Plane"
|
|
152
|
+
],
|
|
153
|
+
"parameters": [
|
|
154
|
+
{
|
|
155
|
+
"name": "id",
|
|
156
|
+
"description": "The ID of the entry to get.",
|
|
157
|
+
"in": "path",
|
|
158
|
+
"required": true,
|
|
159
|
+
"schema": {
|
|
160
|
+
"type": "string"
|
|
161
|
+
},
|
|
162
|
+
"style": "simple",
|
|
163
|
+
"example": "urn:x-activity-log:1234567"
|
|
164
|
+
}
|
|
165
|
+
],
|
|
166
|
+
"security": [
|
|
167
|
+
{
|
|
168
|
+
"jwtBearerAuthScheme": []
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"responses": {
|
|
172
|
+
"200": {
|
|
173
|
+
"description": "Service Offering response",
|
|
174
|
+
"content": {
|
|
175
|
+
"application/json": {
|
|
176
|
+
"schema": {
|
|
177
|
+
"$ref": "#/components/schemas/ActivityLogEntry"
|
|
178
|
+
},
|
|
179
|
+
"examples": {
|
|
180
|
+
"activityLogEntryResponseExample": {
|
|
181
|
+
"value": {
|
|
182
|
+
"id": "urn:x-activity-log:134567",
|
|
183
|
+
"dateCreated": "2025-08-12T12:00:00Z",
|
|
184
|
+
"dateModified": "2025-08-12T12:00:00Z",
|
|
185
|
+
"generator": "did:iota:testnet:123456",
|
|
186
|
+
"status": "pending",
|
|
187
|
+
"pendingTasks": [
|
|
188
|
+
{
|
|
189
|
+
"taskId": "urn:x-task-id:45678",
|
|
190
|
+
"dataspaceAppId": "https://my-app.example.org/app1"
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"runningTasks": [],
|
|
194
|
+
"finalizedTasks": [],
|
|
195
|
+
"inErrorTasks": []
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"400": {
|
|
203
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
204
|
+
"content": {
|
|
205
|
+
"application/json": {
|
|
206
|
+
"schema": {
|
|
207
|
+
"$ref": "#/components/schemas/Error"
|
|
208
|
+
},
|
|
209
|
+
"examples": {
|
|
210
|
+
"exampleResponse": {
|
|
211
|
+
"value": {
|
|
212
|
+
"name": "GeneralError",
|
|
213
|
+
"message": "errorMessage",
|
|
214
|
+
"properties": {
|
|
215
|
+
"foo": "bar"
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"401": {
|
|
224
|
+
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
225
|
+
"content": {
|
|
226
|
+
"application/json": {
|
|
227
|
+
"schema": {
|
|
228
|
+
"$ref": "#/components/schemas/Error"
|
|
229
|
+
},
|
|
230
|
+
"examples": {
|
|
231
|
+
"exampleResponse": {
|
|
232
|
+
"value": {
|
|
233
|
+
"name": "UnauthorizedError",
|
|
234
|
+
"message": "errorMessage"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"500": {
|
|
242
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
243
|
+
"content": {
|
|
244
|
+
"application/json": {
|
|
245
|
+
"schema": {
|
|
246
|
+
"$ref": "#/components/schemas/Error"
|
|
247
|
+
},
|
|
248
|
+
"examples": {
|
|
249
|
+
"exampleResponse": {
|
|
250
|
+
"value": {
|
|
251
|
+
"name": "InternalServerError",
|
|
252
|
+
"message": "errorMessage"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"/dataspace-data-plane/entities": {
|
|
263
|
+
"get": {
|
|
264
|
+
"operationId": "dataspaceDataPlaneGetDataAssetEntities",
|
|
265
|
+
"summary": "Get Data Asset Entities",
|
|
266
|
+
"tags": [
|
|
267
|
+
"Dataspace Data Plane"
|
|
268
|
+
],
|
|
269
|
+
"parameters": [
|
|
270
|
+
{
|
|
271
|
+
"name": "id",
|
|
272
|
+
"description": "The ID of the entity(ies) to get. (comma separated list)",
|
|
273
|
+
"in": "query",
|
|
274
|
+
"required": false,
|
|
275
|
+
"schema": {
|
|
276
|
+
"type": "string"
|
|
277
|
+
},
|
|
278
|
+
"example": "urn:ucr:24PLP051219453I002610799053311"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"name": "type",
|
|
282
|
+
"description": "The type of the entity to get.",
|
|
283
|
+
"in": "query",
|
|
284
|
+
"required": false,
|
|
285
|
+
"schema": {
|
|
286
|
+
"type": "string"
|
|
287
|
+
},
|
|
288
|
+
"example": "https://vocabulary.uncefact.org/Consignment"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"name": "consumerPid",
|
|
292
|
+
"description": "The consumer Process ID from the DSP Transfer Process. Mandatory - used to determine the Dataset, Distribution, and Agreement. The datasetId is resolved from the Transfer Process using this ID.",
|
|
293
|
+
"in": "query",
|
|
294
|
+
"required": false,
|
|
295
|
+
"schema": {
|
|
296
|
+
"type": "string"
|
|
297
|
+
},
|
|
298
|
+
"example": "urn:uuid:consumer-pid-12345"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"name": "dataServiceId",
|
|
302
|
+
"description": "The Id of the data service that offers the data asset",
|
|
303
|
+
"in": "query",
|
|
304
|
+
"required": false,
|
|
305
|
+
"schema": {
|
|
306
|
+
"type": "string"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"name": "limit",
|
|
311
|
+
"description": "The maximum number of entities to retrieve.",
|
|
312
|
+
"in": "query",
|
|
313
|
+
"required": false,
|
|
314
|
+
"schema": {
|
|
315
|
+
"type": "string"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"name": "cursor",
|
|
320
|
+
"description": "Cursor to control pagination.",
|
|
321
|
+
"in": "query",
|
|
322
|
+
"required": false,
|
|
323
|
+
"schema": {
|
|
324
|
+
"type": "string"
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"name": "authorization",
|
|
329
|
+
"in": "header",
|
|
330
|
+
"required": true,
|
|
331
|
+
"schema": {
|
|
332
|
+
"type": "string"
|
|
333
|
+
},
|
|
334
|
+
"style": "simple"
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
"responses": {
|
|
338
|
+
"200": {
|
|
339
|
+
"description": "Response containing data asset entities with optional pagination Link header.",
|
|
340
|
+
"content": {
|
|
341
|
+
"application/json": {
|
|
342
|
+
"schema": {
|
|
343
|
+
"$ref": "#/components/schemas/DataAssetItemList"
|
|
344
|
+
},
|
|
345
|
+
"examples": {
|
|
346
|
+
"dataAssetEntitiesGetResponseExample": {
|
|
347
|
+
"value": {
|
|
348
|
+
"@context": "https://schema.org",
|
|
349
|
+
"type": "ItemList",
|
|
350
|
+
"itemListElement": [
|
|
351
|
+
{
|
|
352
|
+
"@context": "https://vocabulary.uncefact.org/unece-context-D23B.jsonld",
|
|
353
|
+
"type": "Consignment",
|
|
354
|
+
"id": "urn:ucr:PL527288386100000"
|
|
355
|
+
}
|
|
356
|
+
]
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
"400": {
|
|
364
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
365
|
+
"content": {
|
|
366
|
+
"application/json": {
|
|
367
|
+
"schema": {
|
|
368
|
+
"$ref": "#/components/schemas/Error"
|
|
369
|
+
},
|
|
370
|
+
"examples": {
|
|
371
|
+
"exampleResponse": {
|
|
372
|
+
"value": {
|
|
373
|
+
"name": "GeneralError",
|
|
374
|
+
"message": "errorMessage",
|
|
375
|
+
"properties": {
|
|
376
|
+
"foo": "bar"
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"500": {
|
|
385
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
386
|
+
"content": {
|
|
387
|
+
"application/json": {
|
|
388
|
+
"schema": {
|
|
389
|
+
"$ref": "#/components/schemas/Error"
|
|
390
|
+
},
|
|
391
|
+
"examples": {
|
|
392
|
+
"exampleResponse": {
|
|
393
|
+
"value": {
|
|
394
|
+
"name": "InternalServerError",
|
|
395
|
+
"message": "errorMessage"
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"/dataspace-data-plane/entities/query": {
|
|
406
|
+
"post": {
|
|
407
|
+
"operationId": "dataspaceDataPlaneQueryDataAsset",
|
|
408
|
+
"summary": "Query Data Asset",
|
|
409
|
+
"tags": [
|
|
410
|
+
"Dataspace Data Plane"
|
|
411
|
+
],
|
|
412
|
+
"parameters": [
|
|
413
|
+
{
|
|
414
|
+
"name": "cursor",
|
|
415
|
+
"description": "Opaque cursor token for pagination.",
|
|
416
|
+
"in": "query",
|
|
417
|
+
"required": false,
|
|
418
|
+
"schema": {
|
|
419
|
+
"type": "string"
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "limit",
|
|
424
|
+
"description": "Maximum number of items to return.",
|
|
425
|
+
"in": "query",
|
|
426
|
+
"required": false,
|
|
427
|
+
"schema": {
|
|
428
|
+
"type": "string"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"name": "authorization",
|
|
433
|
+
"in": "header",
|
|
434
|
+
"required": true,
|
|
435
|
+
"schema": {
|
|
436
|
+
"type": "string"
|
|
437
|
+
},
|
|
438
|
+
"style": "simple"
|
|
439
|
+
}
|
|
440
|
+
],
|
|
441
|
+
"requestBody": {
|
|
442
|
+
"description": "Request to query data asset entities.",
|
|
443
|
+
"required": true,
|
|
444
|
+
"content": {
|
|
445
|
+
"application/json": {
|
|
446
|
+
"schema": {
|
|
447
|
+
"$ref": "#/components/schemas/DataAssetQueryRequest"
|
|
448
|
+
},
|
|
449
|
+
"examples": {
|
|
450
|
+
"dataAssetQuery": {
|
|
451
|
+
"value": {
|
|
452
|
+
"consumerPid": "urn:uuid:consumer-pid-12345",
|
|
453
|
+
"query": {
|
|
454
|
+
"type": "Example",
|
|
455
|
+
"q": "example query"
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
"responses": {
|
|
464
|
+
"200": {
|
|
465
|
+
"description": "Response containing data asset entities with optional pagination Link header.",
|
|
466
|
+
"content": {
|
|
467
|
+
"application/json": {
|
|
468
|
+
"schema": {
|
|
469
|
+
"$ref": "#/components/schemas/DataAssetItemList"
|
|
470
|
+
},
|
|
471
|
+
"examples": {
|
|
472
|
+
"dataAssetEntitiesGetResponseExample": {
|
|
473
|
+
"value": {
|
|
474
|
+
"@context": "https://schema.org",
|
|
475
|
+
"type": "ItemList",
|
|
476
|
+
"itemListElement": [
|
|
477
|
+
{
|
|
478
|
+
"@context": "https://vocabulary.uncefact.org/unece-context-D23B.jsonld",
|
|
479
|
+
"type": "Consignment",
|
|
480
|
+
"id": "urn:ucr:PL527288386100000"
|
|
481
|
+
}
|
|
482
|
+
]
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
"400": {
|
|
490
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
491
|
+
"content": {
|
|
492
|
+
"application/json": {
|
|
493
|
+
"schema": {
|
|
494
|
+
"$ref": "#/components/schemas/Error"
|
|
495
|
+
},
|
|
496
|
+
"examples": {
|
|
497
|
+
"exampleResponse": {
|
|
498
|
+
"value": {
|
|
499
|
+
"name": "GeneralError",
|
|
500
|
+
"message": "errorMessage",
|
|
501
|
+
"properties": {
|
|
502
|
+
"foo": "bar"
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"500": {
|
|
511
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
512
|
+
"content": {
|
|
513
|
+
"application/json": {
|
|
514
|
+
"schema": {
|
|
515
|
+
"$ref": "#/components/schemas/Error"
|
|
516
|
+
},
|
|
517
|
+
"examples": {
|
|
518
|
+
"exampleResponse": {
|
|
519
|
+
"value": {
|
|
520
|
+
"name": "InternalServerError",
|
|
521
|
+
"message": "errorMessage"
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"components": {
|
|
533
|
+
"schemas": {
|
|
534
|
+
"ActivityLogEntry": {
|
|
535
|
+
"type": "object",
|
|
536
|
+
"properties": {
|
|
537
|
+
"id": {
|
|
538
|
+
"type": "string",
|
|
539
|
+
"description": "The Id of the Activity Log entry."
|
|
540
|
+
},
|
|
541
|
+
"activityId": {
|
|
542
|
+
"type": "string",
|
|
543
|
+
"description": "The activity Id that this entry refers to."
|
|
544
|
+
},
|
|
545
|
+
"generator": {
|
|
546
|
+
"type": "string",
|
|
547
|
+
"description": "The identity of the Activity's generator."
|
|
548
|
+
},
|
|
549
|
+
"dateCreated": {
|
|
550
|
+
"type": "string",
|
|
551
|
+
"description": "The creation date of this object."
|
|
552
|
+
},
|
|
553
|
+
"dateModified": {
|
|
554
|
+
"type": "string",
|
|
555
|
+
"description": "The last update date of this object."
|
|
556
|
+
},
|
|
557
|
+
"retryCount": {
|
|
558
|
+
"type": "number",
|
|
559
|
+
"description": "Number of times this activity has been retried."
|
|
560
|
+
},
|
|
561
|
+
"status": {
|
|
562
|
+
"$ref": "#/components/schemas/ActivityProcessingStatus"
|
|
563
|
+
},
|
|
564
|
+
"pendingTasks": {
|
|
565
|
+
"type": "array",
|
|
566
|
+
"items": {
|
|
567
|
+
"$ref": "#/components/schemas/TaskApp"
|
|
568
|
+
},
|
|
569
|
+
"description": "The pending tasks that have to be run to process the Activity."
|
|
570
|
+
},
|
|
571
|
+
"runningTasks": {
|
|
572
|
+
"type": "array",
|
|
573
|
+
"items": {
|
|
574
|
+
"type": "object",
|
|
575
|
+
"additionalProperties": false,
|
|
576
|
+
"properties": {
|
|
577
|
+
"startDate": {
|
|
578
|
+
"type": "string",
|
|
579
|
+
"description": "Task processing start timestamp"
|
|
580
|
+
},
|
|
581
|
+
"endDate": {
|
|
582
|
+
"type": "string",
|
|
583
|
+
"description": "Task processing end timestamp"
|
|
584
|
+
},
|
|
585
|
+
"taskId": {
|
|
586
|
+
"type": "string",
|
|
587
|
+
"description": "Task Id."
|
|
588
|
+
},
|
|
589
|
+
"dataspaceAppId": {
|
|
590
|
+
"type": "string",
|
|
591
|
+
"description": "Dataspace App Id."
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
"required": [
|
|
595
|
+
"dataspaceAppId",
|
|
596
|
+
"startDate",
|
|
597
|
+
"taskId"
|
|
598
|
+
]
|
|
599
|
+
},
|
|
600
|
+
"description": "The running tasks that are processing the Activity."
|
|
601
|
+
},
|
|
602
|
+
"finalizedTasks": {
|
|
603
|
+
"type": "array",
|
|
604
|
+
"items": {
|
|
605
|
+
"type": "object",
|
|
606
|
+
"additionalProperties": false,
|
|
607
|
+
"properties": {
|
|
608
|
+
"result": {
|
|
609
|
+
"type": "string",
|
|
610
|
+
"description": "The task result."
|
|
611
|
+
},
|
|
612
|
+
"startDate": {
|
|
613
|
+
"type": "string",
|
|
614
|
+
"description": "Task processing start timestamp"
|
|
615
|
+
},
|
|
616
|
+
"endDate": {
|
|
617
|
+
"type": "string",
|
|
618
|
+
"description": "Task processing end timestamp"
|
|
619
|
+
},
|
|
620
|
+
"taskId": {
|
|
621
|
+
"type": "string",
|
|
622
|
+
"description": "Task Id."
|
|
623
|
+
},
|
|
624
|
+
"dataspaceAppId": {
|
|
625
|
+
"type": "string",
|
|
626
|
+
"description": "Dataspace App Id."
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"required": [
|
|
630
|
+
"dataspaceAppId",
|
|
631
|
+
"result",
|
|
632
|
+
"startDate",
|
|
633
|
+
"taskId"
|
|
634
|
+
]
|
|
635
|
+
},
|
|
636
|
+
"description": "The tasks that have already finalized."
|
|
637
|
+
},
|
|
638
|
+
"inErrorTasks": {
|
|
639
|
+
"type": "array",
|
|
640
|
+
"items": {
|
|
641
|
+
"type": "object",
|
|
642
|
+
"additionalProperties": false,
|
|
643
|
+
"properties": {
|
|
644
|
+
"error": {
|
|
645
|
+
"$ref": "#/components/schemas/Error"
|
|
646
|
+
},
|
|
647
|
+
"taskId": {
|
|
648
|
+
"type": "string",
|
|
649
|
+
"description": "Task Id."
|
|
650
|
+
},
|
|
651
|
+
"dataspaceAppId": {
|
|
652
|
+
"type": "string",
|
|
653
|
+
"description": "Dataspace App Id."
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
"required": [
|
|
657
|
+
"dataspaceAppId",
|
|
658
|
+
"error",
|
|
659
|
+
"taskId"
|
|
660
|
+
]
|
|
661
|
+
},
|
|
662
|
+
"description": "The tasks that are in error."
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"required": [
|
|
666
|
+
"dateCreated",
|
|
667
|
+
"dateModified",
|
|
668
|
+
"generator",
|
|
669
|
+
"id",
|
|
670
|
+
"status"
|
|
671
|
+
],
|
|
672
|
+
"description": "The details related to the processing of an Activity"
|
|
673
|
+
},
|
|
674
|
+
"ActivityProcessingStatus": {
|
|
675
|
+
"anyOf": [
|
|
676
|
+
{
|
|
677
|
+
"type": "string",
|
|
678
|
+
"const": "pending",
|
|
679
|
+
"description": "Pending: Activity Processing has not started yet."
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"type": "string",
|
|
683
|
+
"const": "running",
|
|
684
|
+
"description": "Running Activity processing is running."
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"type": "string",
|
|
688
|
+
"const": "completed",
|
|
689
|
+
"description": "Completed: Activity processing completed without error."
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"type": "string",
|
|
693
|
+
"const": "error",
|
|
694
|
+
"description": "Error: Activity processing cannot be performed and marked as in error. (Depends on application)."
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"type": "string",
|
|
698
|
+
"const": "registering",
|
|
699
|
+
"description": "Transient state. The background tasks associated with the activity are still being registered."
|
|
700
|
+
}
|
|
701
|
+
],
|
|
702
|
+
"description": "Activity processing statuses. The type exported."
|
|
703
|
+
},
|
|
704
|
+
"ActivityStreamsActivity": {
|
|
705
|
+
"type": "object",
|
|
706
|
+
"properties": {
|
|
707
|
+
"@context": {
|
|
708
|
+
"description": "The Activity Streams JSON-LD context type.",
|
|
709
|
+
"anyOf": [
|
|
710
|
+
{
|
|
711
|
+
"type": "string",
|
|
712
|
+
"const": "https://www.w3.org/ns/activitystreams"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"type": "array",
|
|
716
|
+
"items": {
|
|
717
|
+
"type": "string",
|
|
718
|
+
"const": "https://www.w3.org/ns/activitystreams"
|
|
719
|
+
},
|
|
720
|
+
"minItems": 1,
|
|
721
|
+
"maxItems": 1
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"type": "array",
|
|
725
|
+
"minItems": 1,
|
|
726
|
+
"prefixItems": [
|
|
727
|
+
{
|
|
728
|
+
"type": "string",
|
|
729
|
+
"const": "https://www.w3.org/ns/activitystreams"
|
|
730
|
+
}
|
|
731
|
+
],
|
|
732
|
+
"items": {
|
|
733
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"type": "array",
|
|
738
|
+
"minItems": 1,
|
|
739
|
+
"prefixItems": [
|
|
740
|
+
{
|
|
741
|
+
"type": "string",
|
|
742
|
+
"const": "https://www.w3.org/ns/activitystreams"
|
|
743
|
+
}
|
|
744
|
+
],
|
|
745
|
+
"items": {
|
|
746
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
]
|
|
750
|
+
},
|
|
751
|
+
"type": {
|
|
752
|
+
"description": "Object or array data type",
|
|
753
|
+
"anyOf": [
|
|
754
|
+
{
|
|
755
|
+
"$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsTypes"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"type": "string"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"type": "array",
|
|
762
|
+
"items": {
|
|
763
|
+
"anyOf": [
|
|
764
|
+
{
|
|
765
|
+
"$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsTypes"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"type": "string"
|
|
769
|
+
}
|
|
770
|
+
]
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
]
|
|
774
|
+
},
|
|
775
|
+
"id": {
|
|
776
|
+
"type": "string",
|
|
777
|
+
"description": "Global identifier."
|
|
778
|
+
},
|
|
779
|
+
"name": {
|
|
780
|
+
"anyOf": [
|
|
781
|
+
{
|
|
782
|
+
"type": "string"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
786
|
+
}
|
|
787
|
+
],
|
|
788
|
+
"description": "Natural language name."
|
|
789
|
+
},
|
|
790
|
+
"nameMap": {
|
|
791
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
792
|
+
},
|
|
793
|
+
"summary": {
|
|
794
|
+
"anyOf": [
|
|
795
|
+
{
|
|
796
|
+
"type": "string"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
800
|
+
}
|
|
801
|
+
],
|
|
802
|
+
"description": "Summary of the Activity."
|
|
803
|
+
},
|
|
804
|
+
"summaryMap": {
|
|
805
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
806
|
+
},
|
|
807
|
+
"content": {
|
|
808
|
+
"anyOf": [
|
|
809
|
+
{
|
|
810
|
+
"type": "string"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
814
|
+
}
|
|
815
|
+
],
|
|
816
|
+
"description": "Natural language content."
|
|
817
|
+
},
|
|
818
|
+
"contentMap": {
|
|
819
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
820
|
+
},
|
|
821
|
+
"url": {
|
|
822
|
+
"description": "Object or array data type",
|
|
823
|
+
"anyOf": [
|
|
824
|
+
{
|
|
825
|
+
"type": "string"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"type": "array",
|
|
832
|
+
"items": {
|
|
833
|
+
"anyOf": [
|
|
834
|
+
{
|
|
835
|
+
"type": "string"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
839
|
+
}
|
|
840
|
+
]
|
|
841
|
+
}
|
|
842
|
+
}
|
|
843
|
+
]
|
|
844
|
+
},
|
|
845
|
+
"image": {
|
|
846
|
+
"description": "Object or array data type",
|
|
847
|
+
"anyOf": [
|
|
848
|
+
{
|
|
849
|
+
"type": "string"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"type": "array",
|
|
856
|
+
"items": {
|
|
857
|
+
"anyOf": [
|
|
858
|
+
{
|
|
859
|
+
"type": "string"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
863
|
+
}
|
|
864
|
+
]
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
]
|
|
868
|
+
},
|
|
869
|
+
"icon": {
|
|
870
|
+
"description": "Object or array data type",
|
|
871
|
+
"anyOf": [
|
|
872
|
+
{
|
|
873
|
+
"type": "string"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"type": "array",
|
|
880
|
+
"items": {
|
|
881
|
+
"anyOf": [
|
|
882
|
+
{
|
|
883
|
+
"type": "string"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
887
|
+
}
|
|
888
|
+
]
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
]
|
|
892
|
+
},
|
|
893
|
+
"published": {
|
|
894
|
+
"type": "string",
|
|
895
|
+
"description": "Published date-time."
|
|
896
|
+
},
|
|
897
|
+
"updated": {
|
|
898
|
+
"type": "string",
|
|
899
|
+
"description": "The date and time at which the object was updated."
|
|
900
|
+
},
|
|
901
|
+
"startTime": {
|
|
902
|
+
"type": "string",
|
|
903
|
+
"description": "Start time."
|
|
904
|
+
},
|
|
905
|
+
"endTime": {
|
|
906
|
+
"type": "string",
|
|
907
|
+
"description": "End time."
|
|
908
|
+
},
|
|
909
|
+
"duration": {
|
|
910
|
+
"type": "string",
|
|
911
|
+
"description": "Duration."
|
|
912
|
+
},
|
|
913
|
+
"generator": {
|
|
914
|
+
"description": "Object or array data type",
|
|
915
|
+
"anyOf": [
|
|
916
|
+
{
|
|
917
|
+
"type": "string"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"type": "array",
|
|
924
|
+
"items": {
|
|
925
|
+
"anyOf": [
|
|
926
|
+
{
|
|
927
|
+
"type": "string"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
931
|
+
}
|
|
932
|
+
]
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
]
|
|
936
|
+
},
|
|
937
|
+
"attachment": {
|
|
938
|
+
"description": "Object or array data type",
|
|
939
|
+
"anyOf": [
|
|
940
|
+
{
|
|
941
|
+
"type": "string"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"type": "array",
|
|
948
|
+
"items": {
|
|
949
|
+
"anyOf": [
|
|
950
|
+
{
|
|
951
|
+
"type": "string"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
955
|
+
}
|
|
956
|
+
]
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
]
|
|
960
|
+
},
|
|
961
|
+
"attributedTo": {
|
|
962
|
+
"description": "Object or array data type",
|
|
963
|
+
"anyOf": [
|
|
964
|
+
{
|
|
965
|
+
"type": "string"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"type": "array",
|
|
972
|
+
"items": {
|
|
973
|
+
"anyOf": [
|
|
974
|
+
{
|
|
975
|
+
"type": "string"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
979
|
+
}
|
|
980
|
+
]
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
]
|
|
984
|
+
},
|
|
985
|
+
"audience": {
|
|
986
|
+
"description": "Object or array data type",
|
|
987
|
+
"anyOf": [
|
|
988
|
+
{
|
|
989
|
+
"type": "string"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"type": "array",
|
|
996
|
+
"items": {
|
|
997
|
+
"anyOf": [
|
|
998
|
+
{
|
|
999
|
+
"type": "string"
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1003
|
+
}
|
|
1004
|
+
]
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
]
|
|
1008
|
+
},
|
|
1009
|
+
"context": {
|
|
1010
|
+
"description": "Object or array data type",
|
|
1011
|
+
"anyOf": [
|
|
1012
|
+
{
|
|
1013
|
+
"type": "string"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"type": "array",
|
|
1020
|
+
"items": {
|
|
1021
|
+
"anyOf": [
|
|
1022
|
+
{
|
|
1023
|
+
"type": "string"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1027
|
+
}
|
|
1028
|
+
]
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
]
|
|
1032
|
+
},
|
|
1033
|
+
"location": {
|
|
1034
|
+
"description": "Object or array data type",
|
|
1035
|
+
"anyOf": [
|
|
1036
|
+
{
|
|
1037
|
+
"type": "string"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"type": "array",
|
|
1044
|
+
"items": {
|
|
1045
|
+
"anyOf": [
|
|
1046
|
+
{
|
|
1047
|
+
"type": "string"
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1051
|
+
}
|
|
1052
|
+
]
|
|
1053
|
+
}
|
|
1054
|
+
}
|
|
1055
|
+
]
|
|
1056
|
+
},
|
|
1057
|
+
"tag": {
|
|
1058
|
+
"description": "Object or array data type",
|
|
1059
|
+
"anyOf": [
|
|
1060
|
+
{
|
|
1061
|
+
"type": "string"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"type": "array",
|
|
1068
|
+
"items": {
|
|
1069
|
+
"anyOf": [
|
|
1070
|
+
{
|
|
1071
|
+
"type": "string"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1075
|
+
}
|
|
1076
|
+
]
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
]
|
|
1080
|
+
},
|
|
1081
|
+
"inReplyTo": {
|
|
1082
|
+
"description": "Object or array data type",
|
|
1083
|
+
"anyOf": [
|
|
1084
|
+
{
|
|
1085
|
+
"type": "string"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"type": "array",
|
|
1092
|
+
"items": {
|
|
1093
|
+
"anyOf": [
|
|
1094
|
+
{
|
|
1095
|
+
"type": "string"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1099
|
+
}
|
|
1100
|
+
]
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
]
|
|
1104
|
+
},
|
|
1105
|
+
"replies": {
|
|
1106
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1107
|
+
},
|
|
1108
|
+
"preview": {
|
|
1109
|
+
"description": "Object or array data type",
|
|
1110
|
+
"anyOf": [
|
|
1111
|
+
{
|
|
1112
|
+
"type": "string"
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"type": "array",
|
|
1119
|
+
"items": {
|
|
1120
|
+
"anyOf": [
|
|
1121
|
+
{
|
|
1122
|
+
"type": "string"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1126
|
+
}
|
|
1127
|
+
]
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
]
|
|
1131
|
+
},
|
|
1132
|
+
"to": {
|
|
1133
|
+
"description": "Object or array data type",
|
|
1134
|
+
"anyOf": [
|
|
1135
|
+
{
|
|
1136
|
+
"type": "string"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
"type": "array",
|
|
1143
|
+
"items": {
|
|
1144
|
+
"anyOf": [
|
|
1145
|
+
{
|
|
1146
|
+
"type": "string"
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1150
|
+
}
|
|
1151
|
+
]
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
]
|
|
1155
|
+
},
|
|
1156
|
+
"bto": {
|
|
1157
|
+
"description": "Object or array data type",
|
|
1158
|
+
"anyOf": [
|
|
1159
|
+
{
|
|
1160
|
+
"type": "string"
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"type": "array",
|
|
1167
|
+
"items": {
|
|
1168
|
+
"anyOf": [
|
|
1169
|
+
{
|
|
1170
|
+
"type": "string"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1174
|
+
}
|
|
1175
|
+
]
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
]
|
|
1179
|
+
},
|
|
1180
|
+
"cc": {
|
|
1181
|
+
"description": "Object or array data type",
|
|
1182
|
+
"anyOf": [
|
|
1183
|
+
{
|
|
1184
|
+
"type": "string"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"type": "array",
|
|
1191
|
+
"items": {
|
|
1192
|
+
"anyOf": [
|
|
1193
|
+
{
|
|
1194
|
+
"type": "string"
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1198
|
+
}
|
|
1199
|
+
]
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
]
|
|
1203
|
+
},
|
|
1204
|
+
"bcc": {
|
|
1205
|
+
"description": "Object or array data type",
|
|
1206
|
+
"anyOf": [
|
|
1207
|
+
{
|
|
1208
|
+
"type": "string"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"type": "array",
|
|
1215
|
+
"items": {
|
|
1216
|
+
"anyOf": [
|
|
1217
|
+
{
|
|
1218
|
+
"type": "string"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1222
|
+
}
|
|
1223
|
+
]
|
|
1224
|
+
}
|
|
1225
|
+
}
|
|
1226
|
+
]
|
|
1227
|
+
},
|
|
1228
|
+
"mediaType": {
|
|
1229
|
+
"type": "string",
|
|
1230
|
+
"description": "MIME media type of the referenced resource."
|
|
1231
|
+
},
|
|
1232
|
+
"actor": {
|
|
1233
|
+
"description": "Object or array data type",
|
|
1234
|
+
"anyOf": [
|
|
1235
|
+
{
|
|
1236
|
+
"type": "string"
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
"type": "array",
|
|
1243
|
+
"items": {
|
|
1244
|
+
"anyOf": [
|
|
1245
|
+
{
|
|
1246
|
+
"type": "string"
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1250
|
+
}
|
|
1251
|
+
]
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
]
|
|
1255
|
+
},
|
|
1256
|
+
"object": {
|
|
1257
|
+
"description": "Object or array data type",
|
|
1258
|
+
"anyOf": [
|
|
1259
|
+
{
|
|
1260
|
+
"type": "string"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"type": "array",
|
|
1267
|
+
"items": {
|
|
1268
|
+
"anyOf": [
|
|
1269
|
+
{
|
|
1270
|
+
"type": "string"
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1274
|
+
}
|
|
1275
|
+
]
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
]
|
|
1279
|
+
},
|
|
1280
|
+
"target": {
|
|
1281
|
+
"description": "Object or array data type",
|
|
1282
|
+
"anyOf": [
|
|
1283
|
+
{
|
|
1284
|
+
"type": "string"
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"type": "array",
|
|
1291
|
+
"items": {
|
|
1292
|
+
"anyOf": [
|
|
1293
|
+
{
|
|
1294
|
+
"type": "string"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1298
|
+
}
|
|
1299
|
+
]
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
]
|
|
1303
|
+
},
|
|
1304
|
+
"result": {
|
|
1305
|
+
"description": "Object or array data type",
|
|
1306
|
+
"anyOf": [
|
|
1307
|
+
{
|
|
1308
|
+
"type": "string"
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"type": "array",
|
|
1315
|
+
"items": {
|
|
1316
|
+
"anyOf": [
|
|
1317
|
+
{
|
|
1318
|
+
"type": "string"
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1322
|
+
}
|
|
1323
|
+
]
|
|
1324
|
+
}
|
|
1325
|
+
}
|
|
1326
|
+
]
|
|
1327
|
+
},
|
|
1328
|
+
"origin": {
|
|
1329
|
+
"description": "Object or array data type",
|
|
1330
|
+
"anyOf": [
|
|
1331
|
+
{
|
|
1332
|
+
"type": "string"
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"type": "array",
|
|
1339
|
+
"items": {
|
|
1340
|
+
"anyOf": [
|
|
1341
|
+
{
|
|
1342
|
+
"type": "string"
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1346
|
+
}
|
|
1347
|
+
]
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
]
|
|
1351
|
+
},
|
|
1352
|
+
"instrument": {
|
|
1353
|
+
"description": "Object or array data type",
|
|
1354
|
+
"anyOf": [
|
|
1355
|
+
{
|
|
1356
|
+
"type": "string"
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"type": "array",
|
|
1363
|
+
"items": {
|
|
1364
|
+
"anyOf": [
|
|
1365
|
+
{
|
|
1366
|
+
"type": "string"
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1370
|
+
}
|
|
1371
|
+
]
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
]
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
"required": [
|
|
1378
|
+
"@context",
|
|
1379
|
+
"type"
|
|
1380
|
+
],
|
|
1381
|
+
"description": "A W3C Activity from Activity Streams.\n\nAn `Activity` describes an action performed by an `actor` on an `object`, and can optionally include a `target`, `result`, `origin`, or `instrument`."
|
|
1382
|
+
},
|
|
1383
|
+
"ActivityStreamsLinkTypes": {
|
|
1384
|
+
"anyOf": [
|
|
1385
|
+
{
|
|
1386
|
+
"type": "string",
|
|
1387
|
+
"const": "Link",
|
|
1388
|
+
"description": "Link"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"type": "string",
|
|
1392
|
+
"const": "Mention",
|
|
1393
|
+
"description": "Mention"
|
|
1394
|
+
}
|
|
1395
|
+
],
|
|
1396
|
+
"description": "The link types concerning Activity Streams."
|
|
1397
|
+
},
|
|
1398
|
+
"ActivityStreamsObjectTypes": {
|
|
1399
|
+
"anyOf": [
|
|
1400
|
+
{
|
|
1401
|
+
"type": "string",
|
|
1402
|
+
"const": "Object",
|
|
1403
|
+
"description": "Object"
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"type": "string",
|
|
1407
|
+
"const": "Activity",
|
|
1408
|
+
"description": "Activity"
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"type": "string",
|
|
1412
|
+
"const": "IntransitiveActivity",
|
|
1413
|
+
"description": "IntransitiveActivity"
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
"type": "string",
|
|
1417
|
+
"const": "Collection",
|
|
1418
|
+
"description": "Collection"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"type": "string",
|
|
1422
|
+
"const": "OrderedCollection",
|
|
1423
|
+
"description": "OrderedCollection"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"type": "string",
|
|
1427
|
+
"const": "CollectionPage",
|
|
1428
|
+
"description": "CollectionPage"
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"type": "string",
|
|
1432
|
+
"const": "OrderedCollectionPage",
|
|
1433
|
+
"description": "OrderedCollectionPage"
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"type": "string",
|
|
1437
|
+
"const": "Actor",
|
|
1438
|
+
"description": "Actor"
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"type": "string",
|
|
1442
|
+
"const": "Application",
|
|
1443
|
+
"description": "Application"
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"type": "string",
|
|
1447
|
+
"const": "Group",
|
|
1448
|
+
"description": "Group"
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"type": "string",
|
|
1452
|
+
"const": "Organization",
|
|
1453
|
+
"description": "Organization"
|
|
1454
|
+
},
|
|
1455
|
+
{
|
|
1456
|
+
"type": "string",
|
|
1457
|
+
"const": "Person",
|
|
1458
|
+
"description": "Person"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"type": "string",
|
|
1462
|
+
"const": "Service",
|
|
1463
|
+
"description": "Service"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"type": "string",
|
|
1467
|
+
"const": "Article",
|
|
1468
|
+
"description": "Article"
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"type": "string",
|
|
1472
|
+
"const": "Audio",
|
|
1473
|
+
"description": "Audio"
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
"type": "string",
|
|
1477
|
+
"const": "Document",
|
|
1478
|
+
"description": "Document"
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
"type": "string",
|
|
1482
|
+
"const": "Event",
|
|
1483
|
+
"description": "Event"
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"type": "string",
|
|
1487
|
+
"const": "Image",
|
|
1488
|
+
"description": "Image"
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"type": "string",
|
|
1492
|
+
"const": "Note",
|
|
1493
|
+
"description": "Note"
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"type": "string",
|
|
1497
|
+
"const": "Page",
|
|
1498
|
+
"description": "Page"
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"type": "string",
|
|
1502
|
+
"const": "Place",
|
|
1503
|
+
"description": "Place"
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"type": "string",
|
|
1507
|
+
"const": "Profile",
|
|
1508
|
+
"description": "Profile"
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"type": "string",
|
|
1512
|
+
"const": "Relationship",
|
|
1513
|
+
"description": "Relationship"
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"type": "string",
|
|
1517
|
+
"const": "Tombstone",
|
|
1518
|
+
"description": "Tombstone"
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"type": "string",
|
|
1522
|
+
"const": "Video",
|
|
1523
|
+
"description": "Video"
|
|
1524
|
+
}
|
|
1525
|
+
],
|
|
1526
|
+
"description": "The object types concerning Activity Streams."
|
|
1527
|
+
},
|
|
1528
|
+
"DataAssetItemList": {
|
|
1529
|
+
"type": "object",
|
|
1530
|
+
"properties": {
|
|
1531
|
+
"@context": {
|
|
1532
|
+
"type": "string",
|
|
1533
|
+
"const": "https://schema.org",
|
|
1534
|
+
"description": "The LD Context."
|
|
1535
|
+
},
|
|
1536
|
+
"type": {
|
|
1537
|
+
"type": "string",
|
|
1538
|
+
"const": "ItemList",
|
|
1539
|
+
"description": "The type"
|
|
1540
|
+
},
|
|
1541
|
+
"itemListElement": {
|
|
1542
|
+
"type": "array",
|
|
1543
|
+
"items": {
|
|
1544
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1545
|
+
},
|
|
1546
|
+
"description": "The components of the Collection"
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
"required": [
|
|
1550
|
+
"@context",
|
|
1551
|
+
"type",
|
|
1552
|
+
"itemListElement"
|
|
1553
|
+
],
|
|
1554
|
+
"description": "Interface describing a list of entities that are within a Data Asset. Pagination is handled via HTTP Link headers."
|
|
1555
|
+
},
|
|
1556
|
+
"DataAssetQueryRequest": {
|
|
1557
|
+
"type": "object",
|
|
1558
|
+
"properties": {
|
|
1559
|
+
"consumerPid": {
|
|
1560
|
+
"type": "string",
|
|
1561
|
+
"description": "The consumer Process ID from the DSP Transfer Process. Mandatory - used to determine the Dataset, Distribution, and Agreement. The datasetId is resolved from the Transfer Process using this ID."
|
|
1562
|
+
},
|
|
1563
|
+
"query": {
|
|
1564
|
+
"$ref": "#/components/schemas/FilteringQuery"
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
"required": [
|
|
1568
|
+
"consumerPid",
|
|
1569
|
+
"query"
|
|
1570
|
+
],
|
|
1571
|
+
"description": "Request body containing the data asset and query criteria."
|
|
1572
|
+
},
|
|
1573
|
+
"Error": {
|
|
1574
|
+
"type": "object",
|
|
1575
|
+
"properties": {
|
|
1576
|
+
"name": {
|
|
1577
|
+
"type": "string",
|
|
1578
|
+
"description": "The name for the error."
|
|
1579
|
+
},
|
|
1580
|
+
"message": {
|
|
1581
|
+
"type": "string",
|
|
1582
|
+
"description": "The message for the error."
|
|
1583
|
+
},
|
|
1584
|
+
"source": {
|
|
1585
|
+
"type": "string",
|
|
1586
|
+
"description": "The source of the error."
|
|
1587
|
+
},
|
|
1588
|
+
"properties": {
|
|
1589
|
+
"type": "object",
|
|
1590
|
+
"additionalProperties": {},
|
|
1591
|
+
"description": "Any additional information for the error."
|
|
1592
|
+
},
|
|
1593
|
+
"stack": {
|
|
1594
|
+
"type": "string",
|
|
1595
|
+
"description": "The stack trace for the error."
|
|
1596
|
+
},
|
|
1597
|
+
"cause": {
|
|
1598
|
+
"$ref": "#/components/schemas/Error"
|
|
1599
|
+
}
|
|
1600
|
+
},
|
|
1601
|
+
"required": [
|
|
1602
|
+
"name",
|
|
1603
|
+
"message"
|
|
1604
|
+
],
|
|
1605
|
+
"description": "Model to describe serialized error."
|
|
1606
|
+
},
|
|
1607
|
+
"FilteringQuery": {
|
|
1608
|
+
"type": "object",
|
|
1609
|
+
"properties": {
|
|
1610
|
+
"type": {
|
|
1611
|
+
"type": "string",
|
|
1612
|
+
"description": "The query type."
|
|
1613
|
+
},
|
|
1614
|
+
"q": {
|
|
1615
|
+
"description": "The representation of the query."
|
|
1616
|
+
},
|
|
1617
|
+
"jsonLdContext": {
|
|
1618
|
+
"type": "array",
|
|
1619
|
+
"items": {
|
|
1620
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
1621
|
+
},
|
|
1622
|
+
"description": "The JSON-LD context to be applied over the query terms."
|
|
1623
|
+
}
|
|
1624
|
+
},
|
|
1625
|
+
"required": [
|
|
1626
|
+
"type",
|
|
1627
|
+
"q"
|
|
1628
|
+
],
|
|
1629
|
+
"description": "A query over a data asset that to be processed by a Dataspace Data Plane App."
|
|
1630
|
+
},
|
|
1631
|
+
"TaskApp": {
|
|
1632
|
+
"type": "object",
|
|
1633
|
+
"properties": {
|
|
1634
|
+
"taskId": {
|
|
1635
|
+
"type": "string",
|
|
1636
|
+
"description": "Task Id."
|
|
1637
|
+
},
|
|
1638
|
+
"dataspaceAppId": {
|
|
1639
|
+
"type": "string",
|
|
1640
|
+
"description": "Dataspace App Id."
|
|
1641
|
+
}
|
|
1642
|
+
},
|
|
1643
|
+
"required": [
|
|
1644
|
+
"taskId",
|
|
1645
|
+
"dataspaceAppId"
|
|
1646
|
+
],
|
|
1647
|
+
"description": "Denotes a task associated with a Dataspace App"
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1650
|
+
"securitySchemes": {
|
|
1651
|
+
"jwtBearerAuthScheme": {
|
|
1652
|
+
"type": "http",
|
|
1653
|
+
"scheme": "bearer",
|
|
1654
|
+
"bearerFormat": "JWT"
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
}
|
|
1658
|
+
}
|