dev.cartridge.reviewVerificationRequest
Schema Diff
+5 -2
Compatibility Analysis
Breaking Changes Detected
3 breaking changes, 0 non-breaking changes.
Breaking Changes (3)
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.reviewVerificationRequest:input.status", sort: "maxLength", value: "64" }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.reviewVerificationRequest:input.requestId", sort: "maxLength", value: "128" }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.reviewVerificationRequest:output.requestId", sort: "maxLength", value: "128" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.reviewVerificationRequest:input.status", sort: "maxLength", value: "64" }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.reviewVerificationRequest:output.requestId", sort: "maxLength", value: "128" }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.reviewVerificationRequest:input.requestId", sort: "maxLength", value: "128" }
1
1
{
2
2
"id": "dev.cartridge.reviewVerificationRequest",
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
"requestId",
11
11
"status"
12
12
],
13
13
"properties": {
14
14
"reason": {
15
15
"type": "string",
16
16
"maxGraphemes": 3000
17
17
},
18
18
"status": {
19
19
"type": "string",
20
+
"maxLength": 64,
20
21
"knownValues": [
21
22
"approved",
22
23
"denied"
23
24
]
24
25
},
25
26
"requestId": {
26
-
"type": "string"
27
+
"type": "string",
28
+
"maxLength": 128
27
29
}
28
30
}
29
31
},
30
32
"encoding": "application/json"
31
33
},
32
34
"output": {
33
35
"schema": {
34
36
"type": "object",
35
37
"required": [
36
38
"requestId"
37
39
],
38
40
"properties": {
39
41
"requestId": {
40
-
"type": "string"
42
+
"type": "string",
43
+
"maxLength": 128
41
44
},
42
45
"verificationUri": {
43
46
"type": "string",
44
47
"format": "at-uri",
45
48
"description": "URI of the dev.cartridge.graph.verification record, present on approval."
46
49
}
47
50
}
48
51
},
49
52
"encoding": "application/json"
50
53
},
51
54
"description": "Approve or deny a verification request. Admin only. On approval, writes verification records from the verifier account."
52
55
}
53
56
},
54
57
"$type": "com.atproto.lexicon.schema",
55
58
"lexicon": 1
56
59
}