{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeletedSecretBundle", "title": "DeletedSecretBundle", "type": "object", "description": "A deleted secret bundle.", "allOf": [ { "$ref": "#/components/schemas/SecretBundle" } ], "properties": { "recoveryId": { "type": "string", "description": "The URL of the recovery object.", "example": "500123" }, "scheduledPurgeDate": { "type": "integer", "description": "The time when the secret is scheduled to be purged.", "example": 10 }, "deletedDate": { "type": "integer", "description": "The time when the secret was deleted.", "example": 10 } } }