clickup · Schema

Team

A Workspace (team) object in ClickUp.

Properties

Name Type Description
id string The unique identifier of the Workspace.
name string The name of the Workspace.
color string The hex color code of the Workspace.
avatar string The avatar URL of the Workspace.
members array Members of the Workspace.
View JSON Schema on GitHub

JSON Schema

clickup-team-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Team",
  "title": "Team",
  "type": "object",
  "description": "A Workspace (team) object in ClickUp.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the Workspace."
    },
    "name": {
      "type": "string",
      "description": "The name of the Workspace."
    },
    "color": {
      "type": "string",
      "description": "The hex color code of the Workspace."
    },
    "avatar": {
      "type": "string",
      "nullable": true,
      "description": "The avatar URL of the Workspace."
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamMember"
      },
      "description": "Members of the Workspace."
    }
  }
}