Auth0 · Schema

SuspiciousIPThrottlingPreUserRegistrationStage

Configuration options that apply before every user registration attempt.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
max_attempts integer Total number of attempts allowed.
rate integer Interval of time, given in milliseconds, at which new attempts are granted.
View JSON Schema on GitHub

JSON Schema

auth0-suspiciousipthrottlingpreuserregistrationstage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SuspiciousIPThrottlingPreUserRegistrationStage",
  "title": "SuspiciousIPThrottlingPreUserRegistrationStage",
  "type": "object",
  "description": "Configuration options that apply before every user registration attempt.",
  "additionalProperties": false,
  "properties": {
    "max_attempts": {
      "type": "integer",
      "description": "Total number of attempts allowed.",
      "default": 50,
      "minimum": 1,
      "maximum": 72000
    },
    "rate": {
      "type": "integer",
      "description": "Interval of time, given in milliseconds, at which new attempts are granted.",
      "default": 1728000,
      "minimum": 1200,
      "maximum": 86400000
    }
  }
}