@sphereon/ssi-sdk.ebsi-support 0.27.1-next.2 → 0.27.1-next.6

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.
@@ -0,0 +1,2030 @@
1
+ {
2
+ "IEBSIAuthorizationClient": {
3
+ "components": {
4
+ "schemas": {
5
+ "EBSIAuthAccessTokenGetArgs": {
6
+ "type": "object",
7
+ "properties": {
8
+ "vc": {
9
+ "type": "string"
10
+ },
11
+ "definitionId": {
12
+ "$ref": "#/components/schemas/ScopeByDefinition"
13
+ },
14
+ "did": {
15
+ "type": "string"
16
+ },
17
+ "kid": {
18
+ "type": "string"
19
+ },
20
+ "scope": {
21
+ "$ref": "#/components/schemas/EBSIScope"
22
+ },
23
+ "apiOpts": {
24
+ "$ref": "#/components/schemas/Optional<ApiOpts,\"version\">"
25
+ }
26
+ },
27
+ "required": ["vc", "definitionId", "did", "kid", "scope", "apiOpts"]
28
+ },
29
+ "ScopeByDefinition": {
30
+ "type": "string",
31
+ "enum": ["didr_invite", "didr_write", "tir_invite", "tir_write", "timestamp_write", "tnt_authorise", "tnt_create", "tnt_write"]
32
+ },
33
+ "EBSIScope": {
34
+ "type": "string",
35
+ "enum": [
36
+ "didr_write",
37
+ "didr_invite",
38
+ "tir_write",
39
+ "tir_invite",
40
+ "timestamp_write",
41
+ "tnt_authorise",
42
+ "tnt_create",
43
+ "tnt_write",
44
+ "did_authn"
45
+ ],
46
+ "description": "The OpenID scope"
47
+ },
48
+ "Optional<ApiOpts,\"version\">": {
49
+ "type": "object",
50
+ "properties": {
51
+ "environment": {
52
+ "$ref": "#/components/schemas/EbsiEnvironment"
53
+ },
54
+ "version": {
55
+ "$ref": "#/components/schemas/EbsiApiVersion"
56
+ }
57
+ }
58
+ },
59
+ "EbsiEnvironment": {
60
+ "type": "string",
61
+ "enum": ["pilot", "conformance", "conformance-test"]
62
+ },
63
+ "EbsiApiVersion": {
64
+ "type": "string",
65
+ "enum": ["v3", "v4", "v5"]
66
+ },
67
+ "GetAccessTokenResponse": {
68
+ "anyOf": [
69
+ {
70
+ "$ref": "#/components/schemas/GetAccessTokenSuccessResponse"
71
+ },
72
+ {
73
+ "$ref": "#/components/schemas/ExceptionResponse"
74
+ }
75
+ ]
76
+ },
77
+ "GetAccessTokenSuccessResponse": {
78
+ "type": "object",
79
+ "properties": {
80
+ "access_token": {
81
+ "type": "string"
82
+ },
83
+ "token_type": {
84
+ "$ref": "#/components/schemas/TokenType"
85
+ },
86
+ "expires_in": {
87
+ "type": "number"
88
+ },
89
+ "scope": {
90
+ "$ref": "#/components/schemas/EBSIScope"
91
+ },
92
+ "id_token": {
93
+ "type": "string"
94
+ },
95
+ "apiOpts": {
96
+ "$ref": "#/components/schemas/ApiOpts"
97
+ }
98
+ },
99
+ "required": ["access_token", "token_type", "scope", "id_token", "apiOpts"]
100
+ },
101
+ "TokenType": {
102
+ "type": "string",
103
+ "const": "Bearer"
104
+ },
105
+ "ApiOpts": {
106
+ "type": "object",
107
+ "properties": {
108
+ "environment": {
109
+ "$ref": "#/components/schemas/EbsiEnvironment"
110
+ },
111
+ "version": {
112
+ "$ref": "#/components/schemas/EbsiApiVersion"
113
+ }
114
+ },
115
+ "required": ["version"]
116
+ },
117
+ "ExceptionResponse": {
118
+ "type": "object",
119
+ "properties": {
120
+ "type": {
121
+ "type": "string"
122
+ },
123
+ "title": {
124
+ "type": "string"
125
+ },
126
+ "status": {
127
+ "type": "number"
128
+ },
129
+ "detail": {
130
+ "type": "string"
131
+ },
132
+ "instance": {
133
+ "type": "string"
134
+ }
135
+ }
136
+ },
137
+ "GetOIDProviderJwksResponse": {
138
+ "anyOf": [
139
+ {
140
+ "$ref": "#/components/schemas/GetOIDProviderJwksSuccessResponse"
141
+ },
142
+ {
143
+ "$ref": "#/components/schemas/ExceptionResponse"
144
+ }
145
+ ]
146
+ },
147
+ "GetOIDProviderJwksSuccessResponse": {
148
+ "type": "object",
149
+ "properties": {
150
+ "keys": {
151
+ "type": "array",
152
+ "items": {
153
+ "$ref": "#/components/schemas/JWK"
154
+ }
155
+ }
156
+ },
157
+ "required": ["keys"]
158
+ },
159
+ "JWK": {
160
+ "type": "object",
161
+ "properties": {
162
+ "alg": {
163
+ "type": "string",
164
+ "description": "JWK \"alg\" (Algorithm) Parameter."
165
+ },
166
+ "crv": {
167
+ "type": "string"
168
+ },
169
+ "d": {
170
+ "type": "string"
171
+ },
172
+ "dp": {
173
+ "type": "string"
174
+ },
175
+ "dq": {
176
+ "type": "string"
177
+ },
178
+ "e": {
179
+ "type": "string"
180
+ },
181
+ "ext": {
182
+ "type": "boolean",
183
+ "description": "JWK \"ext\" (Extractable) Parameter."
184
+ },
185
+ "k": {
186
+ "type": "string"
187
+ },
188
+ "key_ops": {
189
+ "type": "array",
190
+ "items": {
191
+ "type": "string"
192
+ },
193
+ "description": "JWK \"key_ops\" (Key Operations) Parameter."
194
+ },
195
+ "kid": {
196
+ "type": "string",
197
+ "description": "JWK \"kid\" (Key ID) Parameter."
198
+ },
199
+ "kty": {
200
+ "type": "string",
201
+ "description": "JWK \"kty\" (Key Type) Parameter."
202
+ },
203
+ "n": {
204
+ "type": "string"
205
+ },
206
+ "oth": {
207
+ "type": "array",
208
+ "items": {
209
+ "type": "object",
210
+ "properties": {
211
+ "d": {
212
+ "type": "string"
213
+ },
214
+ "r": {
215
+ "type": "string"
216
+ },
217
+ "t": {
218
+ "type": "string"
219
+ }
220
+ }
221
+ }
222
+ },
223
+ "p": {
224
+ "type": "string"
225
+ },
226
+ "q": {
227
+ "type": "string"
228
+ },
229
+ "qi": {
230
+ "type": "string"
231
+ },
232
+ "use": {
233
+ "type": "string",
234
+ "description": "JWK \"use\" (Public Key Use) Parameter."
235
+ },
236
+ "x": {
237
+ "type": "string"
238
+ },
239
+ "y": {
240
+ "type": "string"
241
+ },
242
+ "x5c": {
243
+ "type": "array",
244
+ "items": {
245
+ "type": "string"
246
+ },
247
+ "description": "JWK \"x5c\" (X.509 Certificate Chain) Parameter."
248
+ },
249
+ "x5t": {
250
+ "type": "string",
251
+ "description": "JWK \"x5t\" (X.509 Certificate SHA-1 Thumbprint) Parameter."
252
+ },
253
+ "x5t#S256": {
254
+ "type": "string",
255
+ "description": "\"x5t#S256\" (X.509 Certificate SHA-256 Thumbprint) Parameter."
256
+ },
257
+ "x5u": {
258
+ "type": "string",
259
+ "description": "JWK \"x5u\" (X.509 URL) Parameter."
260
+ }
261
+ },
262
+ "additionalProperties": {},
263
+ "description": "JSON Web Key ( {@link https://www.rfc-editor.org/rfc/rfc7517 | JWK } ). \"RSA\", \"EC\", \"OKP\", and \"oct\" key types are supported."
264
+ },
265
+ "GetPresentationDefinitionArgs": {
266
+ "type": "object",
267
+ "properties": {
268
+ "scope": {
269
+ "$ref": "#/components/schemas/EBSIScope"
270
+ },
271
+ "apiOpts": {
272
+ "$ref": "#/components/schemas/ApiOpts"
273
+ }
274
+ },
275
+ "required": ["scope"]
276
+ },
277
+ "GetPresentationDefinitionResponse": {
278
+ "$ref": "#/components/schemas/GetPresentationDefinitionSuccessResponse"
279
+ },
280
+ "GetPresentationDefinitionSuccessResponse": {
281
+ "type": "object",
282
+ "properties": {
283
+ "format": {
284
+ "$ref": "#/components/schemas/Format"
285
+ },
286
+ "id": {
287
+ "type": "string"
288
+ },
289
+ "name": {
290
+ "type": "string"
291
+ },
292
+ "purpose": {
293
+ "type": "string"
294
+ },
295
+ "submission_requirements": {
296
+ "type": "array",
297
+ "items": {
298
+ "$ref": "#/components/schemas/SubmissionRequirement"
299
+ }
300
+ },
301
+ "input_descriptors": {
302
+ "type": "array",
303
+ "items": {
304
+ "$ref": "#/components/schemas/InputDescriptorV2"
305
+ }
306
+ },
307
+ "frame": {
308
+ "type": "object"
309
+ }
310
+ },
311
+ "required": ["id", "input_descriptors"]
312
+ },
313
+ "Format": {
314
+ "type": "object",
315
+ "properties": {
316
+ "jwt": {
317
+ "$ref": "#/components/schemas/JwtObject"
318
+ },
319
+ "jwt_vc": {
320
+ "$ref": "#/components/schemas/JwtObject"
321
+ },
322
+ "jwt_vc_json": {
323
+ "$ref": "#/components/schemas/JwtObject"
324
+ },
325
+ "jwt_vp": {
326
+ "$ref": "#/components/schemas/JwtObject"
327
+ },
328
+ "jwt_vp_json": {
329
+ "$ref": "#/components/schemas/JwtObject"
330
+ },
331
+ "ldp": {
332
+ "$ref": "#/components/schemas/LdpObject"
333
+ },
334
+ "ldp_vc": {
335
+ "$ref": "#/components/schemas/LdpObject"
336
+ },
337
+ "ldp_vp": {
338
+ "$ref": "#/components/schemas/LdpObject"
339
+ },
340
+ "di": {
341
+ "$ref": "#/components/schemas/DiObject"
342
+ },
343
+ "di_vc": {
344
+ "$ref": "#/components/schemas/DiObject"
345
+ },
346
+ "di_vp": {
347
+ "$ref": "#/components/schemas/DiObject"
348
+ },
349
+ "vc+sd-jwt": {
350
+ "$ref": "#/components/schemas/SdJwtObject"
351
+ }
352
+ }
353
+ },
354
+ "JwtObject": {
355
+ "type": "object",
356
+ "properties": {
357
+ "alg": {
358
+ "type": "array",
359
+ "items": {
360
+ "type": "string"
361
+ }
362
+ }
363
+ },
364
+ "required": ["alg"]
365
+ },
366
+ "LdpObject": {
367
+ "type": "object",
368
+ "properties": {
369
+ "proof_type": {
370
+ "type": "array",
371
+ "items": {
372
+ "type": "string"
373
+ }
374
+ }
375
+ },
376
+ "required": ["proof_type"]
377
+ },
378
+ "DiObject": {
379
+ "type": "object",
380
+ "properties": {
381
+ "proof_type": {
382
+ "type": "array",
383
+ "items": {
384
+ "type": "string"
385
+ }
386
+ },
387
+ "cryptosuite": {
388
+ "type": "array",
389
+ "items": {
390
+ "type": "string"
391
+ }
392
+ }
393
+ },
394
+ "required": ["proof_type", "cryptosuite"]
395
+ },
396
+ "SdJwtObject": {
397
+ "type": "object",
398
+ "properties": {
399
+ "sd-jwt_alg_values": {
400
+ "type": "array",
401
+ "items": {
402
+ "type": "string"
403
+ }
404
+ },
405
+ "kb-jwt_alg_values": {
406
+ "type": "array",
407
+ "items": {
408
+ "type": "string"
409
+ }
410
+ }
411
+ }
412
+ },
413
+ "SubmissionRequirement": {
414
+ "type": "object",
415
+ "properties": {
416
+ "name": {
417
+ "type": "string"
418
+ },
419
+ "purpose": {
420
+ "type": "string"
421
+ },
422
+ "rule": {
423
+ "$ref": "#/components/schemas/Rules"
424
+ },
425
+ "count": {
426
+ "type": "number"
427
+ },
428
+ "min": {
429
+ "type": "number"
430
+ },
431
+ "max": {
432
+ "type": "number"
433
+ },
434
+ "from": {
435
+ "type": "string"
436
+ },
437
+ "from_nested": {
438
+ "type": "array",
439
+ "items": {
440
+ "$ref": "#/components/schemas/SubmissionRequirement"
441
+ }
442
+ }
443
+ },
444
+ "required": ["rule"]
445
+ },
446
+ "Rules": {
447
+ "type": "string",
448
+ "enum": ["all", "pick"]
449
+ },
450
+ "InputDescriptorV2": {
451
+ "type": "object",
452
+ "properties": {
453
+ "id": {
454
+ "type": "string"
455
+ },
456
+ "name": {
457
+ "type": "string"
458
+ },
459
+ "purpose": {
460
+ "type": "string"
461
+ },
462
+ "format": {
463
+ "$ref": "#/components/schemas/Format"
464
+ },
465
+ "group": {
466
+ "type": "array",
467
+ "items": {
468
+ "type": "string"
469
+ }
470
+ },
471
+ "issuance": {
472
+ "type": "array",
473
+ "items": {
474
+ "$ref": "#/components/schemas/Issuance"
475
+ }
476
+ },
477
+ "constraints": {
478
+ "$ref": "#/components/schemas/ConstraintsV2"
479
+ }
480
+ },
481
+ "required": ["id", "constraints"]
482
+ },
483
+ "Issuance": {
484
+ "type": "object",
485
+ "properties": {
486
+ "manifest": {
487
+ "type": "string"
488
+ }
489
+ },
490
+ "additionalProperties": {}
491
+ },
492
+ "ConstraintsV2": {
493
+ "type": "object",
494
+ "properties": {
495
+ "limit_disclosure": {
496
+ "$ref": "#/components/schemas/Optionality"
497
+ },
498
+ "statuses": {
499
+ "$ref": "#/components/schemas/Statuses"
500
+ },
501
+ "fields": {
502
+ "type": "array",
503
+ "items": {
504
+ "$ref": "#/components/schemas/FieldV2"
505
+ }
506
+ },
507
+ "subject_is_issuer": {
508
+ "$ref": "#/components/schemas/Optionality"
509
+ },
510
+ "is_holder": {
511
+ "type": "array",
512
+ "items": {
513
+ "$ref": "#/components/schemas/HolderSubject"
514
+ }
515
+ },
516
+ "same_subject": {
517
+ "type": "array",
518
+ "items": {
519
+ "$ref": "#/components/schemas/HolderSubject"
520
+ }
521
+ }
522
+ }
523
+ },
524
+ "Optionality": {
525
+ "type": "string",
526
+ "enum": ["required", "preferred"]
527
+ },
528
+ "Statuses": {
529
+ "type": "object",
530
+ "properties": {
531
+ "active": {
532
+ "$ref": "#/components/schemas/PdStatus"
533
+ },
534
+ "suspended": {
535
+ "$ref": "#/components/schemas/PdStatus"
536
+ },
537
+ "revoked": {
538
+ "$ref": "#/components/schemas/PdStatus"
539
+ }
540
+ }
541
+ },
542
+ "PdStatus": {
543
+ "type": "object",
544
+ "properties": {
545
+ "directive": {
546
+ "$ref": "#/components/schemas/Directives"
547
+ }
548
+ }
549
+ },
550
+ "Directives": {
551
+ "type": "string",
552
+ "enum": ["required", "allowed", "disallowed"]
553
+ },
554
+ "FieldV2": {
555
+ "type": "object",
556
+ "properties": {
557
+ "id": {
558
+ "type": "string"
559
+ },
560
+ "path": {
561
+ "type": "array",
562
+ "items": {
563
+ "type": "string"
564
+ }
565
+ },
566
+ "purpose": {
567
+ "type": "string"
568
+ },
569
+ "filter": {
570
+ "$ref": "#/components/schemas/FilterV2"
571
+ },
572
+ "predicate": {
573
+ "$ref": "#/components/schemas/Optionality"
574
+ },
575
+ "name": {
576
+ "type": "string"
577
+ },
578
+ "optional": {
579
+ "type": "boolean"
580
+ }
581
+ },
582
+ "required": ["path"]
583
+ },
584
+ "FilterV2": {
585
+ "type": "object",
586
+ "properties": {
587
+ "const": {
588
+ "$ref": "#/components/schemas/OneOfNumberStringBoolean"
589
+ },
590
+ "enum": {
591
+ "type": "array",
592
+ "items": {
593
+ "$ref": "#/components/schemas/OneOfNumberStringBoolean"
594
+ }
595
+ },
596
+ "exclusiveMinimum": {
597
+ "$ref": "#/components/schemas/OneOfNumberString"
598
+ },
599
+ "exclusiveMaximum": {
600
+ "$ref": "#/components/schemas/OneOfNumberString"
601
+ },
602
+ "format": {
603
+ "type": "string"
604
+ },
605
+ "formatMaximum": {
606
+ "type": "string"
607
+ },
608
+ "formatMinimum": {
609
+ "type": "string"
610
+ },
611
+ "formatExclusiveMaximum": {
612
+ "type": "string"
613
+ },
614
+ "formatExclusiveMinimum": {
615
+ "type": "string"
616
+ },
617
+ "minLength": {
618
+ "type": "number"
619
+ },
620
+ "maxLength": {
621
+ "type": "number"
622
+ },
623
+ "minimum": {
624
+ "$ref": "#/components/schemas/OneOfNumberString"
625
+ },
626
+ "maximum": {
627
+ "$ref": "#/components/schemas/OneOfNumberString"
628
+ },
629
+ "not": {
630
+ "type": "object"
631
+ },
632
+ "pattern": {
633
+ "type": "string"
634
+ },
635
+ "type": {
636
+ "type": "string"
637
+ },
638
+ "contains": {
639
+ "$ref": "#/components/schemas/FilterV2Base"
640
+ },
641
+ "items": {
642
+ "$ref": "#/components/schemas/FilterV2BaseItems"
643
+ }
644
+ },
645
+ "required": ["type"]
646
+ },
647
+ "OneOfNumberStringBoolean": {
648
+ "type": ["boolean", "number", "string"]
649
+ },
650
+ "OneOfNumberString": {
651
+ "type": ["number", "string"]
652
+ },
653
+ "FilterV2Base": {
654
+ "type": "object",
655
+ "properties": {
656
+ "const": {
657
+ "$ref": "#/components/schemas/OneOfNumberStringBoolean"
658
+ },
659
+ "enum": {
660
+ "type": "array",
661
+ "items": {
662
+ "$ref": "#/components/schemas/OneOfNumberStringBoolean"
663
+ }
664
+ },
665
+ "exclusiveMinimum": {
666
+ "$ref": "#/components/schemas/OneOfNumberString"
667
+ },
668
+ "exclusiveMaximum": {
669
+ "$ref": "#/components/schemas/OneOfNumberString"
670
+ },
671
+ "format": {
672
+ "type": "string"
673
+ },
674
+ "formatMaximum": {
675
+ "type": "string"
676
+ },
677
+ "formatMinimum": {
678
+ "type": "string"
679
+ },
680
+ "formatExclusiveMaximum": {
681
+ "type": "string"
682
+ },
683
+ "formatExclusiveMinimum": {
684
+ "type": "string"
685
+ },
686
+ "minLength": {
687
+ "type": "number"
688
+ },
689
+ "maxLength": {
690
+ "type": "number"
691
+ },
692
+ "minimum": {
693
+ "$ref": "#/components/schemas/OneOfNumberString"
694
+ },
695
+ "maximum": {
696
+ "$ref": "#/components/schemas/OneOfNumberString"
697
+ },
698
+ "not": {
699
+ "type": "object"
700
+ },
701
+ "pattern": {
702
+ "type": "string"
703
+ },
704
+ "type": {
705
+ "type": "string"
706
+ },
707
+ "contains": {
708
+ "$ref": "#/components/schemas/FilterV2Base"
709
+ },
710
+ "items": {
711
+ "$ref": "#/components/schemas/FilterV2BaseItems"
712
+ }
713
+ }
714
+ },
715
+ "FilterV2BaseItems": {
716
+ "type": "object",
717
+ "properties": {
718
+ "const": {
719
+ "$ref": "#/components/schemas/OneOfNumberStringBoolean"
720
+ },
721
+ "enum": {
722
+ "type": "array",
723
+ "items": {
724
+ "$ref": "#/components/schemas/OneOfNumberStringBoolean"
725
+ }
726
+ },
727
+ "exclusiveMinimum": {
728
+ "$ref": "#/components/schemas/OneOfNumberString"
729
+ },
730
+ "exclusiveMaximum": {
731
+ "$ref": "#/components/schemas/OneOfNumberString"
732
+ },
733
+ "format": {
734
+ "type": "string"
735
+ },
736
+ "formatMaximum": {
737
+ "type": "string"
738
+ },
739
+ "formatMinimum": {
740
+ "type": "string"
741
+ },
742
+ "formatExclusiveMaximum": {
743
+ "type": "string"
744
+ },
745
+ "formatExclusiveMinimum": {
746
+ "type": "string"
747
+ },
748
+ "minLength": {
749
+ "type": "number"
750
+ },
751
+ "maxLength": {
752
+ "type": "number"
753
+ },
754
+ "minimum": {
755
+ "$ref": "#/components/schemas/OneOfNumberString"
756
+ },
757
+ "maximum": {
758
+ "$ref": "#/components/schemas/OneOfNumberString"
759
+ },
760
+ "not": {
761
+ "type": "object"
762
+ },
763
+ "pattern": {
764
+ "type": "string"
765
+ },
766
+ "type": {
767
+ "type": "string"
768
+ },
769
+ "contains": {
770
+ "$ref": "#/components/schemas/FilterV2Base"
771
+ },
772
+ "items": {
773
+ "$ref": "#/components/schemas/FilterV2BaseItems"
774
+ }
775
+ },
776
+ "required": ["type"]
777
+ },
778
+ "HolderSubject": {
779
+ "type": "object",
780
+ "properties": {
781
+ "field_id": {
782
+ "type": "array",
783
+ "items": {
784
+ "type": "string"
785
+ }
786
+ },
787
+ "directive": {
788
+ "$ref": "#/components/schemas/Optionality"
789
+ }
790
+ },
791
+ "required": ["field_id", "directive"]
792
+ },
793
+ "GetOIDProviderMetadataResponse": {
794
+ "$ref": "#/components/schemas/EbsiOpenIDMetadata"
795
+ },
796
+ "EbsiOpenIDMetadata": {
797
+ "anyOf": [
798
+ {
799
+ "type": "object",
800
+ "properties": {
801
+ "presentation_definition_endpoint": {
802
+ "type": "string"
803
+ },
804
+ "authorization_endpoint": {
805
+ "anyOf": [
806
+ {
807
+ "$ref": "#/components/schemas/Schema"
808
+ },
809
+ {
810
+ "type": "string"
811
+ }
812
+ ]
813
+ },
814
+ "issuer": {
815
+ "anyOf": [
816
+ {
817
+ "$ref": "#/components/schemas/ResponseIss"
818
+ },
819
+ {
820
+ "type": "string"
821
+ }
822
+ ]
823
+ },
824
+ "response_types_supported": {
825
+ "anyOf": [
826
+ {
827
+ "type": "array",
828
+ "items": {
829
+ "$ref": "#/components/schemas/ResponseType"
830
+ }
831
+ },
832
+ {
833
+ "$ref": "#/components/schemas/ResponseType"
834
+ }
835
+ ]
836
+ },
837
+ "scopes_supported": {
838
+ "anyOf": [
839
+ {
840
+ "type": "array",
841
+ "items": {
842
+ "$ref": "#/components/schemas/Scope"
843
+ }
844
+ },
845
+ {
846
+ "$ref": "#/components/schemas/Scope"
847
+ }
848
+ ]
849
+ },
850
+ "subject_types_supported": {
851
+ "anyOf": [
852
+ {
853
+ "type": "array",
854
+ "items": {
855
+ "$ref": "#/components/schemas/SubjectType"
856
+ }
857
+ },
858
+ {
859
+ "$ref": "#/components/schemas/SubjectType"
860
+ }
861
+ ]
862
+ },
863
+ "id_token_signing_alg_values_supported": {
864
+ "anyOf": [
865
+ {
866
+ "type": "array",
867
+ "items": {
868
+ "$ref": "#/components/schemas/SigningAlgo"
869
+ }
870
+ },
871
+ {
872
+ "$ref": "#/components/schemas/SigningAlgo"
873
+ }
874
+ ]
875
+ },
876
+ "request_object_signing_alg_values_supported": {
877
+ "anyOf": [
878
+ {
879
+ "type": "array",
880
+ "items": {
881
+ "$ref": "#/components/schemas/SigningAlgo"
882
+ }
883
+ },
884
+ {
885
+ "$ref": "#/components/schemas/SigningAlgo"
886
+ }
887
+ ]
888
+ },
889
+ "subject_syntax_types_supported": {
890
+ "type": "array",
891
+ "items": {
892
+ "type": "string"
893
+ }
894
+ },
895
+ "token_endpoint": {
896
+ "type": "string"
897
+ },
898
+ "userinfo_endpoint": {
899
+ "type": "string"
900
+ },
901
+ "jwks_uri": {
902
+ "type": "string"
903
+ },
904
+ "registration_endpoint": {
905
+ "type": "string"
906
+ },
907
+ "response_modes_supported": {
908
+ "anyOf": [
909
+ {
910
+ "type": "array",
911
+ "items": {
912
+ "$ref": "#/components/schemas/ResponseMode"
913
+ }
914
+ },
915
+ {
916
+ "$ref": "#/components/schemas/ResponseMode"
917
+ }
918
+ ]
919
+ },
920
+ "grant_types_supported": {
921
+ "anyOf": [
922
+ {
923
+ "type": "array",
924
+ "items": {
925
+ "$ref": "#/components/schemas/GrantType"
926
+ }
927
+ },
928
+ {
929
+ "$ref": "#/components/schemas/GrantType"
930
+ }
931
+ ]
932
+ },
933
+ "acr_values_supported": {
934
+ "anyOf": [
935
+ {
936
+ "type": "array",
937
+ "items": {
938
+ "$ref": "#/components/schemas/AuthenticationContextReferences"
939
+ }
940
+ },
941
+ {
942
+ "$ref": "#/components/schemas/AuthenticationContextReferences"
943
+ }
944
+ ]
945
+ },
946
+ "id_token_encryption_alg_values_supported": {
947
+ "anyOf": [
948
+ {
949
+ "type": "array",
950
+ "items": {
951
+ "$ref": "#/components/schemas/SigningAlgo"
952
+ }
953
+ },
954
+ {
955
+ "$ref": "#/components/schemas/SigningAlgo"
956
+ }
957
+ ]
958
+ },
959
+ "id_token_encryption_enc_values_supported": {
960
+ "anyOf": [
961
+ {
962
+ "type": "array",
963
+ "items": {
964
+ "type": "string"
965
+ }
966
+ },
967
+ {
968
+ "type": "string"
969
+ }
970
+ ],
971
+ "description": "OPTIONAL. JSON array containing a list of the JWE encryption algorithms (enc values) supported by the OP for the ID Token to encode the Claims in a JWT [JWT]."
972
+ },
973
+ "userinfo_signing_alg_values_supported": {
974
+ "anyOf": [
975
+ {
976
+ "type": "array",
977
+ "items": {
978
+ "$ref": "#/components/schemas/SigningAlgo"
979
+ }
980
+ },
981
+ {
982
+ "$ref": "#/components/schemas/SigningAlgo"
983
+ }
984
+ ]
985
+ },
986
+ "userinfo_encryption_alg_values_supported": {
987
+ "anyOf": [
988
+ {
989
+ "type": "array",
990
+ "items": {
991
+ "$ref": "#/components/schemas/SigningAlgo"
992
+ }
993
+ },
994
+ {
995
+ "$ref": "#/components/schemas/SigningAlgo"
996
+ }
997
+ ]
998
+ },
999
+ "userinfo_encryption_enc_values_supported": {
1000
+ "anyOf": [
1001
+ {
1002
+ "type": "array",
1003
+ "items": {
1004
+ "type": "string"
1005
+ }
1006
+ },
1007
+ {
1008
+ "type": "string"
1009
+ }
1010
+ ],
1011
+ "description": "OPTIONAL. JSON array containing a list of the JWE encryption algorithms (enc values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT]."
1012
+ },
1013
+ "request_object_encryption_alg_values_supported": {
1014
+ "anyOf": [
1015
+ {
1016
+ "type": "array",
1017
+ "items": {
1018
+ "$ref": "#/components/schemas/SigningAlgo"
1019
+ }
1020
+ },
1021
+ {
1022
+ "$ref": "#/components/schemas/SigningAlgo"
1023
+ }
1024
+ ]
1025
+ },
1026
+ "request_object_encryption_enc_values_supported": {
1027
+ "anyOf": [
1028
+ {
1029
+ "type": "array",
1030
+ "items": {
1031
+ "type": "string"
1032
+ }
1033
+ },
1034
+ {
1035
+ "type": "string"
1036
+ }
1037
+ ],
1038
+ "description": "OPTIONAL. JSON array containing a list of the JWE encryption algorithms (enc values) supported by the OP for Request Objects. These algorithms are used both when the Request Object is passed by value and when it is passed by reference."
1039
+ },
1040
+ "token_endpoint_auth_methods_supported": {
1041
+ "anyOf": [
1042
+ {
1043
+ "type": "array",
1044
+ "items": {
1045
+ "$ref": "#/components/schemas/TokenEndpointAuthMethod"
1046
+ }
1047
+ },
1048
+ {
1049
+ "$ref": "#/components/schemas/TokenEndpointAuthMethod"
1050
+ }
1051
+ ]
1052
+ },
1053
+ "token_endpoint_auth_signing_alg_values_supported": {
1054
+ "anyOf": [
1055
+ {
1056
+ "type": "array",
1057
+ "items": {
1058
+ "$ref": "#/components/schemas/SigningAlgo"
1059
+ }
1060
+ },
1061
+ {
1062
+ "$ref": "#/components/schemas/SigningAlgo"
1063
+ }
1064
+ ]
1065
+ },
1066
+ "display_values_supported": {
1067
+ "anyOf": [
1068
+ {
1069
+ "type": "array",
1070
+ "items": {}
1071
+ },
1072
+ {}
1073
+ ],
1074
+ "description": "OPTIONAL. JSON array containing a list of the display parameter values that the OpenID Provider supports. These values are described in Section 3.1.2.1 of OpenID Connect Core 1.0 [OpenID.Core]."
1075
+ },
1076
+ "claim_types_supported": {
1077
+ "anyOf": [
1078
+ {
1079
+ "type": "array",
1080
+ "items": {
1081
+ "$ref": "#/components/schemas/ClaimType"
1082
+ }
1083
+ },
1084
+ {
1085
+ "$ref": "#/components/schemas/ClaimType"
1086
+ }
1087
+ ],
1088
+ "description": "OPTIONAL. JSON array containing a list of the Claim Types that the OpenID Provider supports. These Claim Types are described in Section 5.6 of OpenID Connect Core 1.0 [OpenID.Core]. Values defined by this specification are normal, aggregated, and distributed. If omitted, the implementation supports only normal Claims."
1089
+ },
1090
+ "claims_supported": {
1091
+ "anyOf": [
1092
+ {
1093
+ "type": "array",
1094
+ "items": {
1095
+ "type": "string"
1096
+ }
1097
+ },
1098
+ {
1099
+ "type": "string"
1100
+ }
1101
+ ],
1102
+ "description": "RECOMMENDED. JSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply values for. Note that for privacy or other reasons, this might not be an exhaustive list."
1103
+ },
1104
+ "service_documentation": {
1105
+ "type": "string"
1106
+ },
1107
+ "claims_locales_supported": {
1108
+ "anyOf": [
1109
+ {
1110
+ "type": "array",
1111
+ "items": {
1112
+ "type": "string"
1113
+ }
1114
+ },
1115
+ {
1116
+ "type": "string"
1117
+ }
1118
+ ]
1119
+ },
1120
+ "ui_locales_supported": {
1121
+ "anyOf": [
1122
+ {
1123
+ "type": "array",
1124
+ "items": {
1125
+ "type": "string"
1126
+ }
1127
+ },
1128
+ {
1129
+ "type": "string"
1130
+ }
1131
+ ]
1132
+ },
1133
+ "claims_parameter_supported": {
1134
+ "type": "boolean"
1135
+ },
1136
+ "request_parameter_supported": {
1137
+ "type": "boolean"
1138
+ },
1139
+ "request_uri_parameter_supported": {
1140
+ "type": "boolean"
1141
+ },
1142
+ "require_request_uri_registration": {
1143
+ "type": "boolean"
1144
+ },
1145
+ "op_policy_uri": {
1146
+ "type": "string"
1147
+ },
1148
+ "op_tos_uri": {
1149
+ "type": "string"
1150
+ },
1151
+ "client_id": {
1152
+ "type": "string"
1153
+ },
1154
+ "redirect_uris": {
1155
+ "type": "array",
1156
+ "items": {
1157
+ "type": "string"
1158
+ }
1159
+ },
1160
+ "client_name": {
1161
+ "type": "string"
1162
+ },
1163
+ "token_endpoint_auth_method": {
1164
+ "type": "string"
1165
+ },
1166
+ "application_type": {
1167
+ "type": "string"
1168
+ },
1169
+ "response_types": {
1170
+ "type": "string"
1171
+ },
1172
+ "grant_types": {
1173
+ "type": "string"
1174
+ },
1175
+ "vp_formats": {
1176
+ "$ref": "#/components/schemas/Format"
1177
+ }
1178
+ }
1179
+ },
1180
+ {
1181
+ "type": "object",
1182
+ "properties": {
1183
+ "presentation_definition_endpoint": {
1184
+ "type": "string"
1185
+ },
1186
+ "authorization_endpoint": {
1187
+ "anyOf": [
1188
+ {
1189
+ "$ref": "#/components/schemas/Schema"
1190
+ },
1191
+ {
1192
+ "type": "string"
1193
+ }
1194
+ ]
1195
+ },
1196
+ "issuer": {
1197
+ "anyOf": [
1198
+ {
1199
+ "$ref": "#/components/schemas/ResponseIss"
1200
+ },
1201
+ {
1202
+ "type": "string"
1203
+ }
1204
+ ]
1205
+ },
1206
+ "response_types_supported": {
1207
+ "anyOf": [
1208
+ {
1209
+ "type": "array",
1210
+ "items": {
1211
+ "$ref": "#/components/schemas/ResponseType"
1212
+ }
1213
+ },
1214
+ {
1215
+ "$ref": "#/components/schemas/ResponseType"
1216
+ }
1217
+ ]
1218
+ },
1219
+ "scopes_supported": {
1220
+ "anyOf": [
1221
+ {
1222
+ "type": "array",
1223
+ "items": {
1224
+ "$ref": "#/components/schemas/Scope"
1225
+ }
1226
+ },
1227
+ {
1228
+ "$ref": "#/components/schemas/Scope"
1229
+ }
1230
+ ]
1231
+ },
1232
+ "subject_types_supported": {
1233
+ "anyOf": [
1234
+ {
1235
+ "type": "array",
1236
+ "items": {
1237
+ "$ref": "#/components/schemas/SubjectType"
1238
+ }
1239
+ },
1240
+ {
1241
+ "$ref": "#/components/schemas/SubjectType"
1242
+ }
1243
+ ]
1244
+ },
1245
+ "id_token_signing_alg_values_supported": {
1246
+ "anyOf": [
1247
+ {
1248
+ "type": "array",
1249
+ "items": {
1250
+ "$ref": "#/components/schemas/SigningAlgo"
1251
+ }
1252
+ },
1253
+ {
1254
+ "$ref": "#/components/schemas/SigningAlgo"
1255
+ }
1256
+ ]
1257
+ },
1258
+ "request_object_signing_alg_values_supported": {
1259
+ "anyOf": [
1260
+ {
1261
+ "type": "array",
1262
+ "items": {
1263
+ "$ref": "#/components/schemas/SigningAlgo"
1264
+ }
1265
+ },
1266
+ {
1267
+ "$ref": "#/components/schemas/SigningAlgo"
1268
+ }
1269
+ ]
1270
+ },
1271
+ "subject_syntax_types_supported": {
1272
+ "type": "array",
1273
+ "items": {
1274
+ "type": "string"
1275
+ }
1276
+ },
1277
+ "token_endpoint": {
1278
+ "type": "string"
1279
+ },
1280
+ "userinfo_endpoint": {
1281
+ "type": "string"
1282
+ },
1283
+ "jwks_uri": {
1284
+ "type": "string"
1285
+ },
1286
+ "registration_endpoint": {
1287
+ "type": "string"
1288
+ },
1289
+ "response_modes_supported": {
1290
+ "anyOf": [
1291
+ {
1292
+ "type": "array",
1293
+ "items": {
1294
+ "$ref": "#/components/schemas/ResponseMode"
1295
+ }
1296
+ },
1297
+ {
1298
+ "$ref": "#/components/schemas/ResponseMode"
1299
+ }
1300
+ ]
1301
+ },
1302
+ "grant_types_supported": {
1303
+ "anyOf": [
1304
+ {
1305
+ "type": "array",
1306
+ "items": {
1307
+ "$ref": "#/components/schemas/GrantType"
1308
+ }
1309
+ },
1310
+ {
1311
+ "$ref": "#/components/schemas/GrantType"
1312
+ }
1313
+ ]
1314
+ },
1315
+ "acr_values_supported": {
1316
+ "anyOf": [
1317
+ {
1318
+ "type": "array",
1319
+ "items": {
1320
+ "$ref": "#/components/schemas/AuthenticationContextReferences"
1321
+ }
1322
+ },
1323
+ {
1324
+ "$ref": "#/components/schemas/AuthenticationContextReferences"
1325
+ }
1326
+ ]
1327
+ },
1328
+ "id_token_encryption_alg_values_supported": {
1329
+ "anyOf": [
1330
+ {
1331
+ "type": "array",
1332
+ "items": {
1333
+ "$ref": "#/components/schemas/SigningAlgo"
1334
+ }
1335
+ },
1336
+ {
1337
+ "$ref": "#/components/schemas/SigningAlgo"
1338
+ }
1339
+ ]
1340
+ },
1341
+ "id_token_encryption_enc_values_supported": {
1342
+ "anyOf": [
1343
+ {
1344
+ "type": "array",
1345
+ "items": {
1346
+ "type": "string"
1347
+ }
1348
+ },
1349
+ {
1350
+ "type": "string"
1351
+ }
1352
+ ],
1353
+ "description": "OPTIONAL. JSON array containing a list of the JWE encryption algorithms (enc values) supported by the OP for the ID Token to encode the Claims in a JWT [JWT]."
1354
+ },
1355
+ "userinfo_signing_alg_values_supported": {
1356
+ "anyOf": [
1357
+ {
1358
+ "type": "array",
1359
+ "items": {
1360
+ "$ref": "#/components/schemas/SigningAlgo"
1361
+ }
1362
+ },
1363
+ {
1364
+ "$ref": "#/components/schemas/SigningAlgo"
1365
+ }
1366
+ ]
1367
+ },
1368
+ "userinfo_encryption_alg_values_supported": {
1369
+ "anyOf": [
1370
+ {
1371
+ "type": "array",
1372
+ "items": {
1373
+ "$ref": "#/components/schemas/SigningAlgo"
1374
+ }
1375
+ },
1376
+ {
1377
+ "$ref": "#/components/schemas/SigningAlgo"
1378
+ }
1379
+ ]
1380
+ },
1381
+ "userinfo_encryption_enc_values_supported": {
1382
+ "anyOf": [
1383
+ {
1384
+ "type": "array",
1385
+ "items": {
1386
+ "type": "string"
1387
+ }
1388
+ },
1389
+ {
1390
+ "type": "string"
1391
+ }
1392
+ ],
1393
+ "description": "OPTIONAL. JSON array containing a list of the JWE encryption algorithms (enc values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT]."
1394
+ },
1395
+ "request_object_encryption_alg_values_supported": {
1396
+ "anyOf": [
1397
+ {
1398
+ "type": "array",
1399
+ "items": {
1400
+ "$ref": "#/components/schemas/SigningAlgo"
1401
+ }
1402
+ },
1403
+ {
1404
+ "$ref": "#/components/schemas/SigningAlgo"
1405
+ }
1406
+ ]
1407
+ },
1408
+ "request_object_encryption_enc_values_supported": {
1409
+ "anyOf": [
1410
+ {
1411
+ "type": "array",
1412
+ "items": {
1413
+ "type": "string"
1414
+ }
1415
+ },
1416
+ {
1417
+ "type": "string"
1418
+ }
1419
+ ],
1420
+ "description": "OPTIONAL. JSON array containing a list of the JWE encryption algorithms (enc values) supported by the OP for Request Objects. These algorithms are used both when the Request Object is passed by value and when it is passed by reference."
1421
+ },
1422
+ "token_endpoint_auth_methods_supported": {
1423
+ "anyOf": [
1424
+ {
1425
+ "type": "array",
1426
+ "items": {
1427
+ "$ref": "#/components/schemas/TokenEndpointAuthMethod"
1428
+ }
1429
+ },
1430
+ {
1431
+ "$ref": "#/components/schemas/TokenEndpointAuthMethod"
1432
+ }
1433
+ ]
1434
+ },
1435
+ "token_endpoint_auth_signing_alg_values_supported": {
1436
+ "anyOf": [
1437
+ {
1438
+ "type": "array",
1439
+ "items": {
1440
+ "$ref": "#/components/schemas/SigningAlgo"
1441
+ }
1442
+ },
1443
+ {
1444
+ "$ref": "#/components/schemas/SigningAlgo"
1445
+ }
1446
+ ]
1447
+ },
1448
+ "display_values_supported": {
1449
+ "anyOf": [
1450
+ {
1451
+ "type": "array",
1452
+ "items": {}
1453
+ },
1454
+ {}
1455
+ ],
1456
+ "description": "OPTIONAL. JSON array containing a list of the display parameter values that the OpenID Provider supports. These values are described in Section 3.1.2.1 of OpenID Connect Core 1.0 [OpenID.Core]."
1457
+ },
1458
+ "claim_types_supported": {
1459
+ "anyOf": [
1460
+ {
1461
+ "type": "array",
1462
+ "items": {
1463
+ "$ref": "#/components/schemas/ClaimType"
1464
+ }
1465
+ },
1466
+ {
1467
+ "$ref": "#/components/schemas/ClaimType"
1468
+ }
1469
+ ],
1470
+ "description": "OPTIONAL. JSON array containing a list of the Claim Types that the OpenID Provider supports. These Claim Types are described in Section 5.6 of OpenID Connect Core 1.0 [OpenID.Core]. Values defined by this specification are normal, aggregated, and distributed. If omitted, the implementation supports only normal Claims."
1471
+ },
1472
+ "claims_supported": {
1473
+ "anyOf": [
1474
+ {
1475
+ "type": "array",
1476
+ "items": {
1477
+ "type": "string"
1478
+ }
1479
+ },
1480
+ {
1481
+ "type": "string"
1482
+ }
1483
+ ],
1484
+ "description": "RECOMMENDED. JSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply values for. Note that for privacy or other reasons, this might not be an exhaustive list."
1485
+ },
1486
+ "service_documentation": {
1487
+ "type": "string"
1488
+ },
1489
+ "claims_locales_supported": {
1490
+ "anyOf": [
1491
+ {
1492
+ "type": "array",
1493
+ "items": {
1494
+ "type": "string"
1495
+ }
1496
+ },
1497
+ {
1498
+ "type": "string"
1499
+ }
1500
+ ]
1501
+ },
1502
+ "ui_locales_supported": {
1503
+ "anyOf": [
1504
+ {
1505
+ "type": "array",
1506
+ "items": {
1507
+ "type": "string"
1508
+ }
1509
+ },
1510
+ {
1511
+ "type": "string"
1512
+ }
1513
+ ]
1514
+ },
1515
+ "claims_parameter_supported": {
1516
+ "type": "boolean"
1517
+ },
1518
+ "request_parameter_supported": {
1519
+ "type": "boolean"
1520
+ },
1521
+ "request_uri_parameter_supported": {
1522
+ "type": "boolean"
1523
+ },
1524
+ "require_request_uri_registration": {
1525
+ "type": "boolean"
1526
+ },
1527
+ "op_policy_uri": {
1528
+ "type": "string"
1529
+ },
1530
+ "op_tos_uri": {
1531
+ "type": "string"
1532
+ },
1533
+ "client_id": {
1534
+ "type": "string"
1535
+ },
1536
+ "redirect_uris": {
1537
+ "type": "array",
1538
+ "items": {
1539
+ "type": "string"
1540
+ }
1541
+ },
1542
+ "client_name": {
1543
+ "type": "string"
1544
+ },
1545
+ "token_endpoint_auth_method": {
1546
+ "type": "string"
1547
+ },
1548
+ "application_type": {
1549
+ "type": "string"
1550
+ },
1551
+ "response_types": {
1552
+ "type": "string"
1553
+ },
1554
+ "grant_types": {
1555
+ "type": "string"
1556
+ },
1557
+ "vp_formats": {
1558
+ "$ref": "#/components/schemas/Format"
1559
+ },
1560
+ "logo_uri": {
1561
+ "type": "string"
1562
+ },
1563
+ "client_purpose": {
1564
+ "type": "string"
1565
+ }
1566
+ }
1567
+ },
1568
+ {
1569
+ "type": "object",
1570
+ "properties": {
1571
+ "presentation_definition_endpoint": {
1572
+ "type": "string"
1573
+ },
1574
+ "authorization_endpoint": {
1575
+ "anyOf": [
1576
+ {
1577
+ "$ref": "#/components/schemas/Schema"
1578
+ },
1579
+ {
1580
+ "type": "string"
1581
+ }
1582
+ ]
1583
+ },
1584
+ "issuer": {
1585
+ "anyOf": [
1586
+ {
1587
+ "$ref": "#/components/schemas/ResponseIss"
1588
+ },
1589
+ {
1590
+ "type": "string"
1591
+ }
1592
+ ]
1593
+ },
1594
+ "response_types_supported": {
1595
+ "anyOf": [
1596
+ {
1597
+ "type": "array",
1598
+ "items": {
1599
+ "$ref": "#/components/schemas/ResponseType"
1600
+ }
1601
+ },
1602
+ {
1603
+ "$ref": "#/components/schemas/ResponseType"
1604
+ }
1605
+ ]
1606
+ },
1607
+ "scopes_supported": {
1608
+ "anyOf": [
1609
+ {
1610
+ "type": "array",
1611
+ "items": {
1612
+ "$ref": "#/components/schemas/Scope"
1613
+ }
1614
+ },
1615
+ {
1616
+ "$ref": "#/components/schemas/Scope"
1617
+ }
1618
+ ]
1619
+ },
1620
+ "subject_types_supported": {
1621
+ "anyOf": [
1622
+ {
1623
+ "type": "array",
1624
+ "items": {
1625
+ "$ref": "#/components/schemas/SubjectType"
1626
+ }
1627
+ },
1628
+ {
1629
+ "$ref": "#/components/schemas/SubjectType"
1630
+ }
1631
+ ]
1632
+ },
1633
+ "id_token_signing_alg_values_supported": {
1634
+ "anyOf": [
1635
+ {
1636
+ "type": "array",
1637
+ "items": {
1638
+ "$ref": "#/components/schemas/SigningAlgo"
1639
+ }
1640
+ },
1641
+ {
1642
+ "$ref": "#/components/schemas/SigningAlgo"
1643
+ }
1644
+ ]
1645
+ },
1646
+ "request_object_signing_alg_values_supported": {
1647
+ "anyOf": [
1648
+ {
1649
+ "type": "array",
1650
+ "items": {
1651
+ "$ref": "#/components/schemas/SigningAlgo"
1652
+ }
1653
+ },
1654
+ {
1655
+ "$ref": "#/components/schemas/SigningAlgo"
1656
+ }
1657
+ ]
1658
+ },
1659
+ "subject_syntax_types_supported": {
1660
+ "type": "array",
1661
+ "items": {
1662
+ "type": "string"
1663
+ }
1664
+ },
1665
+ "token_endpoint": {
1666
+ "type": "string"
1667
+ },
1668
+ "userinfo_endpoint": {
1669
+ "type": "string"
1670
+ },
1671
+ "jwks_uri": {
1672
+ "type": "string"
1673
+ },
1674
+ "registration_endpoint": {
1675
+ "type": "string"
1676
+ },
1677
+ "response_modes_supported": {
1678
+ "anyOf": [
1679
+ {
1680
+ "type": "array",
1681
+ "items": {
1682
+ "$ref": "#/components/schemas/ResponseMode"
1683
+ }
1684
+ },
1685
+ {
1686
+ "$ref": "#/components/schemas/ResponseMode"
1687
+ }
1688
+ ]
1689
+ },
1690
+ "grant_types_supported": {
1691
+ "anyOf": [
1692
+ {
1693
+ "type": "array",
1694
+ "items": {
1695
+ "$ref": "#/components/schemas/GrantType"
1696
+ }
1697
+ },
1698
+ {
1699
+ "$ref": "#/components/schemas/GrantType"
1700
+ }
1701
+ ]
1702
+ },
1703
+ "acr_values_supported": {
1704
+ "anyOf": [
1705
+ {
1706
+ "type": "array",
1707
+ "items": {
1708
+ "$ref": "#/components/schemas/AuthenticationContextReferences"
1709
+ }
1710
+ },
1711
+ {
1712
+ "$ref": "#/components/schemas/AuthenticationContextReferences"
1713
+ }
1714
+ ]
1715
+ },
1716
+ "id_token_encryption_alg_values_supported": {
1717
+ "anyOf": [
1718
+ {
1719
+ "type": "array",
1720
+ "items": {
1721
+ "$ref": "#/components/schemas/SigningAlgo"
1722
+ }
1723
+ },
1724
+ {
1725
+ "$ref": "#/components/schemas/SigningAlgo"
1726
+ }
1727
+ ]
1728
+ },
1729
+ "id_token_encryption_enc_values_supported": {
1730
+ "anyOf": [
1731
+ {
1732
+ "type": "array",
1733
+ "items": {
1734
+ "type": "string"
1735
+ }
1736
+ },
1737
+ {
1738
+ "type": "string"
1739
+ }
1740
+ ],
1741
+ "description": "OPTIONAL. JSON array containing a list of the JWE encryption algorithms (enc values) supported by the OP for the ID Token to encode the Claims in a JWT [JWT]."
1742
+ },
1743
+ "userinfo_signing_alg_values_supported": {
1744
+ "anyOf": [
1745
+ {
1746
+ "type": "array",
1747
+ "items": {
1748
+ "$ref": "#/components/schemas/SigningAlgo"
1749
+ }
1750
+ },
1751
+ {
1752
+ "$ref": "#/components/schemas/SigningAlgo"
1753
+ }
1754
+ ]
1755
+ },
1756
+ "userinfo_encryption_alg_values_supported": {
1757
+ "anyOf": [
1758
+ {
1759
+ "type": "array",
1760
+ "items": {
1761
+ "$ref": "#/components/schemas/SigningAlgo"
1762
+ }
1763
+ },
1764
+ {
1765
+ "$ref": "#/components/schemas/SigningAlgo"
1766
+ }
1767
+ ]
1768
+ },
1769
+ "userinfo_encryption_enc_values_supported": {
1770
+ "anyOf": [
1771
+ {
1772
+ "type": "array",
1773
+ "items": {
1774
+ "type": "string"
1775
+ }
1776
+ },
1777
+ {
1778
+ "type": "string"
1779
+ }
1780
+ ],
1781
+ "description": "OPTIONAL. JSON array containing a list of the JWE encryption algorithms (enc values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT]."
1782
+ },
1783
+ "request_object_encryption_alg_values_supported": {
1784
+ "anyOf": [
1785
+ {
1786
+ "type": "array",
1787
+ "items": {
1788
+ "$ref": "#/components/schemas/SigningAlgo"
1789
+ }
1790
+ },
1791
+ {
1792
+ "$ref": "#/components/schemas/SigningAlgo"
1793
+ }
1794
+ ]
1795
+ },
1796
+ "request_object_encryption_enc_values_supported": {
1797
+ "anyOf": [
1798
+ {
1799
+ "type": "array",
1800
+ "items": {
1801
+ "type": "string"
1802
+ }
1803
+ },
1804
+ {
1805
+ "type": "string"
1806
+ }
1807
+ ],
1808
+ "description": "OPTIONAL. JSON array containing a list of the JWE encryption algorithms (enc values) supported by the OP for Request Objects. These algorithms are used both when the Request Object is passed by value and when it is passed by reference."
1809
+ },
1810
+ "token_endpoint_auth_methods_supported": {
1811
+ "anyOf": [
1812
+ {
1813
+ "type": "array",
1814
+ "items": {
1815
+ "$ref": "#/components/schemas/TokenEndpointAuthMethod"
1816
+ }
1817
+ },
1818
+ {
1819
+ "$ref": "#/components/schemas/TokenEndpointAuthMethod"
1820
+ }
1821
+ ]
1822
+ },
1823
+ "token_endpoint_auth_signing_alg_values_supported": {
1824
+ "anyOf": [
1825
+ {
1826
+ "type": "array",
1827
+ "items": {
1828
+ "$ref": "#/components/schemas/SigningAlgo"
1829
+ }
1830
+ },
1831
+ {
1832
+ "$ref": "#/components/schemas/SigningAlgo"
1833
+ }
1834
+ ]
1835
+ },
1836
+ "display_values_supported": {
1837
+ "anyOf": [
1838
+ {
1839
+ "type": "array",
1840
+ "items": {}
1841
+ },
1842
+ {}
1843
+ ],
1844
+ "description": "OPTIONAL. JSON array containing a list of the display parameter values that the OpenID Provider supports. These values are described in Section 3.1.2.1 of OpenID Connect Core 1.0 [OpenID.Core]."
1845
+ },
1846
+ "claim_types_supported": {
1847
+ "anyOf": [
1848
+ {
1849
+ "type": "array",
1850
+ "items": {
1851
+ "$ref": "#/components/schemas/ClaimType"
1852
+ }
1853
+ },
1854
+ {
1855
+ "$ref": "#/components/schemas/ClaimType"
1856
+ }
1857
+ ],
1858
+ "description": "OPTIONAL. JSON array containing a list of the Claim Types that the OpenID Provider supports. These Claim Types are described in Section 5.6 of OpenID Connect Core 1.0 [OpenID.Core]. Values defined by this specification are normal, aggregated, and distributed. If omitted, the implementation supports only normal Claims."
1859
+ },
1860
+ "claims_supported": {
1861
+ "anyOf": [
1862
+ {
1863
+ "type": "array",
1864
+ "items": {
1865
+ "type": "string"
1866
+ }
1867
+ },
1868
+ {
1869
+ "type": "string"
1870
+ }
1871
+ ],
1872
+ "description": "RECOMMENDED. JSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply values for. Note that for privacy or other reasons, this might not be an exhaustive list."
1873
+ },
1874
+ "service_documentation": {
1875
+ "type": "string"
1876
+ },
1877
+ "claims_locales_supported": {
1878
+ "anyOf": [
1879
+ {
1880
+ "type": "array",
1881
+ "items": {
1882
+ "type": "string"
1883
+ }
1884
+ },
1885
+ {
1886
+ "type": "string"
1887
+ }
1888
+ ]
1889
+ },
1890
+ "ui_locales_supported": {
1891
+ "anyOf": [
1892
+ {
1893
+ "type": "array",
1894
+ "items": {
1895
+ "type": "string"
1896
+ }
1897
+ },
1898
+ {
1899
+ "type": "string"
1900
+ }
1901
+ ]
1902
+ },
1903
+ "claims_parameter_supported": {
1904
+ "type": "boolean"
1905
+ },
1906
+ "request_parameter_supported": {
1907
+ "type": "boolean"
1908
+ },
1909
+ "request_uri_parameter_supported": {
1910
+ "type": "boolean"
1911
+ },
1912
+ "require_request_uri_registration": {
1913
+ "type": "boolean"
1914
+ },
1915
+ "op_policy_uri": {
1916
+ "type": "string"
1917
+ },
1918
+ "op_tos_uri": {
1919
+ "type": "string"
1920
+ },
1921
+ "id_token_types_supported": {
1922
+ "anyOf": [
1923
+ {
1924
+ "type": "array",
1925
+ "items": {
1926
+ "$ref": "#/components/schemas/IdTokenType"
1927
+ }
1928
+ },
1929
+ {
1930
+ "$ref": "#/components/schemas/IdTokenType"
1931
+ }
1932
+ ]
1933
+ },
1934
+ "vp_formats_supported": {
1935
+ "$ref": "#/components/schemas/Format"
1936
+ }
1937
+ }
1938
+ }
1939
+ ]
1940
+ },
1941
+ "Schema": {
1942
+ "type": "string",
1943
+ "enum": ["openid:", "openid-vc:"]
1944
+ },
1945
+ "ResponseIss": {
1946
+ "type": "string",
1947
+ "enum": ["https://self-issued.me", "https://self-issued.me/v2", "https://self-issued.me/v2/openid-vc"]
1948
+ },
1949
+ "ResponseType": {
1950
+ "type": "string",
1951
+ "enum": ["id_token", "vp_token"]
1952
+ },
1953
+ "Scope": {
1954
+ "type": "string",
1955
+ "enum": ["openid", "openid did_authn", "profile", "email", "address", "phone"]
1956
+ },
1957
+ "SubjectType": {
1958
+ "type": "string",
1959
+ "enum": ["public", "pairwise"]
1960
+ },
1961
+ "SigningAlgo": {
1962
+ "type": "string",
1963
+ "enum": ["EdDSA", "RS256", "PS256", "ES256", "ES256K"]
1964
+ },
1965
+ "ResponseMode": {
1966
+ "type": "string",
1967
+ "enum": ["fragment", "form_post", "post", "direct_post", "query"]
1968
+ },
1969
+ "GrantType": {
1970
+ "type": "string",
1971
+ "enum": ["authorization_code", "implicit"]
1972
+ },
1973
+ "AuthenticationContextReferences": {
1974
+ "type": "string",
1975
+ "enum": ["phr", "phrh"]
1976
+ },
1977
+ "TokenEndpointAuthMethod": {
1978
+ "type": "string",
1979
+ "enum": ["client_secret_post", "client_secret_basic", "client_secret_jwt", "private_key_jwt"]
1980
+ },
1981
+ "ClaimType": {
1982
+ "type": "string",
1983
+ "enum": ["normal", "aggregated", "distributed"]
1984
+ },
1985
+ "IdTokenType": {
1986
+ "type": "string",
1987
+ "enum": ["subject_signed", "attester_signed"]
1988
+ }
1989
+ },
1990
+ "methods": {
1991
+ "ebsiAccessTokenGet": {
1992
+ "description": "",
1993
+ "arguments": {
1994
+ "$ref": "#/components/schemas/EBSIAuthAccessTokenGetArgs"
1995
+ },
1996
+ "returnType": {
1997
+ "$ref": "#/components/schemas/GetAccessTokenResponse"
1998
+ }
1999
+ },
2000
+ "ebsiAuthorizationServerJwks": {
2001
+ "description": "",
2002
+ "arguments": {
2003
+ "$ref": "#/components/schemas/ApiOpts"
2004
+ },
2005
+ "returnType": {
2006
+ "$ref": "#/components/schemas/GetOIDProviderJwksResponse"
2007
+ }
2008
+ },
2009
+ "ebsiPresentationDefinitionGet": {
2010
+ "description": "",
2011
+ "arguments": {
2012
+ "$ref": "#/components/schemas/GetPresentationDefinitionArgs"
2013
+ },
2014
+ "returnType": {
2015
+ "$ref": "#/components/schemas/GetPresentationDefinitionResponse"
2016
+ }
2017
+ },
2018
+ "ebsiWellknownMetadata": {
2019
+ "description": "",
2020
+ "arguments": {
2021
+ "$ref": "#/components/schemas/ApiOpts"
2022
+ },
2023
+ "returnType": {
2024
+ "$ref": "#/components/schemas/GetOIDProviderMetadataResponse"
2025
+ }
2026
+ }
2027
+ }
2028
+ }
2029
+ }
2030
+ }