{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateEventStreamActionRequestContent", "title": "CreateEventStreamActionRequestContent", "type": "object", "additionalProperties": false, "required": [ "destination" ], "properties": { "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" } } }