Auth0 · Schema

ListUserBlocksResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
blocked_for array Array of identifier + IP address pairs. IP address is optional, and may be omitted in certain circumstances (such as Account Lockout mode).
View JSON Schema on GitHub

JSON Schema

auth0-listuserblocksresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListUserBlocksResponseContent",
  "title": "ListUserBlocksResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "blocked_for": {
      "type": "array",
      "description": "Array of identifier + IP address pairs.  IP address is optional, and may be omitted in certain circumstances (such as Account Lockout mode).",
      "items": {
        "$ref": "#/components/schemas/UserBlockIdentifier"
      }
    }
  }
}