dev.cartridge.listVerificationRequests
Schema Diff
+5 -2
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 0 non-breaking changes.
Breaking Changes (1)
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.listVerificationRequests:output.cursor", sort: "maxLength", value: "256" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.listVerificationRequests:output.cursor", sort: "maxLength", value: "256" }
1
1
{
2
2
"id": "dev.cartridge.listVerificationRequests",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"requests"
11
11
],
12
12
"properties": {
13
13
"cursor": {
14
-
"type": "string"
14
+
"type": "string",
15
+
"maxLength": 256
15
16
},
16
17
"requests": {
17
18
"type": "array",
18
19
"items": {
19
20
"ref": "dev.cartridge.getVerificationRequest#verificationRequestView",
20
21
"type": "ref"
21
22
}
22
23
}
23
24
}
24
25
},
25
26
"encoding": "application/json"
26
27
},
27
28
"parameters": {
28
29
"type": "params",
29
30
"properties": {
30
31
"limit": {
31
32
"type": "integer",
32
33
"default": 25,
33
34
"maximum": 100,
34
35
"minimum": 1
35
36
},
36
37
"cursor": {
37
-
"type": "string"
38
+
"type": "string",
39
+
"maxLength": 256
38
40
},
39
41
"status": {
40
42
"type": "string",
43
+
"maxLength": 64,
41
44
"knownValues": [
42
45
"pending",
43
46
"approved",
44
47
"denied"
45
48
]
46
49
}
47
50
}
48
51
},
49
52
"description": "List verification requests. Admin only."
50
53
}
51
54
},
52
55
"$type": "com.atproto.lexicon.schema",
53
56
"lexicon": 1
54
57
}