appBskyUnspeccedGetPopularFeedGenerators top-level constant
app.bsky.unspecced.getPopularFeedGenerators
Implementation
const appBskyUnspeccedGetPopularFeedGenerators = <String, dynamic>{
"lexicon": 1,
"id": "app.bsky.unspecced.getPopularFeedGenerators",
"defs": {
"main": {
"type": "query",
"description": "An unspecced view of globally popular feed generators.",
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"minimum": 1,
"maximum": 100
},
"cursor": {"type": "string"},
"query": {"type": "string"}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["feeds"],
"properties": {
"cursor": {"type": "string"},
"feeds": {
"type": "array",
"items": {
"type": "ref",
"ref": "app.bsky.feed.defs#generatorView"
}
}
}
}
}
}
}
};