A batch of messages consumed from a topic.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/workato/refs/heads/main/json-schema/workato-event-streams-consume-response-schema.json", "title": "ConsumeResponse", "description": "A batch of messages consumed from a topic.", "type": "object", "properties": { "messages": { "type": "array", "items": { "$ref": "#/components/schemas/Message" }, "description": "List of messages retrieved from the topic." } } }