{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/queue/v1/list-dependent-tasks-response.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "Response from a `listDependentTasks` request.\n",
  "properties": {
    "continuationToken": {
      "description": "Opaque `continuationToken` to be given as query-string option to get the\nnext set of dependent tasks.\nThis property is only present if another request is necessary to fetch all\nresults. In practice the next request with a `continuationToken` may not\nreturn additional results, but it can. Thus, you can only be sure to have\nall the results if you've called `listDependentTasks` with\n`continuationToken` until you get a result without a `continuationToken`.\n",
      "title": "Continuation Token",
      "type": "string"
    },
    "taskId": {
      "description": "Identifier for the task whose dependents are being listed.\n",
      "pattern": "^[A-Za-z0-9_-]{8}[Q-T][A-Za-z0-9_-][CGKOSWaeimquy26-][A-Za-z0-9_-]{10}[AQgw]$",
      "title": "Task Identifier",
      "type": "string"
    },
    "tasks": {
      "description": "List of tasks that have `taskId` in the `task.dependencies` property.\n",
      "items": {
        "$ref": "task-definition-and-status.json#"
      },
      "title": "Tasks that depend on `taskId`",
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "taskId",
    "tasks"
  ],
  "title": "List Dependent Tasks Response",
  "type": "object"
}