appBskyUnspeccedGetSuggestedStarterPacks top-level constant
app.bsky.unspecced.getSuggestedStarterPacks
Implementation
const appBskyUnspeccedGetSuggestedStarterPacks = <String, dynamic>{
"lexicon": 1,
"id": "app.bsky.unspecced.getSuggestedStarterPacks",
"defs": {
"main": {
"type": "query",
"description": "Get a list of suggested starterpacks",
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 10,
"minimum": 1,
"maximum": 25,
},
},
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["starterPacks"],
"properties": {
"starterPacks": {
"type": "array",
"items": {
"type": "ref",
"ref": "app.bsky.graph.defs#starterPackView",
},
},
},
},
},
},
},
};