Apache Kylin · JSON Structure

Rest Api Project Request Structure

Request to create a project

Type: object Properties: 2 Required: 1
AnalyticsBig DataCubeOLAPOpen SourceSQL

ProjectRequest is a JSON Structure definition published by Apache Kylin, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description

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