dev.cartridge.reviewClaim
Schema Diff
+0 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "dev.cartridge.reviewClaim",
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
"claim",
11
11
"status"
12
12
],
13
13
"properties": {
14
14
"claim": {
15
15
"ref": "com.atproto.repo.strongRef",
16
16
"type": "ref"
17
17
},
18
18
"reason": {
19
19
"type": "string",
20
20
"maxGraphemes": 3000
21
21
},
22
22
"status": {
23
23
"type": "string",
24
24
"maxLength": 64,
25
25
"knownValues": [
26
26
"approved",
27
27
"denied"
28
28
]
29
29
},
30
30
"approvedGames": {
31
31
"type": "array",
32
32
"items": {
33
33
"type": "string",
34
34
"format": "at-uri"
35
35
}
36
36
}
37
37
}
38
38
},
39
39
"encoding": "application/json"
40
40
},
41
41
"output": {
42
42
"schema": {
43
43
"type": "object",
44
44
"required": [
45
45
"uri"
46
46
],
47
47
"properties": {
48
48
"uri": {
49
49
"type": "string",
50
50
"format": "at-uri"
51
51
}
52
52
}
53
53
},
54
54
"encoding": "application/json"
55
55
},
56
56
"description": "Submit a review decision for an ownership claim."
57
57
}
58
58
},
59
59
"$type": "com.atproto.lexicon.schema",
60
60
"lexicon": 1
61
61
}