CockroachDB · Schema

ListClusterNodesResponse

Paginated list of nodes in a cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
nodes array Array of node objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listclusternodesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListClusterNodesResponse",
  "title": "ListClusterNodesResponse",
  "type": "object",
  "description": "Paginated list of nodes in a cluster.",
  "properties": {
    "nodes": {
      "type": "array",
      "description": "Array of node objects.",
      "items": {
        "$ref": "#/components/schemas/ClusterNode"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}