app.standard-reader.getLatestFeed
Schema Diff
+3 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.standard-reader.getLatestFeed",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"ref": "app.standard-reader.defs#cursorPageDocuments",
9
9
"type": "ref"
10
10
},
11
11
"encoding": "application/json"
12
12
},
13
13
"parameters": {
14
14
"type": "params",
15
15
"required": [],
16
16
"properties": {
17
17
"did": {
18
18
"type": "string",
19
19
"format": "did"
20
20
},
21
21
"limit": {
22
22
"type": "integer",
23
23
"default": 20,
24
24
"maximum": 50,
25
25
"minimum": 1
26
26
},
27
27
"cursor": {
28
-
"type": "string"
28
+
"type": "string",
29
+
"maxLength": 8192
29
30
},
30
31
"filter": {
31
32
"type": "string",
32
33
"default": "subscriptions",
34
+
"maxLength": 32,
33
35
"knownValues": [
34
36
"all",
35
37
"subscriptions",
36
38
"unread"
37
39
]
38
40
}
39
41
}
40
42
},
41
43
"description": "Chronological feed of indexed articles with optional filter."
42
44
}
43
45
},
44
46
"$type": "com.atproto.lexicon.schema",
45
47
"lexicon": 1
46
48
}