clickup · Schema

Status

A task status object.

Properties

Name Type Description
id string The status ID.
status string The status name.
color string The hex color code of the status.
orderindex integer The order index of the status.
type string The status type.
View JSON Schema on GitHub

JSON Schema

clickup-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Status",
  "title": "Status",
  "type": "object",
  "description": "A task status object.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The status ID."
    },
    "status": {
      "type": "string",
      "description": "The status name."
    },
    "color": {
      "type": "string",
      "description": "The hex color code of the status."
    },
    "orderindex": {
      "type": "integer",
      "description": "The order index of the status."
    },
    "type": {
      "type": "string",
      "enum": [
        "open",
        "custom",
        "closed",
        "done"
      ],
      "description": "The status type."
    }
  }
}