Apache Kafka · Schema

Cluster

Cluster schema from Apache kafka

Distributed SystemsEvent StreamingMessagingOpen SourcePub-Sub

Properties

Name Type Description
kind string
metadata object
cluster_id string
controller object
brokers object
topics object
View JSON Schema on GitHub

JSON Schema

kafka-rest-proxy-cluster-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-kafka/refs/heads/main/json-schema/kafka-rest-proxy-cluster-schema.json",
  "title": "Cluster",
  "description": "Cluster schema from Apache kafka",
  "type": "object",
  "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"
        }
      }
    }
  }
}