ScheduledToastNotification

A scheduled toast notification

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
id string Unique identifier
content object
deliveryTime string
snoozeInterval string
maximumSnoozeCount integer
tag string
group string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-scheduledtoastnotification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScheduledToastNotification",
  "title": "ScheduledToastNotification",
  "type": "object",
  "description": "A scheduled toast notification",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier"
    },
    "content": {
      "$ref": "#/components/schemas/ToastContent"
    },
    "deliveryTime": {
      "type": "string",
      "format": "date-time"
    },
    "snoozeInterval": {
      "type": "string"
    },
    "maximumSnoozeCount": {
      "type": "integer"
    },
    "tag": {
      "type": "string"
    },
    "group": {
      "type": "string"
    }
  }
}