Confirmed users
209
edits
Line 237: | Line 237: | ||
While handling it, music app will receive a SearchAction through IAC. The message may look like: | While handling it, music app will receive a SearchAction through IAC if Vaani app wants to search artist. The message may look like: | ||
{ | { | ||
"@context": "http://schema.org", | "@context": "http://schema.org", | ||
"@type": "SearchAction" | "@type": "SearchAction" | ||
"object": | "object": "MusicGroup", | ||
} | } | ||
And | And music app may send a message like below back: | ||
{ | { | ||
"@context": "http://schema.org", | "@context": "http://schema.org", | ||
"@type": " | "@type": "SearchAction" | ||
actionStatus: CompletedActionStatus | FailedActionStatus | "actionStatus": CompletedActionStatus | FailedActionStatus | ||
"result": { | |||
@type: "MusicGroup | @type: "MusicGroup", | ||
name: "Group | name: "Group name", | ||
} | } | ||
} | } |