dev.cartridge.reviewClaim
Schema Diff
+1 -0
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 0 non-breaking changes.
Breaking Changes (1)
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.reviewClaim:input.status", sort: "maxLength", value: "64" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.reviewClaim:input.status", sort: "maxLength", value: "64" }
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
+
"maxLength": 64,
24
25
"knownValues": [
25
26
"approved",
26
27
"denied"
27
28
]
28
29
},
29
30
"approvedGames": {
30
31
"type": "array",
31
32
"items": {
32
33
"type": "string",
33
34
"format": "at-uri"
34
35
}
35
36
}
36
37
}
37
38
},
38
39
"encoding": "application/json"
39
40
},
40
41
"output": {
41
42
"schema": {
42
43
"type": "object",
43
44
"required": [
44
45
"uri"
45
46
],
46
47
"properties": {
47
48
"uri": {
48
49
"type": "string",
49
50
"format": "at-uri"
50
51
}
51
52
}
52
53
},
53
54
"encoding": "application/json"
54
55
},
55
56
"description": "Submit a review decision for an ownership claim."
56
57
}
57
58
},
58
59
"$type": "com.atproto.lexicon.schema",
59
60
"lexicon": 1
60
61
}