Auth0 · Schema

FormWidgetRecaptchaConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
site_key string
secret_key string
View JSON Schema on GitHub

JSON Schema

auth0-formwidgetrecaptchaconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormWidgetRecaptchaConfig",
  "title": "FormWidgetRecaptchaConfig",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "site_key",
    "secret_key"
  ],
  "properties": {
    "site_key": {
      "type": "string",
      "minLength": 1
    },
    "secret_key": {
      "type": "string",
      "minLength": 1
    }
  }
}