dev.cartridge.listClaims
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.listClaims:output.cursor", sort: "maxLength", value: "256" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.listClaims:output.cursor", sort: "maxLength", value: "256" }
1
1
{
2
2
"id": "dev.cartridge.listClaims",
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
"claims"
11
11
],
12
12
"properties": {
13
13
"claims": {
14
14
"type": "array",
15
15
"items": {
16
16
"ref": "dev.cartridge.getClaim#claimView",
17
17
"type": "ref"
18
18
}
19
19
},
20
20
"cursor": {
21
-
"type": "string"
21
+
"type": "string",
22
+
"maxLength": 256
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 ownership claims, optionally filtered by status."
50
53
}
51
54
},
52
55
"$type": "com.atproto.lexicon.schema",
53
56
"lexicon": 1
54
57
}