Auth0 · Schema

BruteForceProtectionModeEnum

Account Lockout: Determines whether or not IP address is used when counting failed attempts. Possible values: count_per_identifier_and_ip, count_per_identifier.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-bruteforceprotectionmodeenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BruteForceProtectionModeEnum",
  "title": "BruteForceProtectionModeEnum",
  "type": "string",
  "description": "Account Lockout: Determines whether or not IP address is used when counting failed attempts.\n          Possible values: <code>count_per_identifier_and_ip</code>, <code>count_per_identifier</code>.",
  "default": "count_per_identifier_and_ip",
  "enum": [
    "count_per_identifier_and_ip",
    "count_per_identifier"
  ]
}