Apache Pulsar · Schema

ClusterData

ClusterData schema from Apache Pulsar

Cloud NativeMessagingMulti-TenantPub-SubStreamingApacheOpen Source

Properties

Name Type Description
serviceUrl string
serviceUrlTls string
brokerServiceUrl string
brokerServiceUrlTls string
peerClusterNames array
View JSON Schema on GitHub

JSON Schema

apache-pulsar-cluster-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-pulsar/refs/heads/main/json-schema/apache-pulsar-cluster-data-schema.json",
  "title": "ClusterData",
  "description": "ClusterData schema from Apache Pulsar",
  "type": "object",
  "properties": {
    "serviceUrl": {
      "type": "string"
    },
    "serviceUrlTls": {
      "type": "string"
    },
    "brokerServiceUrl": {
      "type": "string"
    },
    "brokerServiceUrlTls": {
      "type": "string"
    },
    "peerClusterNames": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}