{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CertificateWrite", "title": "CertificateWrite", "type": "object", "description": "", "properties": { "certificate": { "type": "string", "description": "The primary certificate, as a string." }, "private_key": { "type": "string", "description": "The private key, as a string. Is a \"write-only\" field, will never be returned after write." }, "intermediate_certificates": { "type": "string", "description": "The intermediate certificate(s), as a string." } }, "x-tags": [ "Models" ] }