atproto blogging
at main 39 lines 862 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.unspecced.getSuggestedStarterPacks", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get a list of suggested starterpacks", 8 "parameters": { 9 "type": "params", 10 "properties": { 11 "limit": { 12 "type": "integer", 13 "default": 10, 14 "minimum": 1, 15 "maximum": 25 16 } 17 } 18 }, 19 "output": { 20 "encoding": "application/json", 21 "schema": { 22 "type": "object", 23 "required": [ 24 "starterPacks" 25 ], 26 "properties": { 27 "starterPacks": { 28 "type": "array", 29 "items": { 30 "type": "ref", 31 "ref": "app.bsky.graph.defs#starterPackView" 32 } 33 } 34 } 35 } 36 } 37 } 38 } 39}