Alation · Schema

Table

A database table in the Alation catalog

Data CatalogData GovernanceData IntelligenceData LineageData QualityBusiness GlossaryMetadata ManagementAI

Properties

Name Type Description
id integer
name string
title string
description string
schema_id integer
ds_id integer
table_type string
url string
View JSON Schema on GitHub

JSON Schema

alation-alation-data-catalog-table-schema.json Raw ↑
{
  "$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"
    }
  }
}