dev.tsunagite.createSong
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "dev.tsunagite.createSong",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"id",
11
11
"song"
12
12
],
13
13
"properties": {
14
14
"id": {
15
15
"type": "string",
16
16
"format": "record-key",
17
17
"description": "The ID of this song. Should only include [a-zA-Z0-9-]."
18
18
},
19
19
"song": {
20
20
"ref": "dev.tsunagite.song",
21
21
"type": "ref"
22
22
}
23
23
}
24
24
},
25
25
"encoding": "text/json"
26
26
},
27
27
"output": {
28
28
"schema": {
29
29
"type": "object",
30
30
"properties": {
31
31
"uri": {
32
-
"tye": "string",
32
+
"type": "string",
33
33
"format": "at-uri",
34
34
"description": "The URI pointing to the song's newly-created record."
35
35
}
36
36
}
37
37
},
38
38
"encoding": "text/json"
39
39
},
40
40
"description": "Create a record for a song in a game hosting leaderboards via Tsunagite. If the song already exists, update its data."
41
41
}
42
42
},
43
43
"$type": "com.atproto.lexicon.schema",
44
44
"lexicon": 1
45
45
}