{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-excel/refs/heads/main/json-schema/excel-graph-api-table-schema.json", "title": "Table", "description": "Represents an Excel table.", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the table." }, "name": { "type": "string", "description": "The name of the table." }, "showHeaders": { "type": "boolean", "description": "Whether the header row is visible." }, "showTotals": { "type": "boolean", "description": "Whether the total row is visible." }, "style": { "type": "string", "description": "Table style name." } } }