atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.unspecced.getPopularFeedGenerators",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "An unspecced view of globally popular feed generators.",
8 "parameters": {
9 "type": "params",
10 "properties": {
11 "cursor": {
12 "type": "string"
13 },
14 "limit": {
15 "type": "integer",
16 "default": 50,
17 "minimum": 1,
18 "maximum": 100
19 },
20 "query": {
21 "type": "string"
22 }
23 }
24 },
25 "output": {
26 "encoding": "application/json",
27 "schema": {
28 "type": "object",
29 "required": [
30 "feeds"
31 ],
32 "properties": {
33 "cursor": {
34 "type": "string"
35 },
36 "feeds": {
37 "type": "array",
38 "items": {
39 "type": "ref",
40 "ref": "app.bsky.feed.defs#generatorView"
41 }
42 }
43 }
44 }
45 }
46 }
47 }
48}