Apache RocketMQ · Schema

AckRequest

Request to acknowledge a message

Cloud NativeMessagingMessage QueuePub-SubStreamingApacheOpen Source

Properties

Name Type Description
receiptHandle string Receipt handle from receive response
topic string Topic name
consumerGroup string Consumer group
View JSON Schema on GitHub

JSON Schema

apache-rocketmq-ack-request-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-ack-request-schema.json",
  "title": "AckRequest",
  "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"
  ]
}