App: {
"name": "",
"messages": {
"NO_INTENT_FOUND": "Sorry, the application didn't know what to do with that intent",
"NO_AUDIO_PLAYER_EVENT_HANDLER_FOUND": "Sorry, the application didn't know what to do with that AudioPlayer event",
"NO_LAUNCH_FUNCTION": "Try telling the application what to do instead of opening it",
"INVALID_REQUEST_TYPE": "Error: not a valid request",
"NO_SESSION": "This request doesn't support session attributes",
"GENERIC_ERROR": "Sorry, the application encountered an error",
"NO_DISPLAY_ELEMENT_SELECTED_FUNCTION": "Try telling the application how to handle display events. Make sure displayElementSelected is implemented."
},
"persistentSession": true,
"exhaustiveUtterances": false,
"error": null,
"dictionary": {},
"intents": {
"Weather": {
"name": "Weather",
"dialog": {},
"slots": {
"WHEN": "AMAZON.DATE"
},
"utterances": [
"what's the weather for {-|WHEN}",
"what I should expect on {-|WHEN}",
"tell me the weather",
"{-|WHEN}"
]
},
"AMAZON.CancelIntent": {
"name": "AMAZON.CancelIntent",
"dialog": {},
"slots": {},
"utterances": []
},
"AMAZON.StopIntent": {
"name": "AMAZON.StopIntent",
"dialog": {},
"slots": {},
"utterances": []
}
},
"customSlots": {},
"audioPlayerEventHandlers": {},
"playbackControllerEventHandlers": {},
"displayElementSelectedFunc": null,
"schemas": {}
}
Schema:
{
"intents": [
{
"intent": "Weather",
"slots": [
{
"name": "WHEN",
"type": "AMAZON.DATE"
}
]
},
{
"intent": "AMAZON.CancelIntent"
},
{
"intent": "AMAZON.StopIntent"
}
]
}
Utterances:
Weather what's the weather for {WHEN}
Weather what I should expect on {WHEN}
Weather tell me the weather
Weather {WHEN}