Auth0 · Schema

DomainCertificate

Certificate information. This object is relevant only for Custom Domains with Auth0-Managed Certificates.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
status object
error_msg string A user-friendly error message will be presented if the certificate status is provisioning_failed or renewing_failed.
certificate_authority object
renews_before string The certificate will be renewed prior to this date.
View JSON Schema on GitHub

JSON Schema

auth0-domaincertificate-schema.json Raw ↑
{
  "$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."
    }
  }
}