CockroachDB · Schema

ListNodeRangesResponse

Range information for a specific node with pagination metadata.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
ranges array Array of range information objects for the node.
next integer Offset for retrieving the next page of results.
View JSON Schema on GitHub

JSON Schema

cockroachdb-listnoderangesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListNodeRangesResponse",
  "title": "ListNodeRangesResponse",
  "type": "object",
  "description": "Range information for a specific node with pagination metadata.",
  "properties": {
    "ranges": {
      "type": "array",
      "description": "Array of range information objects for the node.",
      "items": {
        "$ref": "#/components/schemas/RangeInfo"
      }
    },
    "next": {
      "type": "integer",
      "description": "Offset for retrieving the next page of results."
    }
  }
}