clickup · Schema

Priority

Task priority level.

Properties

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

JSON Schema

clickup-priority-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Priority",
  "title": "Priority",
  "type": "object",
  "nullable": true,
  "description": "Task priority level.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The priority ID."
    },
    "priority": {
      "type": "string",
      "enum": [
        "urgent",
        "high",
        "normal",
        "low"
      ],
      "description": "The priority level name."
    },
    "color": {
      "type": "string",
      "description": "The hex color code of the priority level."
    },
    "orderindex": {
      "type": "string",
      "description": "The order index of the priority."
    }
  }
}