Auth0 · Schema

UpdateBrandingIdentifiers

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-updatebrandingidentifiers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateBrandingIdentifiers",
  "title": "UpdateBrandingIdentifiers",
  "type": [
    "object",
    "null"
  ],
  "description": "Identifier input display settings.",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "login_display": {
      "$ref": "#/components/schemas/UpdateBrandingLoginDisplayEnum"
    },
    "otp_autocomplete": {
      "type": "boolean",
      "description": "Whether OTP autocomplete (autocomplete=\"one-time-code\") is enabled.",
      "default": true
    },
    "phone_display": {
      "$ref": "#/components/schemas/UpdateBrandingPhoneDisplay"
    }
  }
}