@twin.org/identity-service 0.0.2-next.9 → 0.0.3-next.1
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/dist/es/identityProfileRoutes.js +389 -0
- package/dist/es/identityProfileRoutes.js.map +1 -0
- package/dist/es/identityProfileService.js +165 -0
- package/dist/es/identityProfileService.js.map +1 -0
- package/dist/es/identityResolverRoutes.js +87 -0
- package/dist/es/identityResolverRoutes.js.map +1 -0
- package/dist/es/identityResolverService.js +98 -0
- package/dist/es/identityResolverService.js.map +1 -0
- package/dist/es/identityRoutes.js +946 -0
- package/dist/es/identityRoutes.js.map +1 -0
- package/dist/es/identityService.js +391 -0
- package/dist/es/identityService.js.map +1 -0
- package/dist/es/index.js +15 -0
- package/dist/es/index.js.map +1 -0
- package/dist/es/models/IIdentityProfileServiceConstructorOptions.js +2 -0
- package/dist/es/models/IIdentityProfileServiceConstructorOptions.js.map +1 -0
- package/dist/es/models/IIdentityResolverServiceConfig.js +4 -0
- package/dist/es/models/IIdentityResolverServiceConfig.js.map +1 -0
- package/dist/es/models/IIdentityResolverServiceConstructorOptions.js +2 -0
- package/dist/es/models/IIdentityResolverServiceConstructorOptions.js.map +1 -0
- package/dist/es/models/IIdentityServiceConfig.js +4 -0
- package/dist/es/models/IIdentityServiceConfig.js.map +1 -0
- package/dist/es/models/IIdentityServiceConstructorOptions.js +2 -0
- package/dist/es/models/IIdentityServiceConstructorOptions.js.map +1 -0
- package/dist/es/restEntryPoints.js +24 -0
- package/dist/es/restEntryPoints.js.map +1 -0
- package/dist/types/identityProfileService.d.ts +6 -1
- package/dist/types/identityResolverService.d.ts +6 -1
- package/dist/types/identityService.d.ts +6 -1
- package/dist/types/index.d.ts +12 -12
- package/dist/types/models/IIdentityResolverServiceConstructorOptions.d.ts +1 -1
- package/dist/types/models/IIdentityServiceConstructorOptions.d.ts +1 -1
- package/docs/changelog.md +50 -0
- package/docs/open-api/spec.json +161 -1335
- package/docs/reference/classes/IdentityProfileService.md +18 -0
- package/docs/reference/classes/IdentityResolverService.md +18 -0
- package/docs/reference/classes/IdentityService.md +22 -4
- package/package.json +7 -8
- package/dist/cjs/index.cjs +0 -2071
- package/dist/esm/index.mjs +0 -2039
package/docs/open-api/spec.json
CHANGED
|
@@ -70,45 +70,6 @@
|
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
|
-
},
|
|
74
|
-
"400": {
|
|
75
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
76
|
-
"content": {
|
|
77
|
-
"application/json": {
|
|
78
|
-
"schema": {
|
|
79
|
-
"$ref": "#/components/schemas/Error"
|
|
80
|
-
},
|
|
81
|
-
"examples": {
|
|
82
|
-
"exampleResponse": {
|
|
83
|
-
"value": {
|
|
84
|
-
"name": "GeneralError",
|
|
85
|
-
"message": "errorMessage",
|
|
86
|
-
"properties": {
|
|
87
|
-
"foo": "bar"
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"500": {
|
|
96
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
97
|
-
"content": {
|
|
98
|
-
"application/json": {
|
|
99
|
-
"schema": {
|
|
100
|
-
"$ref": "#/components/schemas/Error"
|
|
101
|
-
},
|
|
102
|
-
"examples": {
|
|
103
|
-
"exampleResponse": {
|
|
104
|
-
"value": {
|
|
105
|
-
"name": "InternalServerError",
|
|
106
|
-
"message": "errorMessage"
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
73
|
}
|
|
113
74
|
}
|
|
114
75
|
},
|
|
@@ -137,62 +98,12 @@
|
|
|
137
98
|
}
|
|
138
99
|
],
|
|
139
100
|
"responses": {
|
|
140
|
-
"
|
|
141
|
-
"description": "The rest request ended in success with no data."
|
|
142
|
-
},
|
|
143
|
-
"400": {
|
|
144
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
145
|
-
"content": {
|
|
146
|
-
"application/json": {
|
|
147
|
-
"schema": {
|
|
148
|
-
"$ref": "#/components/schemas/Error"
|
|
149
|
-
},
|
|
150
|
-
"examples": {
|
|
151
|
-
"exampleResponse": {
|
|
152
|
-
"value": {
|
|
153
|
-
"name": "GeneralError",
|
|
154
|
-
"message": "errorMessage",
|
|
155
|
-
"properties": {
|
|
156
|
-
"foo": "bar"
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
"401": {
|
|
165
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
166
|
-
"content": {
|
|
167
|
-
"application/json": {
|
|
168
|
-
"schema": {
|
|
169
|
-
"$ref": "#/components/schemas/Error"
|
|
170
|
-
},
|
|
171
|
-
"examples": {
|
|
172
|
-
"exampleResponse": {
|
|
173
|
-
"value": {
|
|
174
|
-
"name": "UnauthorizedError",
|
|
175
|
-
"message": "errorMessage"
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
},
|
|
182
|
-
"500": {
|
|
183
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
101
|
+
"200": {
|
|
102
|
+
"description": "The rest request ended in success with no data.",
|
|
184
103
|
"content": {
|
|
185
|
-
"
|
|
104
|
+
"text/plain": {
|
|
186
105
|
"schema": {
|
|
187
|
-
"$ref": "#/components/schemas/
|
|
188
|
-
},
|
|
189
|
-
"examples": {
|
|
190
|
-
"exampleResponse": {
|
|
191
|
-
"value": {
|
|
192
|
-
"name": "InternalServerError",
|
|
193
|
-
"message": "errorMessage"
|
|
194
|
-
}
|
|
195
|
-
}
|
|
106
|
+
"$ref": "#/components/schemas/NoContentResponse"
|
|
196
107
|
}
|
|
197
108
|
}
|
|
198
109
|
}
|
|
@@ -248,63 +159,6 @@
|
|
|
248
159
|
}
|
|
249
160
|
}
|
|
250
161
|
}
|
|
251
|
-
},
|
|
252
|
-
"400": {
|
|
253
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
254
|
-
"content": {
|
|
255
|
-
"application/json": {
|
|
256
|
-
"schema": {
|
|
257
|
-
"$ref": "#/components/schemas/Error"
|
|
258
|
-
},
|
|
259
|
-
"examples": {
|
|
260
|
-
"exampleResponse": {
|
|
261
|
-
"value": {
|
|
262
|
-
"name": "GeneralError",
|
|
263
|
-
"message": "errorMessage",
|
|
264
|
-
"properties": {
|
|
265
|
-
"foo": "bar"
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
},
|
|
273
|
-
"401": {
|
|
274
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
275
|
-
"content": {
|
|
276
|
-
"application/json": {
|
|
277
|
-
"schema": {
|
|
278
|
-
"$ref": "#/components/schemas/Error"
|
|
279
|
-
},
|
|
280
|
-
"examples": {
|
|
281
|
-
"exampleResponse": {
|
|
282
|
-
"value": {
|
|
283
|
-
"name": "UnauthorizedError",
|
|
284
|
-
"message": "errorMessage"
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
},
|
|
291
|
-
"500": {
|
|
292
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
293
|
-
"content": {
|
|
294
|
-
"application/json": {
|
|
295
|
-
"schema": {
|
|
296
|
-
"$ref": "#/components/schemas/Error"
|
|
297
|
-
},
|
|
298
|
-
"examples": {
|
|
299
|
-
"exampleResponse": {
|
|
300
|
-
"value": {
|
|
301
|
-
"name": "InternalServerError",
|
|
302
|
-
"message": "errorMessage"
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
162
|
}
|
|
309
163
|
}
|
|
310
164
|
}
|
|
@@ -379,63 +233,6 @@
|
|
|
379
233
|
}
|
|
380
234
|
}
|
|
381
235
|
}
|
|
382
|
-
},
|
|
383
|
-
"400": {
|
|
384
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
385
|
-
"content": {
|
|
386
|
-
"application/json": {
|
|
387
|
-
"schema": {
|
|
388
|
-
"$ref": "#/components/schemas/Error"
|
|
389
|
-
},
|
|
390
|
-
"examples": {
|
|
391
|
-
"exampleResponse": {
|
|
392
|
-
"value": {
|
|
393
|
-
"name": "GeneralError",
|
|
394
|
-
"message": "errorMessage",
|
|
395
|
-
"properties": {
|
|
396
|
-
"foo": "bar"
|
|
397
|
-
}
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
|
-
}
|
|
402
|
-
}
|
|
403
|
-
},
|
|
404
|
-
"401": {
|
|
405
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
406
|
-
"content": {
|
|
407
|
-
"application/json": {
|
|
408
|
-
"schema": {
|
|
409
|
-
"$ref": "#/components/schemas/Error"
|
|
410
|
-
},
|
|
411
|
-
"examples": {
|
|
412
|
-
"exampleResponse": {
|
|
413
|
-
"value": {
|
|
414
|
-
"name": "UnauthorizedError",
|
|
415
|
-
"message": "errorMessage"
|
|
416
|
-
}
|
|
417
|
-
}
|
|
418
|
-
}
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
},
|
|
422
|
-
"500": {
|
|
423
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
424
|
-
"content": {
|
|
425
|
-
"application/json": {
|
|
426
|
-
"schema": {
|
|
427
|
-
"$ref": "#/components/schemas/Error"
|
|
428
|
-
},
|
|
429
|
-
"examples": {
|
|
430
|
-
"exampleResponse": {
|
|
431
|
-
"value": {
|
|
432
|
-
"name": "InternalServerError",
|
|
433
|
-
"message": "errorMessage"
|
|
434
|
-
}
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
}
|
|
439
236
|
}
|
|
440
237
|
}
|
|
441
238
|
}
|
|
@@ -477,62 +274,12 @@
|
|
|
477
274
|
}
|
|
478
275
|
],
|
|
479
276
|
"responses": {
|
|
480
|
-
"
|
|
481
|
-
"description": "The rest request ended in success with no data."
|
|
482
|
-
},
|
|
483
|
-
"400": {
|
|
484
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
485
|
-
"content": {
|
|
486
|
-
"application/json": {
|
|
487
|
-
"schema": {
|
|
488
|
-
"$ref": "#/components/schemas/Error"
|
|
489
|
-
},
|
|
490
|
-
"examples": {
|
|
491
|
-
"exampleResponse": {
|
|
492
|
-
"value": {
|
|
493
|
-
"name": "GeneralError",
|
|
494
|
-
"message": "errorMessage",
|
|
495
|
-
"properties": {
|
|
496
|
-
"foo": "bar"
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
}
|
|
502
|
-
}
|
|
503
|
-
},
|
|
504
|
-
"401": {
|
|
505
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
506
|
-
"content": {
|
|
507
|
-
"application/json": {
|
|
508
|
-
"schema": {
|
|
509
|
-
"$ref": "#/components/schemas/Error"
|
|
510
|
-
},
|
|
511
|
-
"examples": {
|
|
512
|
-
"exampleResponse": {
|
|
513
|
-
"value": {
|
|
514
|
-
"name": "UnauthorizedError",
|
|
515
|
-
"message": "errorMessage"
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
}
|
|
519
|
-
}
|
|
520
|
-
}
|
|
521
|
-
},
|
|
522
|
-
"500": {
|
|
523
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
277
|
+
"200": {
|
|
278
|
+
"description": "The rest request ended in success with no data.",
|
|
524
279
|
"content": {
|
|
525
|
-
"
|
|
280
|
+
"text/plain": {
|
|
526
281
|
"schema": {
|
|
527
|
-
"$ref": "#/components/schemas/
|
|
528
|
-
},
|
|
529
|
-
"examples": {
|
|
530
|
-
"exampleResponse": {
|
|
531
|
-
"value": {
|
|
532
|
-
"name": "InternalServerError",
|
|
533
|
-
"message": "errorMessage"
|
|
534
|
-
}
|
|
535
|
-
}
|
|
282
|
+
"$ref": "#/components/schemas/NoContentResponse"
|
|
536
283
|
}
|
|
537
284
|
}
|
|
538
285
|
}
|
|
@@ -604,63 +351,6 @@
|
|
|
604
351
|
}
|
|
605
352
|
}
|
|
606
353
|
}
|
|
607
|
-
},
|
|
608
|
-
"400": {
|
|
609
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
610
|
-
"content": {
|
|
611
|
-
"application/json": {
|
|
612
|
-
"schema": {
|
|
613
|
-
"$ref": "#/components/schemas/Error"
|
|
614
|
-
},
|
|
615
|
-
"examples": {
|
|
616
|
-
"exampleResponse": {
|
|
617
|
-
"value": {
|
|
618
|
-
"name": "GeneralError",
|
|
619
|
-
"message": "errorMessage",
|
|
620
|
-
"properties": {
|
|
621
|
-
"foo": "bar"
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
}
|
|
625
|
-
}
|
|
626
|
-
}
|
|
627
|
-
}
|
|
628
|
-
},
|
|
629
|
-
"401": {
|
|
630
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
631
|
-
"content": {
|
|
632
|
-
"application/json": {
|
|
633
|
-
"schema": {
|
|
634
|
-
"$ref": "#/components/schemas/Error"
|
|
635
|
-
},
|
|
636
|
-
"examples": {
|
|
637
|
-
"exampleResponse": {
|
|
638
|
-
"value": {
|
|
639
|
-
"name": "UnauthorizedError",
|
|
640
|
-
"message": "errorMessage"
|
|
641
|
-
}
|
|
642
|
-
}
|
|
643
|
-
}
|
|
644
|
-
}
|
|
645
|
-
}
|
|
646
|
-
},
|
|
647
|
-
"500": {
|
|
648
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
649
|
-
"content": {
|
|
650
|
-
"application/json": {
|
|
651
|
-
"schema": {
|
|
652
|
-
"$ref": "#/components/schemas/Error"
|
|
653
|
-
},
|
|
654
|
-
"examples": {
|
|
655
|
-
"exampleResponse": {
|
|
656
|
-
"value": {
|
|
657
|
-
"name": "InternalServerError",
|
|
658
|
-
"message": "errorMessage"
|
|
659
|
-
}
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
}
|
|
663
|
-
}
|
|
664
354
|
}
|
|
665
355
|
}
|
|
666
356
|
}
|
|
@@ -702,62 +392,12 @@
|
|
|
702
392
|
}
|
|
703
393
|
],
|
|
704
394
|
"responses": {
|
|
705
|
-
"
|
|
706
|
-
"description": "The rest request ended in success with no data."
|
|
707
|
-
},
|
|
708
|
-
"400": {
|
|
709
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
710
|
-
"content": {
|
|
711
|
-
"application/json": {
|
|
712
|
-
"schema": {
|
|
713
|
-
"$ref": "#/components/schemas/Error"
|
|
714
|
-
},
|
|
715
|
-
"examples": {
|
|
716
|
-
"exampleResponse": {
|
|
717
|
-
"value": {
|
|
718
|
-
"name": "GeneralError",
|
|
719
|
-
"message": "errorMessage",
|
|
720
|
-
"properties": {
|
|
721
|
-
"foo": "bar"
|
|
722
|
-
}
|
|
723
|
-
}
|
|
724
|
-
}
|
|
725
|
-
}
|
|
726
|
-
}
|
|
727
|
-
}
|
|
728
|
-
},
|
|
729
|
-
"401": {
|
|
730
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
731
|
-
"content": {
|
|
732
|
-
"application/json": {
|
|
733
|
-
"schema": {
|
|
734
|
-
"$ref": "#/components/schemas/Error"
|
|
735
|
-
},
|
|
736
|
-
"examples": {
|
|
737
|
-
"exampleResponse": {
|
|
738
|
-
"value": {
|
|
739
|
-
"name": "UnauthorizedError",
|
|
740
|
-
"message": "errorMessage"
|
|
741
|
-
}
|
|
742
|
-
}
|
|
743
|
-
}
|
|
744
|
-
}
|
|
745
|
-
}
|
|
746
|
-
},
|
|
747
|
-
"500": {
|
|
748
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
395
|
+
"200": {
|
|
396
|
+
"description": "The rest request ended in success with no data.",
|
|
749
397
|
"content": {
|
|
750
|
-
"
|
|
398
|
+
"text/plain": {
|
|
751
399
|
"schema": {
|
|
752
|
-
"$ref": "#/components/schemas/
|
|
753
|
-
},
|
|
754
|
-
"examples": {
|
|
755
|
-
"exampleResponse": {
|
|
756
|
-
"value": {
|
|
757
|
-
"name": "InternalServerError",
|
|
758
|
-
"message": "errorMessage"
|
|
759
|
-
}
|
|
760
|
-
}
|
|
400
|
+
"$ref": "#/components/schemas/NoContentResponse"
|
|
761
401
|
}
|
|
762
402
|
}
|
|
763
403
|
}
|
|
@@ -765,7 +405,7 @@
|
|
|
765
405
|
}
|
|
766
406
|
}
|
|
767
407
|
},
|
|
768
|
-
"/identity/{identity}/verifiable-credential": {
|
|
408
|
+
"/identity/{identity}/verifiable-credential/{verificationMethodId}": {
|
|
769
409
|
"post": {
|
|
770
410
|
"operationId": "identityVerifiableCredentialCreate",
|
|
771
411
|
"summary": "Create an identity verifiable credential",
|
|
@@ -783,6 +423,17 @@
|
|
|
783
423
|
},
|
|
784
424
|
"style": "simple",
|
|
785
425
|
"example": "did:entity-storage:0x879c31386f992cfa29b77fe31e37256d69f6a57653cee4eb60ad4c4613c5515a"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"name": "verificationMethodId",
|
|
429
|
+
"description": "The verification method id to use.",
|
|
430
|
+
"in": "path",
|
|
431
|
+
"required": true,
|
|
432
|
+
"schema": {
|
|
433
|
+
"type": "string"
|
|
434
|
+
},
|
|
435
|
+
"style": "simple",
|
|
436
|
+
"example": "my-assertion"
|
|
786
437
|
}
|
|
787
438
|
],
|
|
788
439
|
"security": [
|
|
@@ -854,63 +505,6 @@
|
|
|
854
505
|
}
|
|
855
506
|
}
|
|
856
507
|
}
|
|
857
|
-
},
|
|
858
|
-
"400": {
|
|
859
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
860
|
-
"content": {
|
|
861
|
-
"application/json": {
|
|
862
|
-
"schema": {
|
|
863
|
-
"$ref": "#/components/schemas/Error"
|
|
864
|
-
},
|
|
865
|
-
"examples": {
|
|
866
|
-
"exampleResponse": {
|
|
867
|
-
"value": {
|
|
868
|
-
"name": "GeneralError",
|
|
869
|
-
"message": "errorMessage",
|
|
870
|
-
"properties": {
|
|
871
|
-
"foo": "bar"
|
|
872
|
-
}
|
|
873
|
-
}
|
|
874
|
-
}
|
|
875
|
-
}
|
|
876
|
-
}
|
|
877
|
-
}
|
|
878
|
-
},
|
|
879
|
-
"401": {
|
|
880
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
881
|
-
"content": {
|
|
882
|
-
"application/json": {
|
|
883
|
-
"schema": {
|
|
884
|
-
"$ref": "#/components/schemas/Error"
|
|
885
|
-
},
|
|
886
|
-
"examples": {
|
|
887
|
-
"exampleResponse": {
|
|
888
|
-
"value": {
|
|
889
|
-
"name": "UnauthorizedError",
|
|
890
|
-
"message": "errorMessage"
|
|
891
|
-
}
|
|
892
|
-
}
|
|
893
|
-
}
|
|
894
|
-
}
|
|
895
|
-
}
|
|
896
|
-
},
|
|
897
|
-
"500": {
|
|
898
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
899
|
-
"content": {
|
|
900
|
-
"application/json": {
|
|
901
|
-
"schema": {
|
|
902
|
-
"$ref": "#/components/schemas/Error"
|
|
903
|
-
},
|
|
904
|
-
"examples": {
|
|
905
|
-
"exampleResponse": {
|
|
906
|
-
"value": {
|
|
907
|
-
"name": "InternalServerError",
|
|
908
|
-
"message": "errorMessage"
|
|
909
|
-
}
|
|
910
|
-
}
|
|
911
|
-
}
|
|
912
|
-
}
|
|
913
|
-
}
|
|
914
508
|
}
|
|
915
509
|
}
|
|
916
510
|
}
|
|
@@ -973,45 +567,6 @@
|
|
|
973
567
|
}
|
|
974
568
|
}
|
|
975
569
|
}
|
|
976
|
-
},
|
|
977
|
-
"400": {
|
|
978
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
979
|
-
"content": {
|
|
980
|
-
"application/json": {
|
|
981
|
-
"schema": {
|
|
982
|
-
"$ref": "#/components/schemas/Error"
|
|
983
|
-
},
|
|
984
|
-
"examples": {
|
|
985
|
-
"exampleResponse": {
|
|
986
|
-
"value": {
|
|
987
|
-
"name": "GeneralError",
|
|
988
|
-
"message": "errorMessage",
|
|
989
|
-
"properties": {
|
|
990
|
-
"foo": "bar"
|
|
991
|
-
}
|
|
992
|
-
}
|
|
993
|
-
}
|
|
994
|
-
}
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
},
|
|
998
|
-
"500": {
|
|
999
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
1000
|
-
"content": {
|
|
1001
|
-
"application/json": {
|
|
1002
|
-
"schema": {
|
|
1003
|
-
"$ref": "#/components/schemas/Error"
|
|
1004
|
-
},
|
|
1005
|
-
"examples": {
|
|
1006
|
-
"exampleResponse": {
|
|
1007
|
-
"value": {
|
|
1008
|
-
"name": "InternalServerError",
|
|
1009
|
-
"message": "errorMessage"
|
|
1010
|
-
}
|
|
1011
|
-
}
|
|
1012
|
-
}
|
|
1013
|
-
}
|
|
1014
|
-
}
|
|
1015
570
|
}
|
|
1016
571
|
}
|
|
1017
572
|
}
|
|
@@ -1053,62 +608,12 @@
|
|
|
1053
608
|
}
|
|
1054
609
|
],
|
|
1055
610
|
"responses": {
|
|
1056
|
-
"
|
|
1057
|
-
"description": "The rest request ended in success with no data."
|
|
1058
|
-
},
|
|
1059
|
-
"400": {
|
|
1060
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
1061
|
-
"content": {
|
|
1062
|
-
"application/json": {
|
|
1063
|
-
"schema": {
|
|
1064
|
-
"$ref": "#/components/schemas/Error"
|
|
1065
|
-
},
|
|
1066
|
-
"examples": {
|
|
1067
|
-
"exampleResponse": {
|
|
1068
|
-
"value": {
|
|
1069
|
-
"name": "GeneralError",
|
|
1070
|
-
"message": "errorMessage",
|
|
1071
|
-
"properties": {
|
|
1072
|
-
"foo": "bar"
|
|
1073
|
-
}
|
|
1074
|
-
}
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
}
|
|
1078
|
-
}
|
|
1079
|
-
},
|
|
1080
|
-
"401": {
|
|
1081
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
1082
|
-
"content": {
|
|
1083
|
-
"application/json": {
|
|
1084
|
-
"schema": {
|
|
1085
|
-
"$ref": "#/components/schemas/Error"
|
|
1086
|
-
},
|
|
1087
|
-
"examples": {
|
|
1088
|
-
"exampleResponse": {
|
|
1089
|
-
"value": {
|
|
1090
|
-
"name": "UnauthorizedError",
|
|
1091
|
-
"message": "errorMessage"
|
|
1092
|
-
}
|
|
1093
|
-
}
|
|
1094
|
-
}
|
|
1095
|
-
}
|
|
1096
|
-
}
|
|
1097
|
-
},
|
|
1098
|
-
"500": {
|
|
1099
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
611
|
+
"200": {
|
|
612
|
+
"description": "The rest request ended in success with no data.",
|
|
1100
613
|
"content": {
|
|
1101
|
-
"
|
|
614
|
+
"text/plain": {
|
|
1102
615
|
"schema": {
|
|
1103
|
-
"$ref": "#/components/schemas/
|
|
1104
|
-
},
|
|
1105
|
-
"examples": {
|
|
1106
|
-
"exampleResponse": {
|
|
1107
|
-
"value": {
|
|
1108
|
-
"name": "InternalServerError",
|
|
1109
|
-
"message": "errorMessage"
|
|
1110
|
-
}
|
|
1111
|
-
}
|
|
616
|
+
"$ref": "#/components/schemas/NoContentResponse"
|
|
1112
617
|
}
|
|
1113
618
|
}
|
|
1114
619
|
}
|
|
@@ -1153,62 +658,12 @@
|
|
|
1153
658
|
}
|
|
1154
659
|
],
|
|
1155
660
|
"responses": {
|
|
1156
|
-
"
|
|
1157
|
-
"description": "The rest request ended in success with no data."
|
|
1158
|
-
},
|
|
1159
|
-
"400": {
|
|
1160
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
1161
|
-
"content": {
|
|
1162
|
-
"application/json": {
|
|
1163
|
-
"schema": {
|
|
1164
|
-
"$ref": "#/components/schemas/Error"
|
|
1165
|
-
},
|
|
1166
|
-
"examples": {
|
|
1167
|
-
"exampleResponse": {
|
|
1168
|
-
"value": {
|
|
1169
|
-
"name": "GeneralError",
|
|
1170
|
-
"message": "errorMessage",
|
|
1171
|
-
"properties": {
|
|
1172
|
-
"foo": "bar"
|
|
1173
|
-
}
|
|
1174
|
-
}
|
|
1175
|
-
}
|
|
1176
|
-
}
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1179
|
-
},
|
|
1180
|
-
"401": {
|
|
1181
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
1182
|
-
"content": {
|
|
1183
|
-
"application/json": {
|
|
1184
|
-
"schema": {
|
|
1185
|
-
"$ref": "#/components/schemas/Error"
|
|
1186
|
-
},
|
|
1187
|
-
"examples": {
|
|
1188
|
-
"exampleResponse": {
|
|
1189
|
-
"value": {
|
|
1190
|
-
"name": "UnauthorizedError",
|
|
1191
|
-
"message": "errorMessage"
|
|
1192
|
-
}
|
|
1193
|
-
}
|
|
1194
|
-
}
|
|
1195
|
-
}
|
|
1196
|
-
}
|
|
1197
|
-
},
|
|
1198
|
-
"500": {
|
|
1199
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
661
|
+
"200": {
|
|
662
|
+
"description": "The rest request ended in success with no data.",
|
|
1200
663
|
"content": {
|
|
1201
|
-
"
|
|
664
|
+
"text/plain": {
|
|
1202
665
|
"schema": {
|
|
1203
|
-
"$ref": "#/components/schemas/
|
|
1204
|
-
},
|
|
1205
|
-
"examples": {
|
|
1206
|
-
"exampleResponse": {
|
|
1207
|
-
"value": {
|
|
1208
|
-
"name": "InternalServerError",
|
|
1209
|
-
"message": "errorMessage"
|
|
1210
|
-
}
|
|
1211
|
-
}
|
|
666
|
+
"$ref": "#/components/schemas/NoContentResponse"
|
|
1212
667
|
}
|
|
1213
668
|
}
|
|
1214
669
|
}
|
|
@@ -1216,7 +671,7 @@
|
|
|
1216
671
|
}
|
|
1217
672
|
}
|
|
1218
673
|
},
|
|
1219
|
-
"/identity/{identity}/verifiable-presentation": {
|
|
674
|
+
"/identity/{identity}/verifiable-presentation/{verificationMethodId}": {
|
|
1220
675
|
"post": {
|
|
1221
676
|
"operationId": "identityVerifiablePresentationCreate",
|
|
1222
677
|
"summary": "Create an identity verifiable presentation",
|
|
@@ -1234,6 +689,17 @@
|
|
|
1234
689
|
},
|
|
1235
690
|
"style": "simple",
|
|
1236
691
|
"example": "did:entity-storage:0x879c31386f992cfa29b77fe31e37256d69f6a57653cee4eb60ad4c4613c5515a"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"name": "verificationMethodId",
|
|
695
|
+
"description": "The verification method id to use.",
|
|
696
|
+
"in": "path",
|
|
697
|
+
"required": true,
|
|
698
|
+
"schema": {
|
|
699
|
+
"type": "string"
|
|
700
|
+
},
|
|
701
|
+
"style": "simple",
|
|
702
|
+
"example": "my-assertion"
|
|
1237
703
|
}
|
|
1238
704
|
],
|
|
1239
705
|
"security": [
|
|
@@ -1294,63 +760,6 @@
|
|
|
1294
760
|
}
|
|
1295
761
|
}
|
|
1296
762
|
}
|
|
1297
|
-
},
|
|
1298
|
-
"400": {
|
|
1299
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
1300
|
-
"content": {
|
|
1301
|
-
"application/json": {
|
|
1302
|
-
"schema": {
|
|
1303
|
-
"$ref": "#/components/schemas/Error"
|
|
1304
|
-
},
|
|
1305
|
-
"examples": {
|
|
1306
|
-
"exampleResponse": {
|
|
1307
|
-
"value": {
|
|
1308
|
-
"name": "GeneralError",
|
|
1309
|
-
"message": "errorMessage",
|
|
1310
|
-
"properties": {
|
|
1311
|
-
"foo": "bar"
|
|
1312
|
-
}
|
|
1313
|
-
}
|
|
1314
|
-
}
|
|
1315
|
-
}
|
|
1316
|
-
}
|
|
1317
|
-
}
|
|
1318
|
-
},
|
|
1319
|
-
"401": {
|
|
1320
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
1321
|
-
"content": {
|
|
1322
|
-
"application/json": {
|
|
1323
|
-
"schema": {
|
|
1324
|
-
"$ref": "#/components/schemas/Error"
|
|
1325
|
-
},
|
|
1326
|
-
"examples": {
|
|
1327
|
-
"exampleResponse": {
|
|
1328
|
-
"value": {
|
|
1329
|
-
"name": "UnauthorizedError",
|
|
1330
|
-
"message": "errorMessage"
|
|
1331
|
-
}
|
|
1332
|
-
}
|
|
1333
|
-
}
|
|
1334
|
-
}
|
|
1335
|
-
}
|
|
1336
|
-
},
|
|
1337
|
-
"500": {
|
|
1338
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
1339
|
-
"content": {
|
|
1340
|
-
"application/json": {
|
|
1341
|
-
"schema": {
|
|
1342
|
-
"$ref": "#/components/schemas/Error"
|
|
1343
|
-
},
|
|
1344
|
-
"examples": {
|
|
1345
|
-
"exampleResponse": {
|
|
1346
|
-
"value": {
|
|
1347
|
-
"name": "InternalServerError",
|
|
1348
|
-
"message": "errorMessage"
|
|
1349
|
-
}
|
|
1350
|
-
}
|
|
1351
|
-
}
|
|
1352
|
-
}
|
|
1353
|
-
}
|
|
1354
763
|
}
|
|
1355
764
|
}
|
|
1356
765
|
}
|
|
@@ -1406,50 +815,11 @@
|
|
|
1406
815
|
}
|
|
1407
816
|
}
|
|
1408
817
|
}
|
|
1409
|
-
},
|
|
1410
|
-
"400": {
|
|
1411
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
1412
|
-
"content": {
|
|
1413
|
-
"application/json": {
|
|
1414
|
-
"schema": {
|
|
1415
|
-
"$ref": "#/components/schemas/Error"
|
|
1416
|
-
},
|
|
1417
|
-
"examples": {
|
|
1418
|
-
"exampleResponse": {
|
|
1419
|
-
"value": {
|
|
1420
|
-
"name": "GeneralError",
|
|
1421
|
-
"message": "errorMessage",
|
|
1422
|
-
"properties": {
|
|
1423
|
-
"foo": "bar"
|
|
1424
|
-
}
|
|
1425
|
-
}
|
|
1426
|
-
}
|
|
1427
|
-
}
|
|
1428
|
-
}
|
|
1429
|
-
}
|
|
1430
|
-
},
|
|
1431
|
-
"500": {
|
|
1432
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
1433
|
-
"content": {
|
|
1434
|
-
"application/json": {
|
|
1435
|
-
"schema": {
|
|
1436
|
-
"$ref": "#/components/schemas/Error"
|
|
1437
|
-
},
|
|
1438
|
-
"examples": {
|
|
1439
|
-
"exampleResponse": {
|
|
1440
|
-
"value": {
|
|
1441
|
-
"name": "InternalServerError",
|
|
1442
|
-
"message": "errorMessage"
|
|
1443
|
-
}
|
|
1444
|
-
}
|
|
1445
|
-
}
|
|
1446
|
-
}
|
|
1447
|
-
}
|
|
1448
818
|
}
|
|
1449
819
|
}
|
|
1450
820
|
}
|
|
1451
821
|
},
|
|
1452
|
-
"/identity/{identity}/proof": {
|
|
822
|
+
"/identity/{identity}/proof/{verificationMethodId}": {
|
|
1453
823
|
"post": {
|
|
1454
824
|
"operationId": "identityProofCreate",
|
|
1455
825
|
"summary": "Create an identity proof",
|
|
@@ -1467,6 +837,17 @@
|
|
|
1467
837
|
},
|
|
1468
838
|
"style": "simple",
|
|
1469
839
|
"example": "did:entity-storage:0xda2df3ebc91ee0d5229d6532ffd0f4426952a94f34988b0ca906694dfd366a6a"
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"name": "verificationMethodId",
|
|
843
|
+
"description": "The verification method id to use.",
|
|
844
|
+
"in": "path",
|
|
845
|
+
"required": true,
|
|
846
|
+
"schema": {
|
|
847
|
+
"type": "string"
|
|
848
|
+
},
|
|
849
|
+
"style": "simple",
|
|
850
|
+
"example": "my-verification-id"
|
|
1470
851
|
}
|
|
1471
852
|
],
|
|
1472
853
|
"security": [
|
|
@@ -1537,63 +918,6 @@
|
|
|
1537
918
|
}
|
|
1538
919
|
}
|
|
1539
920
|
}
|
|
1540
|
-
},
|
|
1541
|
-
"400": {
|
|
1542
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
1543
|
-
"content": {
|
|
1544
|
-
"application/json": {
|
|
1545
|
-
"schema": {
|
|
1546
|
-
"$ref": "#/components/schemas/Error"
|
|
1547
|
-
},
|
|
1548
|
-
"examples": {
|
|
1549
|
-
"exampleResponse": {
|
|
1550
|
-
"value": {
|
|
1551
|
-
"name": "GeneralError",
|
|
1552
|
-
"message": "errorMessage",
|
|
1553
|
-
"properties": {
|
|
1554
|
-
"foo": "bar"
|
|
1555
|
-
}
|
|
1556
|
-
}
|
|
1557
|
-
}
|
|
1558
|
-
}
|
|
1559
|
-
}
|
|
1560
|
-
}
|
|
1561
|
-
},
|
|
1562
|
-
"401": {
|
|
1563
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
1564
|
-
"content": {
|
|
1565
|
-
"application/json": {
|
|
1566
|
-
"schema": {
|
|
1567
|
-
"$ref": "#/components/schemas/Error"
|
|
1568
|
-
},
|
|
1569
|
-
"examples": {
|
|
1570
|
-
"exampleResponse": {
|
|
1571
|
-
"value": {
|
|
1572
|
-
"name": "UnauthorizedError",
|
|
1573
|
-
"message": "errorMessage"
|
|
1574
|
-
}
|
|
1575
|
-
}
|
|
1576
|
-
}
|
|
1577
|
-
}
|
|
1578
|
-
}
|
|
1579
|
-
},
|
|
1580
|
-
"500": {
|
|
1581
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
1582
|
-
"content": {
|
|
1583
|
-
"application/json": {
|
|
1584
|
-
"schema": {
|
|
1585
|
-
"$ref": "#/components/schemas/Error"
|
|
1586
|
-
},
|
|
1587
|
-
"examples": {
|
|
1588
|
-
"exampleResponse": {
|
|
1589
|
-
"value": {
|
|
1590
|
-
"name": "InternalServerError",
|
|
1591
|
-
"message": "errorMessage"
|
|
1592
|
-
}
|
|
1593
|
-
}
|
|
1594
|
-
}
|
|
1595
|
-
}
|
|
1596
|
-
}
|
|
1597
921
|
}
|
|
1598
922
|
}
|
|
1599
923
|
}
|
|
@@ -1667,45 +991,6 @@
|
|
|
1667
991
|
}
|
|
1668
992
|
}
|
|
1669
993
|
}
|
|
1670
|
-
},
|
|
1671
|
-
"400": {
|
|
1672
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
1673
|
-
"content": {
|
|
1674
|
-
"application/json": {
|
|
1675
|
-
"schema": {
|
|
1676
|
-
"$ref": "#/components/schemas/Error"
|
|
1677
|
-
},
|
|
1678
|
-
"examples": {
|
|
1679
|
-
"exampleResponse": {
|
|
1680
|
-
"value": {
|
|
1681
|
-
"name": "GeneralError",
|
|
1682
|
-
"message": "errorMessage",
|
|
1683
|
-
"properties": {
|
|
1684
|
-
"foo": "bar"
|
|
1685
|
-
}
|
|
1686
|
-
}
|
|
1687
|
-
}
|
|
1688
|
-
}
|
|
1689
|
-
}
|
|
1690
|
-
}
|
|
1691
|
-
},
|
|
1692
|
-
"500": {
|
|
1693
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
1694
|
-
"content": {
|
|
1695
|
-
"application/json": {
|
|
1696
|
-
"schema": {
|
|
1697
|
-
"$ref": "#/components/schemas/Error"
|
|
1698
|
-
},
|
|
1699
|
-
"examples": {
|
|
1700
|
-
"exampleResponse": {
|
|
1701
|
-
"value": {
|
|
1702
|
-
"name": "InternalServerError",
|
|
1703
|
-
"message": "errorMessage"
|
|
1704
|
-
}
|
|
1705
|
-
}
|
|
1706
|
-
}
|
|
1707
|
-
}
|
|
1708
|
-
}
|
|
1709
994
|
}
|
|
1710
995
|
}
|
|
1711
996
|
}
|
|
@@ -1752,85 +1037,17 @@
|
|
|
1752
1037
|
}
|
|
1753
1038
|
},
|
|
1754
1039
|
"responses": {
|
|
1755
|
-
"
|
|
1756
|
-
"description": "The rest request ended in success with no data."
|
|
1757
|
-
},
|
|
1758
|
-
"400": {
|
|
1759
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
1760
|
-
"content": {
|
|
1761
|
-
"application/json": {
|
|
1762
|
-
"schema": {
|
|
1763
|
-
"$ref": "#/components/schemas/Error"
|
|
1764
|
-
},
|
|
1765
|
-
"examples": {
|
|
1766
|
-
"exampleResponse": {
|
|
1767
|
-
"value": {
|
|
1768
|
-
"name": "GeneralError",
|
|
1769
|
-
"message": "errorMessage",
|
|
1770
|
-
"properties": {
|
|
1771
|
-
"foo": "bar"
|
|
1772
|
-
}
|
|
1773
|
-
}
|
|
1774
|
-
}
|
|
1775
|
-
}
|
|
1776
|
-
}
|
|
1777
|
-
}
|
|
1778
|
-
},
|
|
1779
|
-
"401": {
|
|
1780
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
1781
|
-
"content": {
|
|
1782
|
-
"application/json": {
|
|
1783
|
-
"schema": {
|
|
1784
|
-
"$ref": "#/components/schemas/Error"
|
|
1785
|
-
},
|
|
1786
|
-
"examples": {
|
|
1787
|
-
"exampleResponse": {
|
|
1788
|
-
"value": {
|
|
1789
|
-
"name": "UnauthorizedError",
|
|
1790
|
-
"message": "errorMessage"
|
|
1791
|
-
}
|
|
1792
|
-
}
|
|
1793
|
-
}
|
|
1794
|
-
}
|
|
1795
|
-
}
|
|
1796
|
-
},
|
|
1797
|
-
"409": {
|
|
1040
|
+
"200": {
|
|
1798
1041
|
"description": "The request resulted in a conflicting operation, see the content for more details.",
|
|
1799
1042
|
"content": {
|
|
1800
|
-
"
|
|
1043
|
+
"text/plain": {
|
|
1801
1044
|
"schema": {
|
|
1802
|
-
"$ref": "#/components/schemas/
|
|
1803
|
-
},
|
|
1804
|
-
"examples": {
|
|
1805
|
-
"exampleResponse": {
|
|
1806
|
-
"value": {
|
|
1807
|
-
"name": "ConflictError",
|
|
1808
|
-
"message": "errorMessage",
|
|
1809
|
-
"properties": {
|
|
1810
|
-
"conflicts": [
|
|
1811
|
-
"1"
|
|
1812
|
-
]
|
|
1813
|
-
}
|
|
1814
|
-
}
|
|
1815
|
-
}
|
|
1045
|
+
"$ref": "#/components/schemas/NoContentResponse"
|
|
1816
1046
|
}
|
|
1817
|
-
}
|
|
1818
|
-
}
|
|
1819
|
-
},
|
|
1820
|
-
"500": {
|
|
1821
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
1822
|
-
"content": {
|
|
1047
|
+
},
|
|
1823
1048
|
"application/json": {
|
|
1824
1049
|
"schema": {
|
|
1825
|
-
"$ref": "#/components/schemas/
|
|
1826
|
-
},
|
|
1827
|
-
"examples": {
|
|
1828
|
-
"exampleResponse": {
|
|
1829
|
-
"value": {
|
|
1830
|
-
"name": "InternalServerError",
|
|
1831
|
-
"message": "errorMessage"
|
|
1832
|
-
}
|
|
1833
|
-
}
|
|
1050
|
+
"$ref": "#/components/schemas/ConflictResponse"
|
|
1834
1051
|
}
|
|
1835
1052
|
}
|
|
1836
1053
|
}
|
|
@@ -1862,111 +1079,20 @@
|
|
|
1862
1079
|
"schema": {
|
|
1863
1080
|
"type": "string"
|
|
1864
1081
|
}
|
|
1865
|
-
}
|
|
1866
|
-
],
|
|
1867
|
-
"security": [
|
|
1868
|
-
{
|
|
1869
|
-
"jwtBearerAuthScheme": []
|
|
1870
|
-
}
|
|
1871
|
-
],
|
|
1872
|
-
"responses": {
|
|
1873
|
-
"200": {
|
|
1874
|
-
"description": "Response to get an identity details.",
|
|
1875
|
-
"content": {
|
|
1876
|
-
"application/json": {
|
|
1877
|
-
"schema": {
|
|
1878
|
-
"$ref": "#/components/schemas/IdentityProfileGetResponse"
|
|
1879
|
-
},
|
|
1880
|
-
"examples": {
|
|
1881
|
-
"identityGetResponseExample": {
|
|
1882
|
-
"value": {
|
|
1883
|
-
"identity": "did:iota:tst:0xc57d94b088f4c6d2cb32ded014813d0c786aa00134c8ee22f84b1e2545602a70",
|
|
1884
|
-
"publicProfile": {
|
|
1885
|
-
"@context": "https://schema.org",
|
|
1886
|
-
"@type": "Person",
|
|
1887
|
-
"jobTitle": "Professor",
|
|
1888
|
-
"name": "Jane Doe"
|
|
1889
|
-
}
|
|
1890
|
-
}
|
|
1891
|
-
}
|
|
1892
|
-
}
|
|
1893
|
-
}
|
|
1894
|
-
}
|
|
1895
|
-
},
|
|
1896
|
-
"400": {
|
|
1897
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
1898
|
-
"content": {
|
|
1899
|
-
"application/json": {
|
|
1900
|
-
"schema": {
|
|
1901
|
-
"$ref": "#/components/schemas/Error"
|
|
1902
|
-
},
|
|
1903
|
-
"examples": {
|
|
1904
|
-
"exampleResponse": {
|
|
1905
|
-
"value": {
|
|
1906
|
-
"name": "GeneralError",
|
|
1907
|
-
"message": "errorMessage",
|
|
1908
|
-
"properties": {
|
|
1909
|
-
"foo": "bar"
|
|
1910
|
-
}
|
|
1911
|
-
}
|
|
1912
|
-
}
|
|
1913
|
-
}
|
|
1914
|
-
}
|
|
1915
|
-
}
|
|
1916
|
-
},
|
|
1917
|
-
"401": {
|
|
1918
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
1919
|
-
"content": {
|
|
1920
|
-
"application/json": {
|
|
1921
|
-
"schema": {
|
|
1922
|
-
"$ref": "#/components/schemas/Error"
|
|
1923
|
-
},
|
|
1924
|
-
"examples": {
|
|
1925
|
-
"exampleResponse": {
|
|
1926
|
-
"value": {
|
|
1927
|
-
"name": "UnauthorizedError",
|
|
1928
|
-
"message": "errorMessage"
|
|
1929
|
-
}
|
|
1930
|
-
}
|
|
1931
|
-
}
|
|
1932
|
-
}
|
|
1933
|
-
}
|
|
1934
|
-
},
|
|
1935
|
-
"404": {
|
|
1082
|
+
}
|
|
1083
|
+
],
|
|
1084
|
+
"security": [
|
|
1085
|
+
{
|
|
1086
|
+
"jwtBearerAuthScheme": []
|
|
1087
|
+
}
|
|
1088
|
+
],
|
|
1089
|
+
"responses": {
|
|
1090
|
+
"200": {
|
|
1936
1091
|
"description": "The resource you tried to access does not exist, see the content for more details.",
|
|
1937
1092
|
"content": {
|
|
1938
1093
|
"application/json": {
|
|
1939
1094
|
"schema": {
|
|
1940
1095
|
"$ref": "#/components/schemas/NotFoundResponse"
|
|
1941
|
-
},
|
|
1942
|
-
"examples": {
|
|
1943
|
-
"exampleResponse": {
|
|
1944
|
-
"value": {
|
|
1945
|
-
"name": "NotFoundError",
|
|
1946
|
-
"message": "errorMessage",
|
|
1947
|
-
"properties": {
|
|
1948
|
-
"notFoundId": "1"
|
|
1949
|
-
}
|
|
1950
|
-
}
|
|
1951
|
-
}
|
|
1952
|
-
}
|
|
1953
|
-
}
|
|
1954
|
-
}
|
|
1955
|
-
},
|
|
1956
|
-
"500": {
|
|
1957
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
1958
|
-
"content": {
|
|
1959
|
-
"application/json": {
|
|
1960
|
-
"schema": {
|
|
1961
|
-
"$ref": "#/components/schemas/Error"
|
|
1962
|
-
},
|
|
1963
|
-
"examples": {
|
|
1964
|
-
"exampleResponse": {
|
|
1965
|
-
"value": {
|
|
1966
|
-
"name": "InternalServerError",
|
|
1967
|
-
"message": "errorMessage"
|
|
1968
|
-
}
|
|
1969
|
-
}
|
|
1970
1096
|
}
|
|
1971
1097
|
}
|
|
1972
1098
|
}
|
|
@@ -2014,83 +1140,17 @@
|
|
|
2014
1140
|
}
|
|
2015
1141
|
},
|
|
2016
1142
|
"responses": {
|
|
2017
|
-
"
|
|
2018
|
-
"description": "The rest request ended in success with no data."
|
|
2019
|
-
},
|
|
2020
|
-
"400": {
|
|
2021
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
2022
|
-
"content": {
|
|
2023
|
-
"application/json": {
|
|
2024
|
-
"schema": {
|
|
2025
|
-
"$ref": "#/components/schemas/Error"
|
|
2026
|
-
},
|
|
2027
|
-
"examples": {
|
|
2028
|
-
"exampleResponse": {
|
|
2029
|
-
"value": {
|
|
2030
|
-
"name": "GeneralError",
|
|
2031
|
-
"message": "errorMessage",
|
|
2032
|
-
"properties": {
|
|
2033
|
-
"foo": "bar"
|
|
2034
|
-
}
|
|
2035
|
-
}
|
|
2036
|
-
}
|
|
2037
|
-
}
|
|
2038
|
-
}
|
|
2039
|
-
}
|
|
2040
|
-
},
|
|
2041
|
-
"401": {
|
|
2042
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
2043
|
-
"content": {
|
|
2044
|
-
"application/json": {
|
|
2045
|
-
"schema": {
|
|
2046
|
-
"$ref": "#/components/schemas/Error"
|
|
2047
|
-
},
|
|
2048
|
-
"examples": {
|
|
2049
|
-
"exampleResponse": {
|
|
2050
|
-
"value": {
|
|
2051
|
-
"name": "UnauthorizedError",
|
|
2052
|
-
"message": "errorMessage"
|
|
2053
|
-
}
|
|
2054
|
-
}
|
|
2055
|
-
}
|
|
2056
|
-
}
|
|
2057
|
-
}
|
|
2058
|
-
},
|
|
2059
|
-
"404": {
|
|
1143
|
+
"200": {
|
|
2060
1144
|
"description": "The resource you tried to access does not exist, see the content for more details.",
|
|
2061
1145
|
"content": {
|
|
2062
|
-
"
|
|
1146
|
+
"text/plain": {
|
|
2063
1147
|
"schema": {
|
|
2064
|
-
"$ref": "#/components/schemas/
|
|
2065
|
-
},
|
|
2066
|
-
"examples": {
|
|
2067
|
-
"exampleResponse": {
|
|
2068
|
-
"value": {
|
|
2069
|
-
"name": "NotFoundError",
|
|
2070
|
-
"message": "errorMessage",
|
|
2071
|
-
"properties": {
|
|
2072
|
-
"notFoundId": "1"
|
|
2073
|
-
}
|
|
2074
|
-
}
|
|
2075
|
-
}
|
|
1148
|
+
"$ref": "#/components/schemas/NoContentResponse"
|
|
2076
1149
|
}
|
|
2077
|
-
}
|
|
2078
|
-
}
|
|
2079
|
-
},
|
|
2080
|
-
"500": {
|
|
2081
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
2082
|
-
"content": {
|
|
1150
|
+
},
|
|
2083
1151
|
"application/json": {
|
|
2084
1152
|
"schema": {
|
|
2085
|
-
"$ref": "#/components/schemas/
|
|
2086
|
-
},
|
|
2087
|
-
"examples": {
|
|
2088
|
-
"exampleResponse": {
|
|
2089
|
-
"value": {
|
|
2090
|
-
"name": "InternalServerError",
|
|
2091
|
-
"message": "errorMessage"
|
|
2092
|
-
}
|
|
2093
|
-
}
|
|
1153
|
+
"$ref": "#/components/schemas/NotFoundResponse"
|
|
2094
1154
|
}
|
|
2095
1155
|
}
|
|
2096
1156
|
}
|
|
@@ -2109,83 +1169,17 @@
|
|
|
2109
1169
|
}
|
|
2110
1170
|
],
|
|
2111
1171
|
"responses": {
|
|
2112
|
-
"
|
|
2113
|
-
"description": "The rest request ended in success with no data."
|
|
2114
|
-
},
|
|
2115
|
-
"400": {
|
|
2116
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
2117
|
-
"content": {
|
|
2118
|
-
"application/json": {
|
|
2119
|
-
"schema": {
|
|
2120
|
-
"$ref": "#/components/schemas/Error"
|
|
2121
|
-
},
|
|
2122
|
-
"examples": {
|
|
2123
|
-
"exampleResponse": {
|
|
2124
|
-
"value": {
|
|
2125
|
-
"name": "GeneralError",
|
|
2126
|
-
"message": "errorMessage",
|
|
2127
|
-
"properties": {
|
|
2128
|
-
"foo": "bar"
|
|
2129
|
-
}
|
|
2130
|
-
}
|
|
2131
|
-
}
|
|
2132
|
-
}
|
|
2133
|
-
}
|
|
2134
|
-
}
|
|
2135
|
-
},
|
|
2136
|
-
"401": {
|
|
2137
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
2138
|
-
"content": {
|
|
2139
|
-
"application/json": {
|
|
2140
|
-
"schema": {
|
|
2141
|
-
"$ref": "#/components/schemas/Error"
|
|
2142
|
-
},
|
|
2143
|
-
"examples": {
|
|
2144
|
-
"exampleResponse": {
|
|
2145
|
-
"value": {
|
|
2146
|
-
"name": "UnauthorizedError",
|
|
2147
|
-
"message": "errorMessage"
|
|
2148
|
-
}
|
|
2149
|
-
}
|
|
2150
|
-
}
|
|
2151
|
-
}
|
|
2152
|
-
}
|
|
2153
|
-
},
|
|
2154
|
-
"404": {
|
|
1172
|
+
"200": {
|
|
2155
1173
|
"description": "The resource you tried to access does not exist, see the content for more details.",
|
|
2156
1174
|
"content": {
|
|
2157
|
-
"
|
|
1175
|
+
"text/plain": {
|
|
2158
1176
|
"schema": {
|
|
2159
|
-
"$ref": "#/components/schemas/
|
|
2160
|
-
},
|
|
2161
|
-
"examples": {
|
|
2162
|
-
"exampleResponse": {
|
|
2163
|
-
"value": {
|
|
2164
|
-
"name": "NotFoundError",
|
|
2165
|
-
"message": "errorMessage",
|
|
2166
|
-
"properties": {
|
|
2167
|
-
"notFoundId": "1"
|
|
2168
|
-
}
|
|
2169
|
-
}
|
|
2170
|
-
}
|
|
1177
|
+
"$ref": "#/components/schemas/NoContentResponse"
|
|
2171
1178
|
}
|
|
2172
|
-
}
|
|
2173
|
-
}
|
|
2174
|
-
},
|
|
2175
|
-
"500": {
|
|
2176
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
2177
|
-
"content": {
|
|
1179
|
+
},
|
|
2178
1180
|
"application/json": {
|
|
2179
1181
|
"schema": {
|
|
2180
|
-
"$ref": "#/components/schemas/
|
|
2181
|
-
},
|
|
2182
|
-
"examples": {
|
|
2183
|
-
"exampleResponse": {
|
|
2184
|
-
"value": {
|
|
2185
|
-
"name": "InternalServerError",
|
|
2186
|
-
"message": "errorMessage"
|
|
2187
|
-
}
|
|
2188
|
-
}
|
|
1182
|
+
"$ref": "#/components/schemas/NotFoundResponse"
|
|
2189
1183
|
}
|
|
2190
1184
|
}
|
|
2191
1185
|
}
|
|
@@ -2225,7 +1219,7 @@
|
|
|
2225
1219
|
],
|
|
2226
1220
|
"responses": {
|
|
2227
1221
|
"200": {
|
|
2228
|
-
"description": "
|
|
1222
|
+
"description": "The resource you tried to access does not exist, see the content for more details.",
|
|
2229
1223
|
"content": {
|
|
2230
1224
|
"application/ld+json": {
|
|
2231
1225
|
"schema": {
|
|
@@ -2241,73 +1235,10 @@
|
|
|
2241
1235
|
}
|
|
2242
1236
|
}
|
|
2243
1237
|
}
|
|
2244
|
-
}
|
|
2245
|
-
},
|
|
2246
|
-
"headers": {
|
|
2247
|
-
"content-type": {
|
|
2248
|
-
"schema": {
|
|
2249
|
-
"type": "string"
|
|
2250
|
-
},
|
|
2251
|
-
"description": "e.g. application/ld+json"
|
|
2252
|
-
}
|
|
2253
|
-
}
|
|
2254
|
-
},
|
|
2255
|
-
"400": {
|
|
2256
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
2257
|
-
"content": {
|
|
2258
|
-
"application/json": {
|
|
2259
|
-
"schema": {
|
|
2260
|
-
"$ref": "#/components/schemas/Error"
|
|
2261
|
-
},
|
|
2262
|
-
"examples": {
|
|
2263
|
-
"exampleResponse": {
|
|
2264
|
-
"value": {
|
|
2265
|
-
"name": "GeneralError",
|
|
2266
|
-
"message": "errorMessage",
|
|
2267
|
-
"properties": {
|
|
2268
|
-
"foo": "bar"
|
|
2269
|
-
}
|
|
2270
|
-
}
|
|
2271
|
-
}
|
|
2272
|
-
}
|
|
2273
|
-
}
|
|
2274
|
-
}
|
|
2275
|
-
},
|
|
2276
|
-
"404": {
|
|
2277
|
-
"description": "The resource you tried to access does not exist, see the content for more details.",
|
|
2278
|
-
"content": {
|
|
1238
|
+
},
|
|
2279
1239
|
"application/json": {
|
|
2280
1240
|
"schema": {
|
|
2281
1241
|
"$ref": "#/components/schemas/NotFoundResponse"
|
|
2282
|
-
},
|
|
2283
|
-
"examples": {
|
|
2284
|
-
"exampleResponse": {
|
|
2285
|
-
"value": {
|
|
2286
|
-
"name": "NotFoundError",
|
|
2287
|
-
"message": "errorMessage",
|
|
2288
|
-
"properties": {
|
|
2289
|
-
"notFoundId": "1"
|
|
2290
|
-
}
|
|
2291
|
-
}
|
|
2292
|
-
}
|
|
2293
|
-
}
|
|
2294
|
-
}
|
|
2295
|
-
}
|
|
2296
|
-
},
|
|
2297
|
-
"500": {
|
|
2298
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
2299
|
-
"content": {
|
|
2300
|
-
"application/json": {
|
|
2301
|
-
"schema": {
|
|
2302
|
-
"$ref": "#/components/schemas/Error"
|
|
2303
|
-
},
|
|
2304
|
-
"examples": {
|
|
2305
|
-
"exampleResponse": {
|
|
2306
|
-
"value": {
|
|
2307
|
-
"name": "InternalServerError",
|
|
2308
|
-
"message": "errorMessage"
|
|
2309
|
-
}
|
|
2310
|
-
}
|
|
2311
1242
|
}
|
|
2312
1243
|
}
|
|
2313
1244
|
}
|
|
@@ -2393,63 +1324,6 @@
|
|
|
2393
1324
|
}
|
|
2394
1325
|
}
|
|
2395
1326
|
}
|
|
2396
|
-
},
|
|
2397
|
-
"400": {
|
|
2398
|
-
"description": "The server cannot process the request, see the content for more details.",
|
|
2399
|
-
"content": {
|
|
2400
|
-
"application/json": {
|
|
2401
|
-
"schema": {
|
|
2402
|
-
"$ref": "#/components/schemas/Error"
|
|
2403
|
-
},
|
|
2404
|
-
"examples": {
|
|
2405
|
-
"exampleResponse": {
|
|
2406
|
-
"value": {
|
|
2407
|
-
"name": "GeneralError",
|
|
2408
|
-
"message": "errorMessage",
|
|
2409
|
-
"properties": {
|
|
2410
|
-
"foo": "bar"
|
|
2411
|
-
}
|
|
2412
|
-
}
|
|
2413
|
-
}
|
|
2414
|
-
}
|
|
2415
|
-
}
|
|
2416
|
-
}
|
|
2417
|
-
},
|
|
2418
|
-
"401": {
|
|
2419
|
-
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
2420
|
-
"content": {
|
|
2421
|
-
"application/json": {
|
|
2422
|
-
"schema": {
|
|
2423
|
-
"$ref": "#/components/schemas/Error"
|
|
2424
|
-
},
|
|
2425
|
-
"examples": {
|
|
2426
|
-
"exampleResponse": {
|
|
2427
|
-
"value": {
|
|
2428
|
-
"name": "UnauthorizedError",
|
|
2429
|
-
"message": "errorMessage"
|
|
2430
|
-
}
|
|
2431
|
-
}
|
|
2432
|
-
}
|
|
2433
|
-
}
|
|
2434
|
-
}
|
|
2435
|
-
},
|
|
2436
|
-
"500": {
|
|
2437
|
-
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
2438
|
-
"content": {
|
|
2439
|
-
"application/json": {
|
|
2440
|
-
"schema": {
|
|
2441
|
-
"$ref": "#/components/schemas/Error"
|
|
2442
|
-
},
|
|
2443
|
-
"examples": {
|
|
2444
|
-
"exampleResponse": {
|
|
2445
|
-
"value": {
|
|
2446
|
-
"name": "InternalServerError",
|
|
2447
|
-
"message": "errorMessage"
|
|
2448
|
-
}
|
|
2449
|
-
}
|
|
2450
|
-
}
|
|
2451
|
-
}
|
|
2452
|
-
}
|
|
2453
1327
|
}
|
|
2454
1328
|
}
|
|
2455
1329
|
}
|
|
@@ -2463,13 +1337,10 @@
|
|
|
2463
1337
|
"properties": {
|
|
2464
1338
|
"conflicts": {
|
|
2465
1339
|
"type": "array",
|
|
2466
|
-
"items":
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
"type": "string"
|
|
2471
|
-
}
|
|
2472
|
-
]
|
|
1340
|
+
"items": {
|
|
1341
|
+
"type": "string"
|
|
1342
|
+
},
|
|
1343
|
+
"description": "The conflicting items."
|
|
2473
1344
|
},
|
|
2474
1345
|
"name": {
|
|
2475
1346
|
"type": "string",
|
|
@@ -2587,26 +1458,23 @@
|
|
|
2587
1458
|
"properties": {
|
|
2588
1459
|
"items": {
|
|
2589
1460
|
"type": "array",
|
|
2590
|
-
"items":
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
"additionalProperties": false
|
|
2608
|
-
}
|
|
2609
|
-
]
|
|
1461
|
+
"items": {
|
|
1462
|
+
"type": "object",
|
|
1463
|
+
"properties": {
|
|
1464
|
+
"identity": {
|
|
1465
|
+
"type": "string",
|
|
1466
|
+
"description": "The identity."
|
|
1467
|
+
},
|
|
1468
|
+
"publicProfile": {
|
|
1469
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdDocument"
|
|
1470
|
+
}
|
|
1471
|
+
},
|
|
1472
|
+
"required": [
|
|
1473
|
+
"identity"
|
|
1474
|
+
],
|
|
1475
|
+
"additionalProperties": false
|
|
1476
|
+
},
|
|
1477
|
+
"description": "The identities."
|
|
2610
1478
|
},
|
|
2611
1479
|
"cursor": {
|
|
2612
1480
|
"type": "string",
|
|
@@ -2693,12 +1561,9 @@
|
|
|
2693
1561
|
},
|
|
2694
1562
|
{
|
|
2695
1563
|
"type": "array",
|
|
2696
|
-
"items":
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
"type": "string"
|
|
2700
|
-
}
|
|
2701
|
-
]
|
|
1564
|
+
"items": {
|
|
1565
|
+
"type": "string"
|
|
1566
|
+
}
|
|
2702
1567
|
}
|
|
2703
1568
|
],
|
|
2704
1569
|
"description": "The type of the service."
|
|
@@ -2710,12 +1575,9 @@
|
|
|
2710
1575
|
},
|
|
2711
1576
|
{
|
|
2712
1577
|
"type": "array",
|
|
2713
|
-
"items":
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
"type": "string"
|
|
2717
|
-
}
|
|
2718
|
-
]
|
|
1578
|
+
"items": {
|
|
1579
|
+
"type": "string"
|
|
1580
|
+
}
|
|
2719
1581
|
}
|
|
2720
1582
|
],
|
|
2721
1583
|
"description": "The endpoint for the service."
|
|
@@ -2806,32 +1668,26 @@
|
|
|
2806
1668
|
},
|
|
2807
1669
|
{
|
|
2808
1670
|
"type": "array",
|
|
2809
|
-
"items":
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
"type": "string"
|
|
2813
|
-
}
|
|
2814
|
-
]
|
|
1671
|
+
"items": {
|
|
1672
|
+
"type": "string"
|
|
1673
|
+
}
|
|
2815
1674
|
}
|
|
2816
1675
|
],
|
|
2817
1676
|
"description": "The types of the presentation."
|
|
2818
1677
|
},
|
|
2819
1678
|
"verifiableCredentials": {
|
|
2820
1679
|
"type": "array",
|
|
2821
|
-
"items":
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
]
|
|
2833
|
-
}
|
|
2834
|
-
]
|
|
1680
|
+
"items": {
|
|
1681
|
+
"anyOf": [
|
|
1682
|
+
{
|
|
1683
|
+
"type": "string"
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"$ref": "https://schema.twindev.org/w3c-did/DidVerifiableCredential"
|
|
1687
|
+
}
|
|
1688
|
+
]
|
|
1689
|
+
},
|
|
1690
|
+
"description": "The verifiable credentials to include in the presentation."
|
|
2835
1691
|
},
|
|
2836
1692
|
"expiresInMinutes": {
|
|
2837
1693
|
"type": "number",
|
|
@@ -2874,13 +1730,10 @@
|
|
|
2874
1730
|
},
|
|
2875
1731
|
"issuers": {
|
|
2876
1732
|
"type": "array",
|
|
2877
|
-
"items":
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
"$ref": "https://schema.twindev.org/w3c-did/DidDocument"
|
|
2882
|
-
}
|
|
2883
|
-
]
|
|
1733
|
+
"items": {
|
|
1734
|
+
"$ref": "https://schema.twindev.org/w3c-did/DidDocument"
|
|
1735
|
+
},
|
|
1736
|
+
"description": "The issuers of the presentation."
|
|
2884
1737
|
}
|
|
2885
1738
|
},
|
|
2886
1739
|
"required": [
|
|
@@ -2916,12 +1769,9 @@
|
|
|
2916
1769
|
},
|
|
2917
1770
|
{
|
|
2918
1771
|
"type": "array",
|
|
2919
|
-
"items":
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
2923
|
-
}
|
|
2924
|
-
]
|
|
1772
|
+
"items": {
|
|
1773
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1774
|
+
}
|
|
2925
1775
|
},
|
|
2926
1776
|
{
|
|
2927
1777
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
@@ -2950,12 +1800,9 @@
|
|
|
2950
1800
|
},
|
|
2951
1801
|
{
|
|
2952
1802
|
"type": "array",
|
|
2953
|
-
"items":
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
2957
|
-
}
|
|
2958
|
-
]
|
|
1803
|
+
"items": {
|
|
1804
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1805
|
+
}
|
|
2959
1806
|
},
|
|
2960
1807
|
{
|
|
2961
1808
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
@@ -2981,12 +1828,9 @@
|
|
|
2981
1828
|
},
|
|
2982
1829
|
{
|
|
2983
1830
|
"type": "array",
|
|
2984
|
-
"items":
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
2988
|
-
}
|
|
2989
|
-
]
|
|
1831
|
+
"items": {
|
|
1832
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1833
|
+
}
|
|
2990
1834
|
},
|
|
2991
1835
|
{
|
|
2992
1836
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
@@ -3012,12 +1856,9 @@
|
|
|
3012
1856
|
},
|
|
3013
1857
|
{
|
|
3014
1858
|
"type": "array",
|
|
3015
|
-
"items":
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
3019
|
-
}
|
|
3020
|
-
]
|
|
1859
|
+
"items": {
|
|
1860
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1861
|
+
}
|
|
3021
1862
|
},
|
|
3022
1863
|
{
|
|
3023
1864
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
@@ -3042,19 +1883,16 @@
|
|
|
3042
1883
|
},
|
|
3043
1884
|
{
|
|
3044
1885
|
"type": "array",
|
|
3045
|
-
"items":
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
]
|
|
3056
|
-
}
|
|
3057
|
-
]
|
|
1886
|
+
"items": {
|
|
1887
|
+
"anyOf": [
|
|
1888
|
+
{
|
|
1889
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
|
|
1890
|
+
},
|
|
1891
|
+
{
|
|
1892
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1893
|
+
}
|
|
1894
|
+
]
|
|
1895
|
+
}
|
|
3058
1896
|
}
|
|
3059
1897
|
]
|
|
3060
1898
|
},
|
|
@@ -3065,12 +1903,9 @@
|
|
|
3065
1903
|
},
|
|
3066
1904
|
{
|
|
3067
1905
|
"type": "array",
|
|
3068
|
-
"items":
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
3072
|
-
}
|
|
3073
|
-
]
|
|
1906
|
+
"items": {
|
|
1907
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1908
|
+
}
|
|
3074
1909
|
},
|
|
3075
1910
|
{
|
|
3076
1911
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
@@ -3096,12 +1931,9 @@
|
|
|
3096
1931
|
},
|
|
3097
1932
|
{
|
|
3098
1933
|
"type": "array",
|
|
3099
|
-
"items":
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
3103
|
-
}
|
|
3104
|
-
]
|
|
1934
|
+
"items": {
|
|
1935
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1936
|
+
}
|
|
3105
1937
|
},
|
|
3106
1938
|
{
|
|
3107
1939
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
@@ -3127,12 +1959,9 @@
|
|
|
3127
1959
|
},
|
|
3128
1960
|
{
|
|
3129
1961
|
"type": "array",
|
|
3130
|
-
"items":
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
3134
|
-
}
|
|
3135
|
-
]
|
|
1962
|
+
"items": {
|
|
1963
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1964
|
+
}
|
|
3136
1965
|
},
|
|
3137
1966
|
{
|
|
3138
1967
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
@@ -3158,12 +1987,9 @@
|
|
|
3158
1987
|
},
|
|
3159
1988
|
{
|
|
3160
1989
|
"type": "array",
|
|
3161
|
-
"items":
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
3165
|
-
}
|
|
3166
|
-
]
|
|
1990
|
+
"items": {
|
|
1991
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
1992
|
+
}
|
|
3167
1993
|
},
|
|
3168
1994
|
{
|
|
3169
1995
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|