Apache RocketMQ · JSON Structure

Apache Rocketmq Ack Request Structure

Request to acknowledge a message

Type: object Properties: 3 Required: 3
Cloud NativeMessagingMessage QueuePub-SubStreamingApacheOpen Source

AckRequest is a JSON Structure definition published by Apache RocketMQ, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

receiptHandle topic consumerGroup

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-rocketmq/refs/heads/main/json-structure/apache-rocketmq-ack-request-structure.json",
  "description": "Request to acknowledge a message",
  "type": "object",
  "properties": {
    "receiptHandle": {
      "type": "string",
      "description": "Receipt handle from receive response"
    },
    "topic": {
      "type": "string",
      "description": "Topic name"
    },
    "consumerGroup": {
      "type": "string",
      "description": "Consumer group"
    }
  },
  "required": [
    "receiptHandle",
    "topic",
    "consumerGroup"
  ],
  "name": "AckRequest"
}