dev.cartridge.claimReview
Schema Diff
+0 -1
Compatibility Analysis
Backward Compatible
Backward compatible. 1 non-breaking change.
Non-Breaking Changes (1)
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.cartridge.claimReview:body.status", sort: "maxLength" }
Migration Guidance
Constraint Changes
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.cartridge.claimReview:body.status", sort: "maxLength" }
1
1
{
2
2
"id": "dev.cartridge.claimReview",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"claim",
11
11
"status",
12
12
"reviewedBy",
13
13
"createdAt"
14
14
],
15
15
"properties": {
16
16
"claim": {
17
17
"ref": "com.atproto.repo.strongRef",
18
18
"type": "ref"
19
19
},
20
20
"reason": {
21
21
"type": "string",
22
22
"maxGraphemes": 3000
23
23
},
24
24
"status": {
25
25
"type": "string",
26
-
"maxLength": 64,
27
26
"knownValues": [
28
27
"approved",
29
28
"denied"
30
29
]
31
30
},
32
31
"createdAt": {
33
32
"type": "string",
34
33
"format": "datetime"
35
34
},
36
35
"reviewedBy": {
37
36
"type": "string",
38
37
"format": "did"
39
38
},
40
39
"approvedGames": {
41
40
"type": "array",
42
41
"items": {
43
42
"type": "string",
44
43
"format": "at-uri"
45
44
}
46
45
}
47
46
}
48
47
},
49
48
"description": "A review of a claim for ownership of game or organization records."
50
49
}
51
50
},
52
51
"$type": "com.atproto.lexicon.schema",
53
52
"lexicon": 1
54
53
}