Auth0 · Schema

UpdateSettingsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-updatesettingsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateSettingsResponseContent",
  "title": "UpdateSettingsResponseContent",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "universal_login_experience": {
      "$ref": "#/components/schemas/UniversalLoginExperienceEnum"
    },
    "identifier_first": {
      "type": "boolean",
      "description": "Whether identifier first is enabled or not"
    },
    "webauthn_platform_first_factor": {
      "type": "boolean",
      "description": "Use WebAuthn with Device Biometrics as the first authentication factor"
    }
  }
}