Skip to content

Instantly share code, notes, and snippets.

@jamesbulpin
Created November 25, 2018 19:19
Show Gist options
  • Save jamesbulpin/fe3bb6803ddb06cc14dc97188b368e45 to your computer and use it in GitHub Desktop.
Save jamesbulpin/fe3bb6803ddb06cc14dc97188b368e45 to your computer and use it in GitHub Desktop.
Alexa skill definition for Cambridge bin collection query
{
"interactionModel": {
"languageModel": {
"invocationName": "my house",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "BinDateIntent",
"slots": [
{
"name": "BinColor",
"type": "AMAZON.Color"
}
],
"samples": [
"when is {BinColor} bin day",
"when is the {BinColor} collection day",
"when will the {BinColor} bin be collected",
"when is the next {BinColor} bin collection"
]
}
],
"types": []
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment