Apache RocketMQ · Schema

ReceiveResult

Result of receiving messages

Cloud NativeMessagingMessage QueuePub-SubStreamingApacheOpen Source

Properties

Name Type Description
messages array
View JSON Schema on GitHub

JSON Schema

apache-rocketmq-receive-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-rocketmq/refs/heads/main/json-schema/apache-rocketmq-receive-result-schema.json",
  "title": "ReceiveResult",
  "description": "Result of receiving messages",
  "type": "object",
  "properties": {
    "messages": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Message"
      }
    }
  }
}