forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1{
2 "lexicon": 1,
3 "id": "app.rocksky.like.likeSong",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Like a song",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "properties": {
13 "uri": {
14 "type": "string",
15 "description": "The unique identifier of the song to like",
16 "format": "at-uri"
17 }
18 }
19 }
20 },
21 "output": {
22 "encoding": "application/json",
23 "schema": {
24 "type": "ref",
25 "ref": "app.rocksky.song.defs#songViewDetailed"
26 }
27 }
28 }
29 }
30}