Auth0 · Schema

UpdateSuspiciousIPThrottlingSettingsRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
enabled boolean Whether or not suspicious IP throttling attack protections are active.
shields array Action to take when a suspicious IP throttling threshold is violated. Possible values: block, admin_notification.
allowlist object
stage object
View JSON Schema on GitHub

JSON Schema

auth0-updatesuspiciousipthrottlingsettingsrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateSuspiciousIPThrottlingSettingsRequestContent",
  "title": "UpdateSuspiciousIPThrottlingSettingsRequestContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether or not suspicious IP throttling attack protections are active."
    },
    "shields": {
      "type": "array",
      "description": "Action to take when a suspicious IP throttling threshold is violated.\n          Possible values: <code>block</code>, <code>admin_notification</code>.",
      "items": {
        "$ref": "#/components/schemas/SuspiciousIPThrottlingShieldsEnum"
      }
    },
    "allowlist": {
      "$ref": "#/components/schemas/SuspiciousIPThrottlingAllowlist"
    },
    "stage": {
      "$ref": "#/components/schemas/SuspiciousIPThrottlingStage"
    }
  }
}