atproto blogging
at main 52 lines 1.2 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.graph.getActorStarterPacks", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get a list of starter packs created by the actor.", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "actor" 12 ], 13 "properties": { 14 "actor": { 15 "type": "string", 16 "format": "at-identifier" 17 }, 18 "cursor": { 19 "type": "string" 20 }, 21 "limit": { 22 "type": "integer", 23 "default": 50, 24 "minimum": 1, 25 "maximum": 100 26 } 27 } 28 }, 29 "output": { 30 "encoding": "application/json", 31 "schema": { 32 "type": "object", 33 "required": [ 34 "starterPacks" 35 ], 36 "properties": { 37 "cursor": { 38 "type": "string" 39 }, 40 "starterPacks": { 41 "type": "array", 42 "items": { 43 "type": "ref", 44 "ref": "app.bsky.graph.defs#starterPackViewBasic" 45 } 46 } 47 } 48 } 49 } 50 } 51 } 52}