games.gamesgamesgamesgames.putGame
Schema Diff
+12 -5
1
1
{
2
2
"id": "games.gamesgamesgamesgames.putGame",
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
"name",
11
11
"summary"
12
12
],
13
13
"properties": {
14
+
"mode": {
15
+
"type": "array",
16
+
"items": {
17
+
"ref": "games.gamesgamesgamesgames.defs#mode",
18
+
"type": "ref"
19
+
}
20
+
},
14
21
"name": {
15
22
"type": "string"
16
23
},
17
-
"type": {
18
-
"ref": "games.gamesgamesgamesgames.defs#type",
19
-
"type": "ref",
20
-
"default": "games.gamesgamesgamesgames.type#game"
21
-
},
22
24
"summary": {
23
25
"type": "string"
26
+
},
27
+
"applicationType": {
28
+
"ref": "games.gamesgamesgamesgames.defs#applicationType",
29
+
"type": "ref",
30
+
"default": "games.gamesgamesgamesgames.applicationType#game"
24
31
}
25
32
}
26
33
},
27
34
"encoding": "application/json"
28
35
},
29
36
"output": {
30
37
"schema": {
31
38
"type": "object",
32
39
"required": [
33
40
"game"
34
41
],
35
42
"properties": {
36
43
"game": {
37
44
"ref": "games.gamesgamesgamesgames.defs#gameDetailView",
38
45
"type": "ref"
39
46
}
40
47
}
41
48
},
42
49
"encoding": "application/json"
43
50
},
44
51
"description": "Stores a game record in the user's repo."
45
52
}
46
53
},
47
54
"$type": "com.atproto.lexicon.schema",
48
55
"lexicon": 1
49
56
}