{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeletedCertificateBundle", "title": "DeletedCertificateBundle", "type": "object", "description": "A deleted certificate bundle consisting of its previous id, attributes, tags, and deletion information.", "allOf": [ { "$ref": "#/components/schemas/CertificateBundle" } ], "properties": { "recoveryId": { "type": "string", "description": "The url of the recovery object, used to identify and recover the deleted certificate.", "example": "500123" }, "scheduledPurgeDate": { "type": "integer", "format": "unixtime", "description": "The time when the certificate is scheduled to be purged, in UTC.", "readOnly": true, "example": 10 }, "deletedDate": { "type": "integer", "format": "unixtime", "description": "The time when the certificate was deleted, in UTC.", "readOnly": true, "example": 10 } } }