Skip to content

Commit 03d3a85

Browse files
committed
update the openapi spec with the new response schema for key rotation
1 parent b0b324a commit 03d3a85

File tree

1 file changed

+22
-16
lines changed

1 file changed

+22
-16
lines changed

openapi.yaml

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -519,22 +519,28 @@ paths:
519519
schema:
520520
type: object
521521
properties:
522-
totpComplete:
523-
type: integer
524-
description: the number of TOTP codes that were encrypted with the new key
525-
required: true
526-
totpIncomplete:
527-
type: integer
528-
description: the number of TOTP codes that have not yet been encrypted with the new key
529-
required: true
530-
webauthnComplete:
531-
type: integer
532-
description: the number of Webauthn passkeys that were encrypted with the new key
533-
required: true
534-
webauthnIncomplete:
535-
type: integer
536-
description: the number of Webauthn passkeys that have not yet been encrypted with the new key
537-
required: true
522+
totp:
523+
type: object
524+
properties:
525+
complete:
526+
type: integer
527+
description: the number of TOTP codes that were encrypted with the new key
528+
required: true
529+
incomplete:
530+
type: integer
531+
description: the number of TOTP codes that have not yet been encrypted with the new key
532+
required: true
533+
webauthn:
534+
type: object
535+
properties:
536+
complete:
537+
type: integer
538+
description: the number of Webauthn passkeys that were encrypted with the new key
539+
required: true
540+
incomplete:
541+
type: integer
542+
description: the number of Webauthn passkeys that have not yet been encrypted with the new key
543+
required: true
538544
400:
539545
description: Bad Request
540546
content:

0 commit comments

Comments
 (0)