nuance_GLOBAL

Generic commands for navigating a voice system.

Sample language

  • I need help
  • What did you say?
  • go back
  • cancel
  • log in

Examples

Responses for the above samples are shown below.

Example: I need help

{
     "nuance_GLOBAL": "help"
}

Example: What did you say?

{
     "nuance_GLOBAL": "repeat"
}

Example: go back

{
     "nuance_GLOBAL": "back"
}

Example: cancel

{
     "nuance_GLOBAL": "cancel"
}

Example: log in

{
     "nuance_GLOBAL": "login"
}

Schema

{
  "$schema": "http://json-schema.org/draft-04/schema#",
     "type": "object",
     "properties": {
         "nuance_GLOBAL": {
             "type": "string",
             "pattern": "[help|repeat|back|cancel|reset|goodbye|login]"
         }
     },
     "required": [
         "nuance_GLOBAL"
     ],
     "additionalProperties": false
}