{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/queue/v1/get-artifact-response.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "Response to the `getArtifact` method.  This method returns a simple URL from\nwhich the artifact data can be read.  Not that this response is provided as\nthe body of an HTTP 303 response, so clients which automatically follow\nredirects may not see this content.\n",
  "properties": {
    "storageType": {
      "description": "Artifact storage type.  Note that this is also available in the\n`x-taskcluster-artifact-storage-type` header.\n",
      "type": "string"
    },
    "url": {
      "description": "URL from which to download the artifact\n",
      "format": "uri",
      "type": "string"
    }
  },
  "required": [
    "storageType",
    "url"
  ],
  "title": "Get Artifact Response",
  "type": "object"
}