{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/queue/v1/change-task-priority-request.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "Payload for task and task-group reprioritization endpoints.\n",
  "properties": {
    "newPriority": {
      "description": "New priority to apply. Claimed runs keep their current run priority until\nthey are retried.\n",
      "enum": [
        "highest",
        "very-high",
        "high",
        "medium",
        "low",
        "very-low",
        "lowest"
      ],
      "type": "string"
    }
  },
  "required": [
    "newPriority"
  ],
  "title": "Change Task Priority Request",
  "type": "object"
}