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