Auth0 · Schema
GetBotDetectionSettingsResponseContent
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| bot_detection_level | object | |
| challenge_password_policy | object | |
| challenge_passwordless_policy | object | |
| challenge_password_reset_policy | object | |
| allowlist | object | |
| monitoring_mode_enabled | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetBotDetectionSettingsResponseContent",
"title": "GetBotDetectionSettingsResponseContent",
"type": "object",
"additionalProperties": false,
"required": [
"bot_detection_level",
"challenge_password_policy",
"challenge_passwordless_policy",
"challenge_password_reset_policy",
"allowlist",
"monitoring_mode_enabled"
],
"properties": {
"bot_detection_level": {
"$ref": "#/components/schemas/BotDetectionLevelEnum"
},
"challenge_password_policy": {
"$ref": "#/components/schemas/BotDetectionChallengePolicyPasswordFlowEnum"
},
"challenge_passwordless_policy": {
"$ref": "#/components/schemas/BotDetectionChallengePolicyPasswordlessFlowEnum"
},
"challenge_password_reset_policy": {
"$ref": "#/components/schemas/BotDetectionChallengePolicyPasswordResetFlowEnum"
},
"allowlist": {
"$ref": "#/components/schemas/BotDetectionAllowlist"
},
"monitoring_mode_enabled": {
"$ref": "#/components/schemas/BotDetectionMonitoringModeEnabled"
}
}
}