Properties
| Name | Type | Description |
|---|---|---|
| message | string | Message to display in Cortana |
| contentTiles | array | Content tiles to display |
| appLaunchArgument | string | Argument passed when user taps to launch app |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VoiceCommandResponseRequest",
"title": "VoiceCommandResponseRequest",
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Message to display in Cortana"
},
"contentTiles": {
"type": "array",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"textLine1": {
"type": "string"
},
"textLine2": {
"type": "string"
},
"textLine3": {
"type": "string"
},
"imageUri": {
"type": "string",
"format": "uri"
}
}
},
"description": "Content tiles to display"
},
"appLaunchArgument": {
"type": "string",
"description": "Argument passed when user taps to launch app"
}
},
"required": [
"message"
]
}