Auth0 · Schema

TenantSettingsGuardianPage

Guardian page customization.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
enabled boolean Whether to use the custom Guardian HTML (true) or the default Auth0 page (false, default)
html string Custom Guardian HTML (Liquid syntax is supported).
View JSON Schema on GitHub

JSON Schema

auth0-tenantsettingsguardianpage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TenantSettingsGuardianPage",
  "title": "TenantSettingsGuardianPage",
  "type": [
    "object",
    "null"
  ],
  "description": "Guardian page customization.",
  "additionalProperties": false,
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether to use the custom Guardian HTML (true) or the default Auth0 page (false, default)",
      "default": false
    },
    "html": {
      "type": "string",
      "description": " Custom Guardian HTML (<a href='https://github.com/Shopify/liquid/wiki/Liquid-for-Designers'>Liquid syntax</a> is supported).",
      "default": ""
    }
  }
}