BackgroundTask

A registered background task

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
id string Task registration ID
name string Task name
triggerType string Type of trigger
isActive boolean Whether the task is currently active
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-backgroundtask-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackgroundTask",
  "title": "BackgroundTask",
  "type": "object",
  "description": "A registered background task",
  "properties": {
    "id": {
      "type": "string",
      "description": "Task registration ID"
    },
    "name": {
      "type": "string",
      "description": "Task name"
    },
    "triggerType": {
      "type": "string",
      "description": "Type of trigger"
    },
    "isActive": {
      "type": "boolean",
      "description": "Whether the task is currently active"
    }
  },
  "required": [
    "id",
    "name"
  ]
}