an attempt to make a lightweight, easily self-hostable, scoped bluesky appview
at main 50 lines 969 B view raw view rendered
1 2 3## app.bsky.feed.getFeedGenerators 4 5```js 6{ 7 "lexicon": 1, 8 "id": "app.bsky.feed.getFeedGenerators", 9 "defs": { 10 "main": { 11 "type": "query", 12 "description": "Get information about a list of feed generators.", 13 "parameters": { 14 "type": "params", 15 "required": [ 16 "feeds" 17 ], 18 "properties": { 19 "feeds": { 20 "type": "array", 21 "items": { 22 "type": "string", 23 "format": "at-uri" 24 } 25 } 26 } 27 }, 28 "output": { 29 "encoding": "application/json", 30 "schema": { 31 "type": "object", 32 "required": [ 33 "feeds" 34 ], 35 "properties": { 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} 49``` 50---