{ "lexicon": 1, "id": "app.bsky.feed.getFeedGenerator", "defs": { "main": { "type": "query", "description": "Get information about a feed generator. Implemented by AppView.", "parameters": { "type": "params", "required": [ "feed" ], "properties": { "feed": { "type": "string", "description": "AT-URI of the feed generator record.", "format": "at-uri" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "view", "isOnline", "isValid" ], "properties": { "isOnline": { "type": "boolean", "description": "Indicates whether the feed generator service has been online recently, or else seems to be inactive." }, "isValid": { "type": "boolean", "description": "Indicates whether the feed generator service is compatible with the record declaration." }, "view": { "type": "ref", "ref": "app.bsky.feed.defs#generatorView" } } } } } } }