Auth0 · Schema

CreateEventStreamRedeliveryResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
date_from string An RFC-3339 date-time for redelivery start, inclusive. Does not allow sub-second precision.
date_to string An RFC-3339 date-time for redelivery end, exclusive. Does not allow sub-second precision.
statuses array Filter by status
event_types array Filter by event type
View JSON Schema on GitHub

JSON Schema

auth0-createeventstreamredeliveryresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateEventStreamRedeliveryResponseContent",
  "title": "CreateEventStreamRedeliveryResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "date_from": {
      "type": "string",
      "description": "An RFC-3339 date-time for redelivery start, inclusive. Does not allow sub-second precision.",
      "maxLength": 20,
      "format": "date-time"
    },
    "date_to": {
      "type": "string",
      "description": "An RFC-3339 date-time for redelivery end, exclusive. Does not allow sub-second precision.",
      "maxLength": 20,
      "format": "date-time"
    },
    "statuses": {
      "type": "array",
      "description": "Filter by status",
      "items": {
        "$ref": "#/components/schemas/EventStreamDeliveryStatusEnum"
      }
    },
    "event_types": {
      "type": "array",
      "description": "Filter by event type",
      "items": {
        "$ref": "#/components/schemas/EventStreamEventTypeEnum"
      }
    }
  }
}