dev.cartridge.claimReview
Schema Diff
+0 -0
Compatibility Analysis
Backward Compatible
No changes detected.
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
26
"maxLength": 64,
27
27
"knownValues": [
28
28
"approved",
29
29
"denied"
30
30
]
31
31
},
32
32
"createdAt": {
33
33
"type": "string",
34
34
"format": "datetime"
35
35
},
36
36
"reviewedBy": {
37
37
"type": "string",
38
38
"format": "did"
39
39
},
40
40
"approvedGames": {
41
41
"type": "array",
42
42
"items": {
43
43
"type": "string",
44
44
"format": "at-uri"
45
45
}
46
46
}
47
47
}
48
48
},
49
49
"description": "A review of a claim for ownership of game or organization records."
50
50
}
51
51
},
52
52
"$type": "com.atproto.lexicon.schema",
53
53
"lexicon": 1
54
54
}