{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BoardQuery", "title": "BoardQuery", "type": "object", "properties": { "query_id": { "type": "string", "description": "The ID of the query specification." }, "dataset": { "type": "string", "description": "The dataset slug to run the query against." }, "query_annotation_id": { "type": "string", "description": "The ID of an associated query annotation." }, "caption": { "type": "string", "description": "A display caption for the query on the board." }, "query_style": { "type": "string", "description": "The visualization style for the query.", "enum": [ "graph", "table", "combo" ] }, "graph_settings": { "type": "object", "description": "Settings for graph rendering." } } }