Created
January 26, 2017 20:20
-
-
Save digiltd/afd67485edc5baef037c58e021ffa48f to your computer and use it in GitHub Desktop.
GeeMusic using Custom Slots
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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