{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SqlQueryResult", "title": "SqlQueryResult", "type": "object", "properties": { "columns": { "type": "array", "items": { "type": "string" }, "description": "Column names" }, "rows": { "type": "array", "items": { "type": "array", "items": { "type": "string" } }, "description": "Result rows" } } }