Skip to content

Commit

Permalink
Support null values in certain properties
Browse files Browse the repository at this point in the history
  • Loading branch information
peacekeeper committed Apr 11, 2024
1 parent 3f7496e commit d021ace
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -388,11 +388,11 @@ components:
items:
$ref: "#/components/schemas/VerificationMethodTemplate"
signingRequest:
type: object
type: [object, null]
additionalProperties:
$ref: "#/components/schemas/SigningRequest"
decryptionRequest:
type: object
type: [object, null]
additionalProperties:
$ref: "#/components/schemas/DecryptionRequest"
DidStateWait:
Expand Down Expand Up @@ -443,11 +443,11 @@ components:
- type: object
properties:
signingResponse:
type: object
type: [object, null]
additionalProperties:
$ref: "#/components/schemas/SigningResponse"
decryptionResponse:
type: object
type: [object, null]
additionalProperties:
$ref: "#/components/schemas/DecryptionResponse"
example:
Expand Down Expand Up @@ -564,7 +564,7 @@ components:
- type: object
properties:
publicKeyJwk:
type: object
type: [object, null]
additionalProperties: { }
publicKeyMultibase:
type: string
Expand All @@ -575,7 +575,7 @@ components:
- type: object
properties:
privateKeyJwk:
type: object
type: [object, null]
additionalProperties: { }
privateKeyMultibase:
type: string
Expand All @@ -594,7 +594,7 @@ components:
items:
type: string
publicKeyJwk:
type: object
type: [object, null]
additionalProperties: { }
String:
type: string
Expand Down

0 comments on commit d021ace

Please sign in to comment.