TileNotificationRequest

Request to update a tile notification

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
template string Tile template type
texts array Text content for the tile
images array Image content for the tile
tag string Tag for the notification
expirationTime string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-tilenotificationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TileNotificationRequest",
  "title": "TileNotificationRequest",
  "type": "object",
  "description": "Request to update a tile notification",
  "properties": {
    "template": {
      "type": "string",
      "description": "Tile template type",
      "enum": [
        "TileSmall",
        "TileMedium",
        "TileWide",
        "TileLarge"
      ]
    },
    "texts": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Text content for the tile"
    },
    "images": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "src": {
            "type": "string",
            "format": "uri"
          },
          "alt": {
            "type": "string"
          }
        }
      },
      "description": "Image content for the tile"
    },
    "tag": {
      "type": "string",
      "description": "Tag for the notification"
    },
    "expirationTime": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "template"
  ]
}