dev.cartridge.listClaims
Schema Diff
+2 -5
Compatibility Analysis
Backward Compatible
Backward compatible. 1 non-breaking change.
Non-Breaking Changes (1)
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.cartridge.listClaims:output.cursor", sort: "maxLength" }
Migration Guidance
Constraint Changes
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.cartridge.listClaims:output.cursor", sort: "maxLength" }
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",
22
-
"maxLength": 256
21
+
"type": "string"
23
22
}
24
23
}
25
24
},
26
25
"encoding": "application/json"
27
26
},
28
27
"parameters": {
29
28
"type": "params",
30
29
"properties": {
31
30
"limit": {
32
31
"type": "integer",
33
32
"default": 25,
34
33
"maximum": 100,
35
34
"minimum": 1
36
35
},
37
36
"cursor": {
38
-
"type": "string",
39
-
"maxLength": 256
37
+
"type": "string"
40
38
},
41
39
"status": {
42
40
"type": "string",
43
-
"maxLength": 64,
44
41
"knownValues": [
45
42
"pending",
46
43
"approved",
47
44
"denied"
48
45
]
49
46
}
50
47
}
51
48
},
52
49
"description": "List ownership claims, optionally filtered by status."
53
50
}
54
51
},
55
52
"$type": "com.atproto.lexicon.schema",
56
53
"lexicon": 1
57
54
}