Auth0 · Schema

TenantSettingsErrorPage

Error page customization.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
html string Custom Error HTML (Liquid syntax is supported).
show_log_link boolean Whether to show the link to log as part of the default error page (true, default) or not to show the link (false).
url string URL to redirect to when an error occurs instead of showing the default error page.
View JSON Schema on GitHub

JSON Schema

auth0-tenantsettingserrorpage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TenantSettingsErrorPage",
  "title": "TenantSettingsErrorPage",
  "type": [
    "object",
    "null"
  ],
  "description": "Error page customization.",
  "additionalProperties": false,
  "properties": {
    "html": {
      "type": "string",
      "description": "Custom Error HTML (<a href='https://github.com/Shopify/liquid/wiki/Liquid-for-Designers'>Liquid syntax</a> is supported).",
      "default": ""
    },
    "show_log_link": {
      "type": "boolean",
      "description": "Whether to show the link to log as part of the default error page (true, default) or not to show the link (false).",
      "default": false
    },
    "url": {
      "type": "string",
      "description": "URL to redirect to when an error occurs instead of showing the default error page.",
      "default": "https://mycompany.org/error",
      "format": "absolute-uri-or-empty"
    }
  }
}