Auth0 · Schema

AttackProtectionUpdateCaptchaHcaptcha

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
site_key string The site key for the hCaptcha provider.
secret string The secret key for the hCaptcha provider.
View JSON Schema on GitHub

JSON Schema

auth0-attackprotectionupdatecaptchahcaptcha-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttackProtectionUpdateCaptchaHcaptcha",
  "title": "AttackProtectionUpdateCaptchaHcaptcha",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "site_key",
    "secret"
  ],
  "properties": {
    "site_key": {
      "type": "string",
      "description": "The site key for the hCaptcha provider.",
      "maxLength": 100
    },
    "secret": {
      "type": "string",
      "description": "The secret key for the hCaptcha provider.",
      "maxLength": 100
    }
  }
}