{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateEventStreamTestEventRequestContent", "title": "CreateEventStreamTestEventRequestContent", "type": "object", "description": "The payload for sending a test event to an event stream.", "additionalProperties": false, "required": [ "event_type" ], "properties": { "event_type": { "$ref": "#/components/schemas/EventStreamTestEventTypeEnum" }, "data": { "$ref": "#/components/schemas/TestEventDataContent" } } }