CockroachDB · Schema

RangeResponse

Detailed information about a specific range from all replicas.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
range_id integer Unique identifier of the range.
responses_by_node_id object Map of node ID to the range information reported by that node's replica.
View JSON Schema on GitHub

JSON Schema

cockroachdb-rangeresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RangeResponse",
  "title": "RangeResponse",
  "type": "object",
  "description": "Detailed information about a specific range from all replicas.",
  "properties": {
    "range_id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier of the range."
    },
    "responses_by_node_id": {
      "type": "object",
      "description": "Map of node ID to the range information reported by that node's replica.",
      "additionalProperties": {
        "$ref": "#/components/schemas/RangeInfo"
      }
    }
  }
}