{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DataSliceResponse", "title": "DataSliceResponse", "type": "object", "properties": { "rows": { "type": "array", "items": { "type": "object", "properties": { "headers": { "type": "array", "items": { "type": "string" } }, "data": { "type": "array", "items": { "type": "number" } } } }, "description": "Data rows with headers and values" }, "status": { "type": "integer" } } }