{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/object/v1/download-method-simple.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "definitions": {
    "request": {
      "const": true,
      "type": "boolean"
    },
    "response": {
      "additionalProperties": false,
      "description": "A simple download returns a URL to which the caller should make a GET request.\nSee [Simple Downloads](https://docs.taskcluster.net/docs/docs/reference/platform/object/simple-downloads) for details.",
      "properties": {
        "method": {
          "const": "simple",
          "type": "string"
        },
        "url": {
          "format": "uri",
          "type": "string"
        }
      },
      "required": [
        "method",
        "url"
      ],
      "title": "simple Download Response",
      "type": "object"
    }
  },
  "title": "simple Download Method"
}