Skip to content

Commit

Permalink
fix linting issue bool to boolean
Browse files Browse the repository at this point in the history
Signed-off-by: pstlouis <[email protected]>
  • Loading branch information
PatStLouis committed Sep 10, 2024
1 parent 3812669 commit da8e436
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/VerifyCredentialResult.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ components:
description: Object summarizing a verification
properties:
verified:
type: bool
type: boolean
description: Overall verification assertion of the payload. This is set to True if no errors were detected during the verification process, otherwise False. See error handling section for more guidance around errors, warnings, validation and verification.
results:
type: object
Expand All @@ -30,7 +30,7 @@ components:
description: Results from validating the validFrom and validUntil values if present in the VerifiableCredential.
properties:
valid:
type: bool
type: boolean
description: Results from validating the validFrom and validUntil values.
validFrom:
type: string
Expand All @@ -46,7 +46,7 @@ components:
description: Results from validating a credentialSchema object.
properties:
valid:
type: bool
type: boolean
description: Results from validating the credentialSchema object.
input:
type: object
Expand All @@ -59,7 +59,7 @@ components:
description: Results from validating a credentialStatus object.
properties:
valid:
type: bool
type: boolean
description: Results from validating the credentialStatus object.
input:
type: object
Expand All @@ -72,7 +72,7 @@ components:
description: Results from validating a proof object.
properties:
valid:
type: bool
type: boolean
description: Results from validating the proof object.
input:
type: object
Expand Down

0 comments on commit da8e436

Please sign in to comment.