Joseph J. Schmitt e63769c379 Add release date support (#14)
Closes #11 

Adds a couple of new utterances so you can limit your movie results by the release date. You can now add a movie by saying:

> Add The Godfather released in 1972
> Add The Godfather from 1972
> Add The Godfather that came out in 1972
> Add The Godfather released in March 1972

If you've used previous versions of the Intent Schema and Sample Utterances, make sure to copy and paste the new ones in.
2016-10-29 22:40:43 -04:00

48 lines
764 B
JSON

{
"intents": [
{
"intent": "AddMovie",
"slots": [
{
"name": "movieName",
"type": "AMAZON.LITERAL"
}
]
},
{
"intent": "AddMovieDate",
"slots": [
{
"name": "movieName",
"type": "AMAZON.LITERAL"
},
{
"name": "releaseDate",
"type": "AMAZON.DATE"
}
]
},
{
"intent": "FindMovie",
"slots": [
{
"name": "movieName",
"type": "AMAZON.LITERAL"
}
]
},
{
"intent": "AMAZON.YesIntent"
},
{
"intent": "AMAZON.NoIntent"
},
{
"intent": "AMAZON.CancelIntent"
},
{
"intent": "AMAZON.HelpIntent"
}
]
}