Workato · Schema

ConsumeResponse

A batch of messages consumed from a topic.

AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

Properties

Name Type Description
messages array List of messages retrieved from the topic.
View JSON Schema on GitHub

JSON Schema

workato-event-streams-consume-response-schema.json Raw ↑
{
  "$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."
    }
  }
}