BackgroundDownloadRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
uri string Source URI
destinationFile string Destination file path
costPolicy string
priority string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-backgrounddownloadrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackgroundDownloadRequest",
  "title": "BackgroundDownloadRequest",
  "type": "object",
  "properties": {
    "uri": {
      "type": "string",
      "format": "uri",
      "description": "Source URI"
    },
    "destinationFile": {
      "type": "string",
      "description": "Destination file path"
    },
    "costPolicy": {
      "type": "string",
      "enum": [
        "Default",
        "UnrestrictedOnly",
        "Always"
      ],
      "default": "Default"
    },
    "priority": {
      "type": "string",
      "enum": [
        "Default",
        "High",
        "Low"
      ],
      "default": "Default"
    }
  },
  "required": [
    "uri",
    "destinationFile"
  ]
}