PhraseList

A dynamic phrase list

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
name string Phrase list name
items array Current phrases in the list
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-phraselist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PhraseList",
  "title": "PhraseList",
  "type": "object",
  "description": "A dynamic phrase list",
  "properties": {
    "name": {
      "type": "string",
      "description": "Phrase list name"
    },
    "items": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Current phrases in the list"
    }
  }
}