Auth0 · Schema

ActionError

Error is a generic error with a human readable id which should be easily referenced in support tickets.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
msg string
url string
View JSON Schema on GitHub

JSON Schema

auth0-actionerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionError",
  "title": "ActionError",
  "type": "object",
  "description": "Error is a generic error with a human readable id which should be easily referenced in support tickets.",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "msg": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  }
}