clickup · Schema

CreateFolderRequest

Request body for creating a new Folder.

Properties

Name Type Description
name string The name of the Folder.
View JSON Schema on GitHub

JSON Schema

clickup-createfolderrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateFolderRequest",
  "title": "CreateFolderRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "description": "Request body for creating a new Folder.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the Folder."
    }
  }
}