Auth0 · Schema

EventStreamCloudEventErrorDetail

Error details.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
code object
message string Human-readable error message.
offset string The cursor at the time of the error (when available). Can be used to resume from this position.
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamcloudeventerrordetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventErrorDetail",
  "title": "EventStreamCloudEventErrorDetail",
  "type": "object",
  "description": "Error details.",
  "additionalProperties": false,
  "required": [
    "code",
    "message"
  ],
  "properties": {
    "code": {
      "$ref": "#/components/schemas/EventStreamCloudEventErrorCodeEnum"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message."
    },
    "offset": {
      "type": "string",
      "description": "The cursor at the time of the error (when available). Can be used to resume from this position."
    }
  }
}