dev.cartridge.claim
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.claim:body.type", sort: "maxLength", value: "64" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.claim:body.type", sort: "maxLength", value: "64" }
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,
20
21
"knownValues": [
21
22
"game",
22
23
"org"
23
24
]
24
25
},
25
26
"games": {
26
27
"type": "array",
27
28
"items": {
28
29
"type": "string",
29
30
"format": "at-uri"
30
31
}
31
32
},
32
33
"contact": {
33
34
"type": "string",
34
35
"description": "Contact information for the claimant (filtered from responses unless caller is admin)",
35
36
"maxGraphemes": 500
36
37
},
37
38
"message": {
38
39
"type": "string",
39
40
"maxGraphemes": 3000
40
41
},
41
42
"createdAt": {
42
43
"type": "string",
43
44
"format": "datetime"
44
45
}
45
46
}
46
47
},
47
48
"description": "A claim for ownership of game or organization records."
48
49
}
49
50
},
50
51
"$type": "com.atproto.lexicon.schema",
51
52
"lexicon": 1
52
53
}