Auth0 · Schema

BotDetectionIPAddressOrCidrBlock

IP address (IPv4 or IPv6) or CIDR block

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-botdetectionipaddressorcidrblock-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BotDetectionIPAddressOrCidrBlock",
  "title": "BotDetectionIPAddressOrCidrBlock",
  "type": "string",
  "description": "IP address (IPv4 or IPv6) or CIDR block",
  "oneOf": [
    {
      "$ref": "#/components/schemas/BotDetectionIPv4"
    },
    {
      "$ref": "#/components/schemas/BotDetectionIPv6"
    },
    {
      "$ref": "#/components/schemas/BotDetectionCidrBlock"
    },
    {
      "$ref": "#/components/schemas/BotDetectionIPv6CidrBlock"
    }
  ]
}