dev.cartridge.claim
Schema Diff
+0 -1
Compatibility Analysis
Backward Compatible
Backward compatible. 1 non-breaking change.
Non-Breaking Changes (1)
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.cartridge.claim:body.type", sort: "maxLength" }
Migration Guidance
Constraint Changes
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.cartridge.claim:body.type", sort: "maxLength" }
1
1
{
2
2
"id": "dev.cartridge.claim",
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
"type",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"org": {
15
15
"type": "string",
16
16
"format": "at-uri"
17
17
},
18
18
"type": {
19
19
"type": "string",
20
-
"maxLength": 64,
21
20
"knownValues": [
22
21
"game",
23
22
"org"
24
23
]
25
24
},
26
25
"games": {
27
26
"type": "array",
28
27
"items": {
29
28
"type": "string",
30
29
"format": "at-uri"
31
30
}
32
31
},
33
32
"contact": {
34
33
"type": "string",
35
34
"description": "Contact information for the claimant (filtered from responses unless caller is admin)",
36
35
"maxGraphemes": 500
37
36
},
38
37
"message": {
39
38
"type": "string",
40
39
"maxGraphemes": 3000
41
40
},
42
41
"createdAt": {
43
42
"type": "string",
44
43
"format": "datetime"
45
44
}
46
45
}
47
46
},
48
47
"description": "A claim for ownership of game or organization records."
49
48
}
50
49
},
51
50
"$type": "com.atproto.lexicon.schema",
52
51
"lexicon": 1
53
52
}