clickup · Schema

CreateSpaceRequest

Request body for creating a new Space.

Properties

Name Type Description
name string The name of the Space.
multiple_assignees boolean Whether to enable multiple assignees.
features object Features to enable for the Space.
View JSON Schema on GitHub

JSON Schema

clickup-createspacerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateSpaceRequest",
  "title": "CreateSpaceRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "description": "Request body for creating a new Space.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the Space."
    },
    "multiple_assignees": {
      "type": "boolean",
      "description": "Whether to enable multiple assignees."
    },
    "features": {
      "type": "object",
      "description": "Features to enable for the Space.",
      "properties": {
        "due_dates": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            },
            "start_date": {
              "type": "boolean"
            },
            "remap_due_dates": {
              "type": "boolean"
            },
            "remap_closed_due_date": {
              "type": "boolean"
            }
          }
        },
        "time_tracking": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            }
          }
        },
        "tags": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            }
          }
        },
        "time_estimates": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            }
          }
        },
        "checklists": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            }
          }
        },
        "custom_fields": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            }
          }
        }
      }
    }
  }
}