{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/queue/v1/list-artifacts-response.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "List of artifacts for a given `taskId` and `runId`.\n",
  "properties": {
    "artifacts": {
      "description": "List of artifacts for given `taskId` and `runId`.\n",
      "items": {
        "$ref": "./artifact-response.json#"
      },
      "title": "Artifact List",
      "type": "array",
      "uniqueItems": true
    },
    "continuationToken": {
      "description": "Opaque `continuationToken` to be given as query-string option to get the\nnext set of artifacts.\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 with `continuationToken` until you get a\nresult without a `continuationToken`.\n",
      "title": "Continuation Token",
      "type": "string"
    }
  },
  "required": [
    "artifacts"
  ],
  "title": "List Artifacts Response",
  "type": "object"
}