{ "$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." } } }