Auth0 · Schema
AttackProtectionUpdateCaptchaArkose
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| site_key | string | The site key for the Arkose captcha provider. |
| secret | string | The secret key for the Arkose captcha provider. |
| client_subdomain | string | The subdomain used for client requests to the Arkose captcha provider. |
| verify_subdomain | string | The subdomain used for server-side verification requests to the Arkose captcha provider. |
| fail_open | boolean | Whether the captcha should fail open. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AttackProtectionUpdateCaptchaArkose",
"title": "AttackProtectionUpdateCaptchaArkose",
"type": "object",
"additionalProperties": false,
"required": [
"site_key",
"secret"
],
"properties": {
"site_key": {
"type": "string",
"description": "The site key for the Arkose captcha provider.",
"maxLength": 100
},
"secret": {
"type": "string",
"description": "The secret key for the Arkose captcha provider.",
"maxLength": 100
},
"client_subdomain": {
"type": "string",
"description": "The subdomain used for client requests to the Arkose captcha provider.",
"maxLength": 100
},
"verify_subdomain": {
"type": "string",
"description": "The subdomain used for server-side verification requests to the Arkose captcha provider.",
"maxLength": 100
},
"fail_open": {
"type": "boolean",
"description": "Whether the captcha should fail open."
}
}
}