ToastCollection

A collection of related toast notifications

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
id string Collection identifier
displayName string Display name for the collection
launchArgs string Launch arguments when collection is activated
icon string Icon URI for the collection
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-toastcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ToastCollection",
  "title": "ToastCollection",
  "type": "object",
  "description": "A collection of related toast notifications",
  "properties": {
    "id": {
      "type": "string",
      "description": "Collection identifier"
    },
    "displayName": {
      "type": "string",
      "description": "Display name for the collection"
    },
    "launchArgs": {
      "type": "string",
      "description": "Launch arguments when collection is activated"
    },
    "icon": {
      "type": "string",
      "format": "uri",
      "description": "Icon URI for the collection"
    }
  }
}