Apache RocketMQ · Schema

TopicList

List of RocketMQ topics

Cloud NativeMessagingMessage QueuePub-SubStreamingApacheOpen Source

Properties

Name Type Description
topics array
total integer
View JSON Schema on GitHub

JSON Schema

apache-rocketmq-topic-list-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-topic-list-schema.json",
  "title": "TopicList",
  "description": "List of RocketMQ topics",
  "type": "object",
  "properties": {
    "topics": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Topic"
      }
    },
    "total": {
      "type": "integer"
    }
  }
}