dev.cartridge.createClaim
Schema Diff
+1 -2
Compatibility Analysis
Backward Compatible
Backward compatible. 1 non-breaking change.
Non-Breaking Changes (1)
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.cartridge.createClaim:input.type", sort: "maxLength" }
Migration Guidance
Constraint Changes
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.cartridge.createClaim:input.type", sort: "maxLength" }
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",
20
-
"maxLength": 64
19
+
"type": "string"
21
20
},
22
21
"games": {
23
22
"type": "array",
24
23
"items": {
25
24
"type": "string",
26
25
"format": "at-uri"
27
26
}
28
27
},
29
28
"contact": {
30
29
"type": "string",
31
30
"maxGraphemes": 500
32
31
},
33
32
"message": {
34
33
"type": "string",
35
34
"maxGraphemes": 3000
36
35
}
37
36
}
38
37
},
39
38
"encoding": "application/json"
40
39
},
41
40
"output": {
42
41
"schema": {
43
42
"type": "object",
44
43
"required": [
45
44
"uri"
46
45
],
47
46
"properties": {
48
47
"uri": {
49
48
"type": "string",
50
49
"format": "at-uri"
51
50
}
52
51
}
53
52
},
54
53
"encoding": "application/json"
55
54
},
56
55
"description": "Submit a new ownership claim for game or organization records."
57
56
}
58
57
},
59
58
"$type": "com.atproto.lexicon.schema",
60
59
"lexicon": 1
61
60
}