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