nuance_BOOLEAN

Declaration of true or false.

Examples

Positive input such as “yes” or “that’s right” returns this response:

{
  "nuance_BOOLEAN": true
}

Negative input such as “no” or “not really” returns this response:

{
  "nuance_BOOLEAN": false
}

Schema

{
     "$schema": "http://json-schema.org/draft-04/schema#",
     "type": "object",
     "properties": {
         "nuance_BOOLEAN": {
             "type": "boolean"
         }
     },
     "additionalProperties": false
}