Auth0 · Schema

EventStreamDeliveryAttempt

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
status object
timestamp string Timestamp of delivery attempt
error_message string Delivery error message, if applicable
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamdeliveryattempt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamDeliveryAttempt",
  "title": "EventStreamDeliveryAttempt",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "status",
    "timestamp"
  ],
  "properties": {
    "status": {
      "$ref": "#/components/schemas/EventStreamDeliveryStatusEnum"
    },
    "timestamp": {
      "type": "string",
      "description": "Timestamp of delivery attempt",
      "format": "date-time"
    },
    "error_message": {
      "type": "string",
      "description": "Delivery error message, if applicable"
    }
  }
}