Skip to content

Instantly share code, notes, and snippets.

@WaferMouse
Created May 19, 2017 16:55
Show Gist options
  • Save WaferMouse/929fd728f01568478429e5cb8f7db238 to your computer and use it in GitHub Desktop.
Save WaferMouse/929fd728f01568478429e5cb8f7db238 to your computer and use it in GitHub Desktop.
plexmusic non-US intentschema
{
"intents": [
{
"intent": "AMAZON.PauseIntent"
},
{
"intent": "AMAZON.ResumeIntent"
},
{
"intent": "AMAZON.NextIntent"
},
{
"intent": "AMAZON.StopIntent"
},
{
"intent": "AMAZON.PreviousIntent"
},
{
"intent": "AMAZON.ShuffleOnIntent"
},
{
"intent": "AMAZON.StartOverIntent"
},
{
"intent": "PlexPlayTrackIntent",
"slots": [{
"name": "track",
"type": "MUSICRECORDING"
}]
},
{
"intent": "PlexPlayTrackByArtistIntent",
"slots": [{
"name": "track",
"type": "MUSICRECORDING"
},{
"name": "artist",
"type": "MUSICGROUP"
}]
},
{
"intent": "PlexPlayAlbumIntent",
"slots": [{
"name": "album",
"type": "MUSICALBUM"
}]
},
{
"intent": "PlexPlayAlbumByArtistIntent",
"slots": [{
"name": "album",
"type": "MUSICALBUM"
},{
"name": "artist",
"type": "MUSICGROUP"
}]
},
{
"intent": "PlexPlayArtistIntent",
"slots": [{
"name": "artist",
"type": "MUSICGROUP"
}]
},
{
"intent": "PlexPlayPlaylistIntent",
"slots": [{
"name": "playlist_name",
"type": "MUSICPLAYLIST"
}]
},
{
"intent": "PlexQueueTrackIntent",
"slots": [{
"name": "track",
"type": "MUSICRECORDING"
}]
},
{
"intent": "PlexQueueTrackByArtistIntent",
"slots": [{
"name": "track",
"type": "MUSICRECORDING"
},{
"name": "artist",
"type": "MUSICGROUP"
}]
},
{
"intent": "PlexQueueAlbumIntent",
"slots": [{
"name": "album",
"type": "MUSICALBUM"
}]
},
{
"intent": "PlexQueueAlbumByArtistIntent",
"slots": [{
"name": "album",
"type": "MUSICALBUM"
},{
"name": "artist",
"type": "MUSICGROUP"
}]
},
{
"intent": "PlexQueueArtistIntent",
"slots": [{
"name": "artist",
"type": "MUSICGROUP"
}]
},
{
"intent": "PlexQueuePlaylistIntent",
"slots": [{
"name": "playlist_name",
"type": "MUSICPLAYLIST"
}]
},
{
"intent": "PlexWhatSongIntent"
},
{
"intent": "PlexStatusIntent"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment