Auth0 · Schema

EventStreamWebhookResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string Unique identifier for the event stream.
name string Name of the event stream.
subscriptions array List of event types subscribed to in this stream.
destination object
status object
created_at string Timestamp when the event stream was created.
updated_at string Timestamp when the event stream was last updated.
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamwebhookresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamWebhookResponseContent",
  "title": "EventStreamWebhookResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the event stream.",
      "minLength": 26,
      "maxLength": 26,
      "format": "event-stream-id"
    },
    "name": {
      "type": "string",
      "description": "Name of the event stream.",
      "minLength": 1,
      "maxLength": 128
    },
    "subscriptions": {
      "type": "array",
      "description": "List of event types subscribed to in this stream.",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/EventStreamSubscription"
      }
    },
    "destination": {
      "$ref": "#/components/schemas/EventStreamWebhookDestination"
    },
    "status": {
      "$ref": "#/components/schemas/EventStreamStatusEnum"
    },
    "created_at": {
      "type": "string",
      "description": "Timestamp when the event stream was created.",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "description": "Timestamp when the event stream was last updated.",
      "format": "date-time"
    }
  }
}