{ "$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: block, admin_notification.", "items": { "$ref": "#/components/schemas/SuspiciousIPThrottlingShieldsEnum" } }, "allowlist": { "$ref": "#/components/schemas/SuspiciousIPThrottlingAllowlist" }, "stage": { "$ref": "#/components/schemas/SuspiciousIPThrottlingStage" } } }