{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CertificateOperation", "type": "object", "description": "A certificate operation is returned in case of asynchronous requests.", "properties": { "id": { "type": "string" }, "issuer": { "type": "object" }, "csr": { "type": "string", "description": "The certificate signing request (CSR) in base64." }, "cancellation_requested": { "type": "boolean" }, "status": { "type": "string" }, "status_details": { "type": "string" }, "error": { "type": "object" }, "target": { "type": "string" }, "request_id": { "type": "string" } } }