atproto blogging
at main 38 lines 855 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.graph.getStarterPack", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Gets a view of a starter pack.", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "starterPack" 12 ], 13 "properties": { 14 "starterPack": { 15 "type": "string", 16 "description": "Reference (AT-URI) of the starter pack record.", 17 "format": "at-uri" 18 } 19 } 20 }, 21 "output": { 22 "encoding": "application/json", 23 "schema": { 24 "type": "object", 25 "required": [ 26 "starterPack" 27 ], 28 "properties": { 29 "starterPack": { 30 "type": "ref", 31 "ref": "app.bsky.graph.defs#starterPackView" 32 } 33 } 34 } 35 } 36 } 37 } 38}