{ "$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" } } } }