CockroachDB · Schema

ListClustersResponse

Paginated list of clusters in the organization.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
clusters array Array of cluster objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listclustersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListClustersResponse",
  "title": "ListClustersResponse",
  "type": "object",
  "description": "Paginated list of clusters in the organization.",
  "properties": {
    "clusters": {
      "type": "array",
      "description": "Array of cluster objects.",
      "items": {
        "$ref": "#/components/schemas/Cluster"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}