dev.cartridge.createClaim
Schema Diff
+2 -1
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 0 non-breaking changes.
Breaking Changes (1)
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.createClaim:input.type", sort: "maxLength", value: "64" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.createClaim:input.type", sort: "maxLength", value: "64" }
1
1
{
2
2
"id": "dev.cartridge.createClaim",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"type",
11
11
"contact"
12
12
],
13
13
"properties": {
14
14
"org": {
15
15
"type": "string",
16
16
"format": "at-uri"
17
17
},
18
18
"type": {
19
-
"type": "string"
19
+
"type": "string",
20
+
"maxLength": 64
20
21
},
21
22
"games": {
22
23
"type": "array",
23
24
"items": {
24
25
"type": "string",
25
26
"format": "at-uri"
26
27
}
27
28
},
28
29
"contact": {
29
30
"type": "string",
30
31
"maxGraphemes": 500
31
32
},
32
33
"message": {
33
34
"type": "string",
34
35
"maxGraphemes": 3000
35
36
}
36
37
}
37
38
},
38
39
"encoding": "application/json"
39
40
},
40
41
"output": {
41
42
"schema": {
42
43
"type": "object",
43
44
"required": [
44
45
"uri"
45
46
],
46
47
"properties": {
47
48
"uri": {
48
49
"type": "string",
49
50
"format": "at-uri"
50
51
}
51
52
}
52
53
},
53
54
"encoding": "application/json"
54
55
},
55
56
"description": "Submit a new ownership claim for game or organization records."
56
57
}
57
58
},
58
59
"$type": "com.atproto.lexicon.schema",
59
60
"lexicon": 1
60
61
}