dev.cartridge.claimReview
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.claimReview:body.status", sort: "maxLength", value: "64" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.claimReview:body.status", sort: "maxLength", value: "64" }
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,
26
27
"knownValues": [
27
28
"approved",
28
29
"denied"
29
30
]
30
31
},
31
32
"createdAt": {
32
33
"type": "string",
33
34
"format": "datetime"
34
35
},
35
36
"reviewedBy": {
36
37
"type": "string",
37
38
"format": "did"
38
39
},
39
40
"approvedGames": {
40
41
"type": "array",
41
42
"items": {
42
43
"type": "string",
43
44
"format": "at-uri"
44
45
}
45
46
}
46
47
}
47
48
},
48
49
"description": "A review of a claim for ownership of game or organization records."
49
50
}
50
51
},
51
52
"$type": "com.atproto.lexicon.schema",
52
53
"lexicon": 1
53
54
}