Auth0 · Schema

CreateEventStreamTestEventResponseContent

Metadata about a specific attempt to deliver an event

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string Unique identifier for the delivery
event_stream_id string Unique identifier for the event stream.
status object
event_type object
attempts array Results of delivery attempts
event object
View JSON Schema on GitHub

JSON Schema

auth0-createeventstreamtesteventresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateEventStreamTestEventResponseContent",
  "title": "CreateEventStreamTestEventResponseContent",
  "type": "object",
  "description": "Metadata about a specific attempt to deliver an event",
  "additionalProperties": false,
  "required": [
    "id",
    "event_stream_id",
    "status",
    "event_type",
    "attempts"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the delivery"
    },
    "event_stream_id": {
      "type": "string",
      "description": "Unique identifier for the event stream.",
      "minLength": 26,
      "maxLength": 26,
      "format": "event-stream-id"
    },
    "status": {
      "$ref": "#/components/schemas/EventStreamDeliveryStatusEnum"
    },
    "event_type": {
      "$ref": "#/components/schemas/EventStreamDeliveryEventTypeEnum"
    },
    "attempts": {
      "type": "array",
      "description": "Results of delivery attempts",
      "items": {
        "$ref": "#/components/schemas/EventStreamDeliveryAttempt"
      }
    },
    "event": {
      "$ref": "#/components/schemas/EventStreamCloudEvent"
    }
  }
}