{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DomainCertificate", "title": "DomainCertificate", "type": "object", "description": "Certificate information. This object is relevant only for Custom Domains with Auth0-Managed Certificates.", "additionalProperties": false, "properties": { "status": { "$ref": "#/components/schemas/DomainCertificateStatusEnum" }, "error_msg": { "type": "string", "description": "A user-friendly error message will be presented if the certificate status is provisioning_failed or renewing_failed." }, "certificate_authority": { "$ref": "#/components/schemas/DomainCertificateAuthorityEnum" }, "renews_before": { "type": "string", "description": "The certificate will be renewed prior to this date." } } }