Auth0 · Schema

AttackProtectionUpdateCaptchaFriendlyCaptcha

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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