{ "type": "object", "description": "A column definition in a HubDB table.", "name": "HubDBColumn", "properties": { "id": { "type": "string", "description": "The unique identifier for the column." }, "name": { "type": "string", "description": "The machine-readable name of the column." }, "label": { "type": "string", "description": "The human-readable label for the column." }, "type": { "type": "string", "description": "The data type of the column.", "enum": [ "TEXT", "NUMBER", "URL", "IMAGE", "SELECT", "MULTISELECT", "BOOLEAN", "LOCATION", "DATE", "DATETIME", "CURRENCY", "RICHTEXT", "FOREIGN_ID" ] }, "options": { "type": "array", "description": "Available options for SELECT and MULTISELECT columns.", "items": { "type": "object" } } }, "$schema": "https://json-structure.org/draft/2020-12/schema" }