Auth0 · Schema

BrandingIdentifiers

Identifier input display settings.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
login_display object
otp_autocomplete boolean Whether OTP autocomplete (autocomplete="one-time-code") is enabled.
phone_display object
View JSON Schema on GitHub

JSON Schema

auth0-brandingidentifiers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BrandingIdentifiers",
  "title": "BrandingIdentifiers",
  "type": "object",
  "description": "Identifier input display settings.",
  "additionalProperties": false,
  "properties": {
    "login_display": {
      "$ref": "#/components/schemas/BrandingLoginDisplayEnum"
    },
    "otp_autocomplete": {
      "type": "boolean",
      "description": "Whether OTP autocomplete (autocomplete=\"one-time-code\") is enabled.",
      "default": true
    },
    "phone_display": {
      "$ref": "#/components/schemas/BrandingPhoneDisplay"
    }
  }
}