-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoftware-manager-components.yml
More file actions
913 lines (867 loc) · 26.3 KB
/
Copy pathsoftware-manager-components.yml
File metadata and controls
913 lines (867 loc) · 26.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
openapi: 3.0.4
info:
title: Software / Instance Manager Components
version: 0.1.0
description: |
Reusable schemas for software/service instance management. Includes the
generic instance entities plus the typed entity schemas for OAuth2
Authorization Servers, OID4VCI Issuers, and OID4VP Verifiers (absorbed
from the former oauth2-server / oid4vci / oid4vp component files).
paths: {}
components:
parameters:
SoftwarePartyId:
name: softwareId
in: path
required: true
description: Unique identifier of a software party.
schema:
type: string
format: uuid
CapabilityId:
name: capabilityId
in: path
required: true
description: Unique identifier of a software capability.
schema:
type: string
format: uuid
DeploymentId:
name: deploymentId
in: path
required: true
description: Unique identifier of a deployment.
schema:
type: string
format: uuid
EndpointId:
name: endpointId
in: path
required: true
schema:
type: string
format: uuid
CredentialId:
name: credentialId
in: path
required: true
schema:
type: string
format: uuid
schemas:
# --- Enums / extensible strings ---
SoftwareKind:
type: string
description: Form factor of the software.
enum: [SERVER, APP]
CapabilityType:
type: string
description: |
Protocol or behavioral role. Known values: OAUTH2_AUTHORIZATION_SERVER,
OAUTH2_RESOURCE_SERVER, OID4VP_VERIFIER, OID4VCI_ISSUER.
Extensible for future types (WALLET, SPIFFE_WORKLOAD, SOFTWARE_AGENT).
LifecycleStatus:
type: string
description: |
Capability lifecycle state. Known values: PROVISIONING, ACTIVE,
SUSPENDED, DECOMMISSIONED, ERROR. Extensible.
ManagementMode:
type: string
description: Who manages the service.
enum: [MANAGED, EXTERNAL, HYBRID]
RuntimeMode:
type: string
description: Where/how the service runs.
enum: [VDX_MANAGED, REMOTE_EDK, THIRD_PARTY]
ServiceTier:
type: string
enum: [STANDARD, PREMIUM, ENTERPRISE]
DeploymentType:
type: string
enum: [VDX_MANAGED, REMOTE_EDK, EXTERNAL_REFERENCE]
DeploymentStatus:
type: string
enum: [PENDING, DEPLOYING, RUNNING, STOPPED, FAILED]
HealthStatus:
type: string
enum: [HEALTHY, UNHEALTHY, UNREACHABLE]
EndpointType:
type: string
description: |
Known values: TOKEN, AUTHORIZE, INTROSPECT, REVOKE, JWKS, PAR,
USERINFO, DIRECT_POST, REQUEST_URI, CREDENTIAL, HEALTH, BASE,
DISCOVERY, CUSTOM.
EndpointSource:
type: string
enum: [DECLARED, DISCOVERED]
CredentialType:
type: string
enum: [CLIENT_SECRET, PRIVATE_KEY_JWT, MTLS, API_KEY]
# --- Core schemas ---
SoftwareParty:
type: object
required: [partyId, tenantId, softwareKind, createdAt, updatedAt]
properties:
partyId:
type: string
format: uuid
tenantId:
type: string
format: uuid
softwareKind:
$ref: '#/components/schemas/SoftwareKind'
displayVersion:
type: string
vendorPartyId:
type: string
format: uuid
nullable: true
softwareFamily:
type: string
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
deletedAt:
type: string
format: date-time
nullable: true
ServerParty:
type: object
required: [partyId, managementMode]
properties:
partyId:
type: string
format: uuid
managementMode:
$ref: '#/components/schemas/ManagementMode'
runtimeMode:
$ref: '#/components/schemas/RuntimeMode'
operatorPartyId:
type: string
format: uuid
nullable: true
serviceTier:
$ref: '#/components/schemas/ServiceTier'
SoftwareCapability:
type: object
required: [id, tenantId, softwarePartyId, capabilityType, isEnabled, system, lifecycleStatus, createdAt, updatedAt]
properties:
id:
type: string
format: uuid
tenantId:
type: string
format: uuid
softwarePartyId:
type: string
format: uuid
capabilityType:
$ref: '#/components/schemas/CapabilityType'
isEnabled:
type: boolean
system:
type: boolean
description: True for bootstrap/internal service capabilities required for tenant operation. System capabilities are protected from deletion and excluded from tenant service-instance quotas.
lifecycleStatus:
$ref: '#/components/schemas/LifecycleStatus'
lifecycleStatusReason:
type: string
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
deletedAt:
type: string
format: date-time
nullable: true
SoftwareEndpoint:
type: object
required: [id, softwarePartyId, endpointType, url, source, status]
properties:
id:
type: string
format: uuid
softwarePartyId:
type: string
format: uuid
capabilityId:
type: string
format: uuid
nullable: true
deploymentId:
type: string
format: uuid
nullable: true
endpointType:
$ref: '#/components/schemas/EndpointType'
url:
type: string
format: uri
isPrimary:
type: boolean
source:
$ref: '#/components/schemas/EndpointSource'
lastVerifiedAt:
type: string
format: date-time
nullable: true
status:
type: string
SoftwareDeployment:
type: object
required: [id, softwarePartyId, deploymentType, deploymentStatus]
properties:
id:
type: string
format: uuid
softwarePartyId:
type: string
format: uuid
capabilityId:
type: string
format: uuid
nullable: true
deploymentType:
$ref: '#/components/schemas/DeploymentType'
environment:
type: string
region:
type: string
runtimeRef:
type: string
orchestratorRef:
type: string
deploymentStatus:
$ref: '#/components/schemas/DeploymentStatus'
lastSyncAt:
type: string
format: date-time
nullable: true
lastHealthCheckAt:
type: string
format: date-time
nullable: true
lastHealthStatus:
$ref: '#/components/schemas/HealthStatus'
lastError:
type: string
nullable: true
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
SoftwareCredential:
type: object
required: [id, softwarePartyId, credentialType, isActive, validFrom]
properties:
id:
type: string
format: uuid
softwarePartyId:
type: string
format: uuid
capabilityId:
type: string
format: uuid
nullable: true
credentialType:
$ref: '#/components/schemas/CredentialType'
label:
type: string
clientId:
type: string
hasSecret:
type: boolean
description: Whether a secret is stored (never exposes actual value).
keyAlias:
type: string
isActive:
type: boolean
validFrom:
type: string
format: date-time
validUntil:
type: string
format: date-time
nullable: true
MetadataSnapshot:
type: object
required: [id, softwarePartyId, snapshotType, document, discoveredAt]
properties:
id:
type: string
format: uuid
softwarePartyId:
type: string
format: uuid
capabilityId:
type: string
format: uuid
nullable: true
snapshotType:
type: string
document:
type: object
description: Raw discovery document (JSONB).
discoveredFrom:
type: string
format: uri
discoveredAt:
type: string
format: date-time
# --- Summary / detail views ---
InstanceRoutingEndpoint:
type: object
description: |
A routing endpoint exposed by a software instance (per the unified
SoftwareInstance read model). Describes where a given capability is
reachable for request routing / discovery.
required: [serviceType]
properties:
serviceType:
type: string
description: Capability/service type this endpoint serves.
primary:
type: boolean
description: Whether this is the primary endpoint for its serviceType.
enabled:
type: boolean
description: Whether the endpoint is currently active.
host:
type: string
pathPrefix:
type: string
wellKnownPath:
type: string
ServiceInstanceSummary:
type: object
description: Lightweight listing view for the generic /services/instances API.
required: [partyId, tenantId, displayName, softwareKind]
properties:
partyId:
type: string
format: uuid
instanceId:
type: string
nullable: true
description: Stable route/config identifier for this service instance, for example `default`. `partyId` remains the software-party UUID.
tenantId:
type: string
format: uuid
displayName:
type: string
softwareKind:
$ref: '#/components/schemas/SoftwareKind'
managementMode:
$ref: '#/components/schemas/ManagementMode'
runtimeMode:
$ref: '#/components/schemas/RuntimeMode'
capabilities:
type: array
items:
$ref: '#/components/schemas/SoftwareCapability'
routingEndpoints:
type: array
items:
$ref: '#/components/schemas/InstanceRoutingEndpoint'
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
# --- Lifecycle action ---
LifecycleActionRequest:
type: object
properties:
reason:
type: string
description: Optional reason for the lifecycle transition.
capabilityId:
type: string
format: uuid
description: Target specific capability. If omitted, applies to all capabilities.
# --- Sub-resource create requests ---
DeploymentCreateRequest:
type: object
required:
- deploymentType
properties:
deploymentType:
type: string
description: Type of deployment (e.g., DOCKER, KUBERNETES, CLOUD_RUN).
environment:
type: string
description: Target environment (e.g., production, staging).
region:
type: string
description: Deployment region (e.g., eu-west-1).
EndpointCreateRequest:
type: object
required:
- endpointType
- url
properties:
endpointType:
type: string
description: Endpoint type (e.g., BASE, HEALTH, DISCOVERY, TOKEN, AUTHORIZE).
url:
type: string
format: uri
description: Endpoint URL.
isPrimary:
type: boolean
default: false
source:
$ref: '#/components/schemas/EndpointSource'
# --- OAuth2 Authorization Server entity schemas (absorbed from oauth2-server-components.yml) ---
OAuth2ServerConfig:
type: object
description: |
Runtime configuration for an OAuth2 Authorization Server.
Closely mirrors OAuth2ServerInstanceConfig from the IDK layer.
Written to config_setting as flat key-value properties.
properties:
# Identity
mode:
type: string
enum: [HOSTED, EXTERNAL]
description: HOSTED = VDX serves as AS. EXTERNAL = VDX connects to external AS.
issuer:
type: string
format: uri
description: Issuer identifier URL.
issuerTemplate:
type: string
description: Template with {tenant-id} placeholder for multi-tenant issuer URLs.
baseUrl:
type: string
format: uri
# Token lifetimes
accessTokenLifetimeSeconds:
type: integer
default: 3600
refreshTokenLifetimeSeconds:
type: integer
default: 86400
authorizationCodeLifetimeSeconds:
type: integer
default: 600
tokenFormat:
type: string
enum: [JWT, OPAQUE]
refreshTokenRotation:
type: boolean
default: true
# Grant types & response types
grantTypesEnabled:
type: array
items:
type: string
description: "e.g. authorization_code, client_credentials, refresh_token"
responseTypesSupported:
type: array
items:
type: string
scopesSupported:
type: array
items:
type: string
# OpenID Connect
oidc:
type: string
enum: [DISABLED, SUPPORTED, REQUIRED]
idTokenLifetimeSeconds:
type: integer
default: 3600
subjectTypesSupported:
type: array
items:
type: string
claimsSupported:
type: array
items:
type: string
# Feature policies
introspection:
type: string
enum: [DISABLED, SUPPORTED, REQUIRED]
revocation:
type: string
enum: [DISABLED, SUPPORTED, REQUIRED]
par:
type: string
enum: [DISABLED, SUPPORTED, REQUIRED]
tokenExchange:
type: string
enum: [DISABLED, SUPPORTED, REQUIRED]
pkce:
type: string
enum: [DISABLED, SUPPORTED, REQUIRED]
dpop:
type: string
enum: [DISABLED, SUPPORTED, REQUIRED]
# Auth methods
pkceMethodsSupported:
type: array
items:
type: string
tokenEndpointAuthMethodsSupported:
type: array
items:
type: string
introspectionEndpointAuthMethodsSupported:
type: array
items:
type: string
revocationEndpointAuthMethodsSupported:
type: array
items:
type: string
# Attestation
attestation:
type: string
enum: [DISABLED, SUPPORTED, REQUIRED]
attestationChallengeRequired:
type: boolean
attestationMaxLifetimeSeconds:
type: integer
attestationPopMaxAgeSeconds:
type: integer
# Signing
signingKeyAlias:
type: string
description: KMS key alias for signing.
signingAlgorithmsSupported:
type: array
items:
type: string
idTokenSigningAlgValuesSupported:
type: array
items:
type: string
# EXTERNAL mode endpoint overrides
tokenEndpoint:
type: string
format: uri
introspectionEndpoint:
type: string
format: uri
revocationEndpoint:
type: string
format: uri
jwksUri:
type: string
format: uri
AuthorizationServerDetail:
type: object
description: Full detail projection for an Authorization Server.
required: [partyId, tenantId, displayName, managementMode, capability]
properties:
partyId:
type: string
format: uuid
instanceId:
type: string
nullable: true
description: Stable route/config identifier for this authorization-server instance, for example `default`. `partyId` remains the software-party UUID.
tenantId:
type: string
format: uuid
displayName:
type: string
managementMode:
$ref: '#/components/schemas/ManagementMode'
runtimeMode:
$ref: '#/components/schemas/RuntimeMode'
serviceTier:
$ref: '#/components/schemas/ServiceTier'
operatorPartyId:
type: string
format: uuid
nullable: true
capability:
$ref: '#/components/schemas/SoftwareCapability'
config:
$ref: '#/components/schemas/OAuth2ServerConfig'
endpoints:
type: array
items:
$ref: '#/components/schemas/SoftwareEndpoint'
credentials:
type: array
items:
$ref: '#/components/schemas/SoftwareCredential'
deployments:
type: array
items:
$ref: '#/components/schemas/SoftwareDeployment'
metadataSnapshots:
type: array
items:
$ref: '#/components/schemas/MetadataSnapshot'
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
deletedAt:
type: string
format: date-time
nullable: true
# --- OID4VCI Issuer entity schemas (absorbed from oid4vci-components.yml) ---
Oid4vciIssuerConfig:
type: object
description: |
Runtime configuration for an OID4VCI Issuer.
No IDK config class exists yet; this defines the initial shape.
Will become the basis for the IDK OID4VCI config when that's built.
properties:
supportedFormats:
type: array
items:
type: string
example: vc+sd-jwt
description: "e.g. jwt_vc_json, vc+sd-jwt, mso_mdoc"
example: [vc+sd-jwt, jwt_vc_json]
credentialEndpointPath:
type: string
default: /credential
example: /credential
deferredCredentialEndpointPath:
type: string
example: /credential_deferred
notificationEndpointEnabled:
type: boolean
default: false
preAuthorizedCodeEnabled:
type: boolean
default: false
batchCredentialEnabled:
type: boolean
default: false
example:
supportedFormats: [vc+sd-jwt, jwt_vc_json]
credentialEndpointPath: /credential
deferredCredentialEndpointPath: /credential_deferred
notificationEndpointEnabled: true
preAuthorizedCodeEnabled: true
batchCredentialEnabled: false
Oid4vciIssuerDetail:
type: object
required: [partyId, tenantId, displayName, managementMode, capability]
properties:
partyId:
type: string
format: uuid
example: 4ca2a7cc-f5ef-4e13-8c0d-6a8bd7f6d211
instanceId:
type: string
nullable: true
description: Stable route/config identifier for this issuer instance, for example `default`. `partyId` remains the software-party UUID.
example: default
tenantId:
type: string
format: uuid
example: 7b3c2d9e-1f4a-4c8b-9e2d-5a6f7c8b9d01
displayName:
type: string
example: Acme Workforce Issuer
managementMode:
$ref: '#/components/schemas/ManagementMode'
runtimeMode:
$ref: '#/components/schemas/RuntimeMode'
authorizationServerId:
type: string
format: uuid
nullable: true
description: Party ID of the AS this issuer uses.
example: 996d5f68-8836-4af1-b6da-1330b42a2805
capability:
$ref: '#/components/schemas/SoftwareCapability'
config:
$ref: '#/components/schemas/Oid4vciIssuerConfig'
endpoints:
type: array
items:
$ref: '#/components/schemas/SoftwareEndpoint'
credentials:
type: array
items:
$ref: '#/components/schemas/SoftwareCredential'
createdAt:
type: string
format: date-time
example: '2026-06-12T09:15:00Z'
updatedAt:
type: string
format: date-time
example: '2026-06-12T09:15:00Z'
example:
partyId: 4ca2a7cc-f5ef-4e13-8c0d-6a8bd7f6d211
instanceId: default
tenantId: 7b3c2d9e-1f4a-4c8b-9e2d-5a6f7c8b9d01
displayName: Acme Workforce Issuer
managementMode: MANAGED
runtimeMode: VDX_MANAGED
authorizationServerId: 996d5f68-8836-4af1-b6da-1330b42a2805
capability:
id: 70984e6c-bc67-456e-b22d-809d0cfb8456
tenantId: 7b3c2d9e-1f4a-4c8b-9e2d-5a6f7c8b9d01
softwarePartyId: 4ca2a7cc-f5ef-4e13-8c0d-6a8bd7f6d211
capabilityType: OID4VCI_ISSUER
isEnabled: true
lifecycleStatus: ACTIVE
createdAt: '2026-06-12T09:15:00Z'
updatedAt: '2026-06-12T09:15:00Z'
config:
supportedFormats: [vc+sd-jwt, jwt_vc_json]
credentialEndpointPath: /credential
deferredCredentialEndpointPath: /credential_deferred
notificationEndpointEnabled: true
preAuthorizedCodeEnabled: true
batchCredentialEnabled: false
endpoints: []
credentials: []
createdAt: '2026-06-12T09:15:00Z'
updatedAt: '2026-06-12T09:15:00Z'
# --- OID4VP Verifier entity schemas (absorbed from oid4vp-components.yml) ---
Oid4vpVerifierConfig:
type: object
description: |
Runtime configuration for an OID4VP Verifier.
Mirrors key fields from UniversalOid4vpConfig, Oid4vpAuthBridgeConfig,
and ClientMetadataConfiguration.
properties:
# From UniversalOid4vpConfig
externalBaseUrl:
type: string
format: uri
description: Externally reachable base URL for this verifier.
example: https://verify.acme.example
responseUri:
type: string
format: uri
description: Direct post response URI.
example: https://verify.acme.example/direct_post
# Verifier identity
clientId:
type: string
description: Verifier client_id for wallet interactions.
example: https://verify.acme.example
responseMode:
type: string
enum: [direct_post, direct_post.jwt]
example: direct_post.jwt
# Session
sessionTtlSeconds:
type: integer
default: 300
# Auth bridge
autoCreateUser:
type: boolean
default: true
requireReconciliation:
type: boolean
default: false
userIdentifierClaimPath:
type: string
default: sub
example: sub
example:
externalBaseUrl: https://verify.acme.example
responseUri: https://verify.acme.example/direct_post
clientId: https://verify.acme.example
responseMode: direct_post.jwt
sessionTtlSeconds: 300
autoCreateUser: false
requireReconciliation: true
userIdentifierClaimPath: sub
Oid4vpVerifierDetail:
type: object
required: [partyId, tenantId, displayName, managementMode, capability]
properties:
partyId:
type: string
format: uuid
example: b12f86b9-fab4-48c7-9e14-e0a930a64182
instanceId:
type: string
nullable: true
description: Stable route/config identifier for this verifier instance, for example `default`. `partyId` remains the software-party UUID.
example: default
tenantId:
type: string
format: uuid
example: 7b3c2d9e-1f4a-4c8b-9e2d-5a6f7c8b9d01
displayName:
type: string
example: Acme Workforce Verifier
managementMode:
$ref: '#/components/schemas/ManagementMode'
runtimeMode:
$ref: '#/components/schemas/RuntimeMode'
authorizationServerId:
type: string
format: uuid
nullable: true
description: Party ID of the AS this verifier uses.
example: 996d5f68-8836-4af1-b6da-1330b42a2805
capability:
$ref: '#/components/schemas/SoftwareCapability'
config:
$ref: '#/components/schemas/Oid4vpVerifierConfig'
endpoints:
type: array
items:
$ref: '#/components/schemas/SoftwareEndpoint'
credentials:
type: array
items:
$ref: '#/components/schemas/SoftwareCredential'
createdAt:
type: string
format: date-time
example: '2026-06-12T09:30:00Z'
updatedAt:
type: string
format: date-time
example: '2026-06-12T09:30:00Z'
example:
partyId: b12f86b9-fab4-48c7-9e14-e0a930a64182
instanceId: default
tenantId: 7b3c2d9e-1f4a-4c8b-9e2d-5a6f7c8b9d01
displayName: Acme Workforce Verifier
managementMode: MANAGED
runtimeMode: VDX_MANAGED
authorizationServerId: 996d5f68-8836-4af1-b6da-1330b42a2805
capability:
id: 0ce8916e-8d0e-4d11-8ec1-a17d69a8a715
tenantId: 7b3c2d9e-1f4a-4c8b-9e2d-5a6f7c8b9d01
softwarePartyId: b12f86b9-fab4-48c7-9e14-e0a930a64182
capabilityType: OID4VP_VERIFIER
isEnabled: true
lifecycleStatus: ACTIVE
createdAt: '2026-06-12T09:30:00Z'
updatedAt: '2026-06-12T09:30:00Z'
config:
externalBaseUrl: https://verify.acme.example
responseUri: https://verify.acme.example/direct_post
clientId: https://verify.acme.example
responseMode: direct_post.jwt
sessionTtlSeconds: 300
autoCreateUser: false
requireReconciliation: true
userIdentifierClaimPath: sub
endpoints: []
credentials: []
createdAt: '2026-06-12T09:30:00Z'
updatedAt: '2026-06-12T09:30:00Z'