Apache Kylin · Schema

Project

A Kylin project

AnalyticsBig DataCubeOLAPOpen SourceSQL

Properties

Name Type Description
name string
description string
createTimeUTC integer Creation time as Unix timestamp
View JSON Schema on GitHub

JSON Schema

rest-api-project-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-project-schema.json",
  "title": "Project",
  "description": "A Kylin project",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "learn_kylin"
    },
    "description": {
      "type": "string",
      "example": "Learning project for Apache Kylin"
    },
    "createTimeUTC": {
      "type": "integer",
      "description": "Creation time as Unix timestamp",
      "example": 1718153645993
    }
  }
}