Auth0 · Schema
EventStreamActionResponseContent
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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventStreamActionResponseContent",
"title": "EventStreamActionResponseContent",
"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/EventStreamActionDestination"
},
"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"
}
}
}