Workato · Schema

BatchPublishRequest

Request body for batch publishing messages.

AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

Properties

Name Type Description
payloads array Array of message payloads to publish. Each must conform to the topic's schema. Maximum 100 items.
View JSON Schema on GitHub

JSON Schema

workato-event-streams-batch-publish-request-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-batch-publish-request-schema.json",
  "title": "BatchPublishRequest",
  "description": "Request body for batch publishing messages.",
  "type": "object",
  "properties": {
    "payloads": {
      "type": "array",
      "description": "Array of message payloads to publish. Each must conform to the topic's schema. Maximum 100 items.",
      "maxItems": 100,
      "items": {
        "type": "object",
        "description": "A message payload conforming to the topic's schema.",
        "additionalProperties": true
      }
    }
  },
  "required": [
    "payloads"
  ]
}