app.standard-reader.getPublications
Schema Diff
+7 -3
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.standard-reader.getPublications",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"ref": "app.standard-reader.defs#cursorPagePublications",
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
"q": {
18
-
"type": "string"
18
+
"type": "string",
19
+
"maxLength": 256
19
20
},
20
21
"sort": {
21
22
"type": "string",
22
23
"default": "readers",
24
+
"maxLength": 32,
23
25
"knownValues": [
24
26
"readers",
25
27
"active",
26
28
"az"
27
29
]
28
30
},
29
31
"limit": {
30
32
"type": "integer",
31
33
"default": 24,
32
34
"maximum": 60,
33
35
"minimum": 1
34
36
},
35
37
"topic": {
36
-
"type": "string"
38
+
"type": "string",
39
+
"maxLength": 128
37
40
},
38
41
"cursor": {
39
-
"type": "string"
42
+
"type": "string",
43
+
"maxLength": 8192
40
44
}
41
45
}
42
46
},
43
47
"description": "Browse the publication directory with topic filter, sort, and cursor pagination."
44
48
}
45
49
},
46
50
"$type": "com.atproto.lexicon.schema",
47
51
"lexicon": 1
48
52
}