Auth0 · Schema

UpdateSettingsRequestContent

Prompts settings

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
universal_login_experience object
identifier_first booleannull Whether identifier first is enabled or not
webauthn_platform_first_factor booleannull Use WebAuthn with Device Biometrics as the first authentication factor
View JSON Schema on GitHub

JSON Schema

auth0-updatesettingsrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateSettingsRequestContent",
  "title": "UpdateSettingsRequestContent",
  "type": "object",
  "description": "Prompts settings",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "universal_login_experience": {
      "$ref": "#/components/schemas/UniversalLoginExperienceEnum"
    },
    "identifier_first": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether identifier first is enabled or not"
    },
    "webauthn_platform_first_factor": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Use WebAuthn with Device Biometrics as the first authentication factor"
    }
  }
}