Apache Kylin · Schema

Table

A Kylin table

AnalyticsBig DataCubeOLAPOpen SourceSQL

Properties

Name Type Description
name string
columns array
cardinality object
exd object
View JSON Schema on GitHub

JSON Schema

rest-api-table-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-kylin/refs/heads/main/json-schema/rest-api-table-schema.json",
  "title": "Table",
  "description": "A Kylin table",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "KYLIN_SALES"
    },
    "columns": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "cardinality": {
      "type": "object"
    },
    "exd": {
      "type": "object"
    }
  }
}