{ "$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-table-schema.json", "title": "Table", "description": "A database table in the Alation catalog", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "title": { "type": "string" }, "description": { "type": "string" }, "schema_id": { "type": "integer" }, "ds_id": { "type": "integer" }, "table_type": { "type": "string", "enum": [ "TABLE", "VIEW", "EXTERNAL" ] }, "url": { "type": "string", "format": "uri" } } }