Apache Kylin · Schema

ProjectRequest

Request to create a project

AnalyticsBig DataCubeOLAPOpen SourceSQL

Properties

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

JSON Schema

rest-api-project-request-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-request-schema.json",
  "title": "ProjectRequest",
  "description": "Request to create a project",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "my_project"
    },
    "description": {
      "type": "string",
      "example": "My Kylin project"
    }
  },
  "required": [
    "name"
  ]
}