Apache Kafka · JSON Structure

Kafka Rest Proxy Cluster Structure

Cluster schema from Apache kafka

Type: object Properties: 6
Distributed SystemsEvent StreamingMessagingOpen SourcePub-Sub

Cluster is a JSON Structure definition published by Apache Kafka, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

kind metadata cluster_id controller brokers topics

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

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-kafka/refs/heads/main/json-structure/kafka-rest-proxy-cluster-structure.json",
  "name": "Cluster",
  "description": "Cluster schema from Apache kafka",
  "properties": {
    "kind": {
      "type": "string"
    },
    "metadata": {
      "type": "object",
      "properties": {
        "self": {
          "type": "string"
        },
        "resource_name": {
          "type": "string"
        }
      }
    },
    "cluster_id": {
      "type": "string"
    },
    "controller": {
      "type": "object",
      "properties": {
        "related": {
          "type": "string"
        }
      }
    },
    "brokers": {
      "type": "object",
      "properties": {
        "related": {
          "type": "string"
        }
      }
    },
    "topics": {
      "type": "object",
      "properties": {
        "related": {
          "type": "string"
        }
      }
    }
  }
}