{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HotRange", "title": "HotRange", "type": "object", "description": "A range identified as hot due to elevated query activity, including the range descriptor and per-second query throughput.", "properties": { "range_id": { "type": "integer", "format": "int64", "description": "Unique identifier of the hot range." }, "node_id": { "type": "integer", "description": "Node ID of the node reporting this hot range." }, "qps": { "type": "number", "format": "double", "description": "Queries per second observed on this range." }, "table_name": { "type": "string", "description": "Name of the table this range belongs to, if known." }, "db_name": { "type": "string", "description": "Name of the database this range belongs to, if known." }, "index_name": { "type": "string", "description": "Name of the index this range belongs to, if known." }, "schema_name": { "type": "string", "description": "Schema name for the table this range belongs to, if known." } } }