rip.pds.account.listAccounts
Schema Diff
+4 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "rip.pds.account.listAccounts:output.maxLifetimeDays" }
- AddedEdge AddedEdge { src: "rip.pds.account.listAccounts:output", tgt: "rip.pds.account.listAccounts:output.maxLifetimeDays", kind: "prop", name: Some("maxLifetimeDays") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "rip.pds.account.listAccounts:output.maxLifetimeDays" }
Additional Notes
- Non-breaking: AddedEdge { src: "rip.pds.account.listAccounts:output", tgt: "rip.pds.account.listAccounts:output.maxLifetimeDays", kind: "prop", name: Some("maxLifetimeDays") }
1
1
{
2
2
"id": "rip.pds.account.listAccounts",
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
"accounts"
11
11
],
12
12
"properties": {
13
13
"quota": {
14
14
"type": "object",
15
15
"required": [
16
16
"used",
17
17
"limit"
18
18
],
19
19
"properties": {
20
20
"used": {
21
21
"type": "integer"
22
22
},
23
23
"limit": {
24
24
"type": "integer"
25
25
}
26
26
},
27
27
"description": "How much of the caller's allowance is in use."
28
28
},
29
29
"cursor": {
30
30
"type": "string"
31
31
},
32
32
"accounts": {
33
33
"type": "array",
34
34
"items": {
35
35
"ref": "rip.pds.account.defs#accountView",
36
36
"type": "ref"
37
37
}
38
+
},
39
+
"maxLifetimeDays": {
40
+
"type": "integer",
41
+
"description": "How far any of the caller's accounts may be extended, in days from its creation, after any per-person override. Clients should render ceilings from this rather than from a server-wide default."
38
42
}
39
43
}
40
44
},
41
45
"encoding": "application/json"
42
46
},
43
47
"parameters": {
44
48
"type": "params",
45
49
"properties": {
46
50
"limit": {
47
51
"type": "integer",
48
52
"default": 50,
49
53
"maximum": 100,
50
54
"minimum": 1
51
55
},
52
56
"cursor": {
53
57
"type": "string"
54
58
},
55
59
"includeDeleted": {
56
60
"type": "boolean",
57
61
"default": false,
58
62
"description": "Include accounts that have already expired or been deleted."
59
63
}
60
64
}
61
65
},
62
66
"description": "List the ephemeral accounts minted by the calling account."
63
67
}
64
68
},
65
69
"$type": "com.atproto.lexicon.schema",
66
70
"lexicon": 1
67
71
}