{ "$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" } } }