dev.cartridge.migrateClaim
Schema Diff
+4 -2
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.migrateClaim:output.status", sort: "maxLength", value: "64" }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.migrateClaim:output.jobId", sort: "maxLength", value: "128" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.migrateClaim:output.status", sort: "maxLength", value: "64" }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.migrateClaim:output.jobId", sort: "maxLength", value: "128" }
1
1
{
2
2
"id": "dev.cartridge.migrateClaim",
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
"claim",
11
11
"claimReview"
12
12
],
13
13
"properties": {
14
14
"claim": {
15
15
"type": "string",
16
16
"format": "at-uri"
17
17
},
18
18
"claimReview": {
19
19
"type": "string",
20
20
"format": "at-uri"
21
21
}
22
22
}
23
23
},
24
24
"encoding": "application/json"
25
25
},
26
26
"output": {
27
27
"schema": {
28
28
"type": "object",
29
29
"required": [
30
30
"jobId",
31
31
"status",
32
32
"gamesCount"
33
33
],
34
34
"properties": {
35
35
"jobId": {
36
-
"type": "string"
36
+
"type": "string",
37
+
"maxLength": 128
37
38
},
38
39
"status": {
39
-
"type": "string"
40
+
"type": "string",
41
+
"maxLength": 64
40
42
},
41
43
"gamesCount": {
42
44
"type": "integer"
43
45
}
44
46
}
45
47
},
46
48
"encoding": "application/json"
47
49
},
48
50
"description": "Enqueue migration of game records based on an approved claim."
49
51
}
50
52
},
51
53
"$type": "com.atproto.lexicon.schema",
52
54
"lexicon": 1
53
55
}