Skip to content

Commit 991182e

Browse files
committed
Allow string/object for jobId
1 parent 7bfe34a commit 991182e

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

openapi/openapi.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,10 @@ components:
395395
jobId:
396396
description: This input field is used to keep track of an ongoing DID operation
397397
process. See <a href="https://identity.foundation/did-registration/#jobid">https://identity.foundation/did-registration/#jobid</a>.
398-
type: string
398+
oneOf:
399+
- type: null
400+
- type: string
401+
- type: object
399402
example: 6d85bcd0-2ea3-4288-ab00-15afadd8a156
400403
options:
401404
$ref: "#/components/schemas/RequestOptions"
@@ -651,7 +654,10 @@ components:
651654
- didState
652655
properties:
653656
jobId:
654-
type: string
657+
oneOf:
658+
- type: null
659+
- type: string
660+
- type: object
655661
example: 6d85bcd0-2ea3-4288-ab00-15afadd8a156
656662
didState:
657663
$ref: "#/components/schemas/DidState"

0 commit comments

Comments
 (0)