VoiceCommandSet

A set of voice commands with their definitions

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
name string Command set name
language string Language code
commands array
phraseLists array
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-voicecommandset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VoiceCommandSet",
  "title": "VoiceCommandSet",
  "type": "object",
  "description": "A set of voice commands with their definitions",
  "properties": {
    "name": {
      "type": "string",
      "description": "Command set name"
    },
    "language": {
      "type": "string",
      "description": "Language code"
    },
    "commands": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VoiceCommand"
      }
    },
    "phraseLists": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PhraseList"
      }
    }
  }
}