Qlik Sense · Schema

SpaceCreate

Payload to create a new space.

AnalyticsBusiness IntelligenceCloudData IntegrationVisualization

Properties

Name Type Description
name string The name of the space.
type string The type of space to create.
description string The description of the space.
View JSON Schema on GitHub

JSON Schema

qlik-sense-spacecreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpaceCreate",
  "title": "SpaceCreate",
  "type": "object",
  "description": "Payload to create a new space.",
  "required": [
    "name",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the space."
    },
    "type": {
      "type": "string",
      "description": "The type of space to create.",
      "enum": [
        "shared",
        "managed",
        "data"
      ]
    },
    "description": {
      "type": "string",
      "description": "The description of the space."
    }
  }
}