{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CertificateOperation", "title": "CertificateOperation", "type": "object", "description": "A certificate operation is returned in case of asynchronous requests.", "properties": { "id": { "type": "string", "description": "The certificate id.", "readOnly": true, "example": "abc123" }, "issuer": { "$ref": "#/components/schemas/IssuerParameters" }, "csr": { "type": "string", "format": "byte", "description": "The certificate signing request (CSR) that is being used in the certificate operation.", "example": "example_value" }, "cancellation_requested": { "type": "boolean", "description": "Indicates if cancellation was requested on the certificate operation.", "example": true }, "status": { "type": "string", "description": "Status of the certificate operation.", "example": "example_value" }, "status_details": { "type": "string", "description": "The status details of the certificate operation.", "example": "example_value" }, "error": { "$ref": "#/components/schemas/Error" }, "target": { "type": "string", "description": "Location which contains the result of the certificate operation.", "example": "example_value" }, "request_id": { "type": "string", "description": "Identifier for the certificate operation.", "example": "500123" } } }