{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/alation/refs/heads/main/json-schema/alation-alation-data-catalog-column-schema.json", "title": "Column", "description": "A table column in the Alation catalog", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "title": { "type": "string" }, "description": { "type": "string" }, "data_type": { "type": "string" }, "table_id": { "type": "integer" }, "ds_id": { "type": "integer" }, "is_nullable": { "type": "boolean" }, "is_primary_key": { "type": "boolean" } } }