Skip to content

Instantly share code, notes, and snippets.

@digiltd
Created January 26, 2017 20:20
Show Gist options
  • Save digiltd/afd67485edc5baef037c58e021ffa48f to your computer and use it in GitHub Desktop.
Save digiltd/afd67485edc5baef037c58e021ffa48f to your computer and use it in GitHub Desktop.
GeeMusic using Custom Slots
{
"intents": [
{
"intent": "AMAZON.PauseIntent"
},
{
"intent": "AMAZON.ResumeIntent"
},
{
"intent": "GeeMusicPlayArtistIntent",
"slots": [
{"name":"artist_name", "type":"MUSICGROUP"}
]
},
{
"intent": "GeeMusicPlayAlbumIntent",
"slots": [
{"name":"album_name", "type":"MUSICALBUM"},
{"name":"artist_name", "type":"MUSICGROUP"}
]
},
{
"intent": "GeeMusicPlaySongIntent",
"slots": [
{"name":"song_name", "type":"MUSICRECORDING"},
{"name":"artist_name", "type":"MUSICGROUP"}
]
},
{
"intent": "GeeMusicPlayArtistRadioIntent",
"slots": [
{"name":"artist_name", "type":"MUSICGROUP"}
]
},
{
"intent": "GeeMusicPlayPlaylistIntent",
"slots": [
{"name":"playlist_name", "type":"MUSICPLAYLIST"}
]
},
{
"intent": "GeeMusicQueueSongIntent",
"slots": [
{"name":"song_name", "type":"MUSICRECORDING"},
{"name":"artist_name", "type":"MUSICGROUP"}
]
},
{
"intent": "GeeMusicPlayIFLRadioIntent"
},
{
"intent": "GeeMusicPlayLibraryIntent"
},
{
"intent": "GeeMusicCurrentlyPlayingIntent"
},
{
"intent": "GeeMusicThumbsUpIntent"
},
{
"intent": "GeeMusicThumbsDownIntent"
},
{
"intent": "AMAZON.ShuffleOnIntent"
},
{
"intent": "AMAZON.ShuffleOffIntent"
},
{
"intent": "AMAZON.HelpIntent"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment