Apache Kylin · JSON Structure

Rest Api Model Structure

A Kylin data model

Type: object Properties: 4
AnalyticsBig DataCubeOLAPOpen SourceSQL

Model is a JSON Structure definition published by Apache Kylin, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description factTable status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-kylin/refs/heads/main/json-structure/rest-api-model-structure.json",
  "name": "Model",
  "description": "A Kylin data model",
  "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"
    }
  }
}