Apache Kylin · Schema

Model

A Kylin data model

AnalyticsBig DataCubeOLAPOpen SourceSQL

Properties

Name Type Description
name string
description string
factTable string
status string
View JSON Schema on GitHub

JSON Schema

rest-api-model-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-model-schema.json",
  "title": "Model",
  "description": "A Kylin data model",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "kylin_sales_model"
    },
    "description": {
      "type": "string",
      "example": "Sales data model"
    },
    "factTable": {
      "type": "string",
      "example": "KYLIN_SALES"
    },
    "status": {
      "type": "string",
      "example": "ONLINE"
    }
  }
}