Auth0 · Schema

TenantSettingsPasswordPage

Change Password page customization.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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