{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ColumnCreateRequest", "title": "ColumnCreateRequest", "type": "object", "required": [ "key_name" ], "properties": { "key_name": { "type": "string", "description": "The name for the new column." }, "type": { "type": "string", "description": "The data type for the column.", "enum": [ "string", "float", "integer", "boolean" ] }, "description": { "type": "string", "description": "An optional description for the column." }, "hidden": { "type": "boolean", "description": "If true, hides the column from autocomplete and raw data field lists." } } }