CockroachDB · Schema

ClusterNode

Represents an individual node within a CockroachDB cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
name string Node name or identifier.
region_name string Cloud region the node is deployed in.
status string Current operational status of the node.
View JSON Schema on GitHub

JSON Schema

cockroachdb-clusternode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterNode",
  "title": "ClusterNode",
  "type": "object",
  "description": "Represents an individual node within a CockroachDB cluster.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Node name or identifier."
    },
    "region_name": {
      "type": "string",
      "description": "Cloud region the node is deployed in."
    },
    "status": {
      "type": "string",
      "description": "Current operational status of the node."
    }
  }
}