atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.feed.getFeedGenerator",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get information about a feed generator. Implemented by AppView.",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "feed"
12 ],
13 "properties": {
14 "feed": {
15 "type": "string",
16 "description": "AT-URI of the feed generator record.",
17 "format": "at-uri"
18 }
19 }
20 },
21 "output": {
22 "encoding": "application/json",
23 "schema": {
24 "type": "object",
25 "required": [
26 "view",
27 "isOnline",
28 "isValid"
29 ],
30 "properties": {
31 "isOnline": {
32 "type": "boolean",
33 "description": "Indicates whether the feed generator service has been online recently, or else seems to be inactive."
34 },
35 "isValid": {
36 "type": "boolean",
37 "description": "Indicates whether the feed generator service is compatible with the record declaration."
38 },
39 "view": {
40 "type": "ref",
41 "ref": "app.bsky.feed.defs#generatorView"
42 }
43 }
44 }
45 }
46 }
47 }
48}