Auth0 · Schema

UserBlockIdentifier

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
identifier string Identifier (should be any of an `email`, `username`, or `phone_number`)
ip string IP Address
connection string Connection identifier
View JSON Schema on GitHub

JSON Schema

auth0-userblockidentifier-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserBlockIdentifier",
  "title": "UserBlockIdentifier",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "identifier": {
      "type": "string",
      "description": "Identifier (should be any of an `email`, `username`, or `phone_number`)",
      "default": "[email protected]"
    },
    "ip": {
      "type": "string",
      "description": "IP Address",
      "default": "10.0.0.1"
    },
    "connection": {
      "type": "string",
      "description": "Connection identifier"
    }
  }
}