{ "lexicon": 1, "id": "app.bsky.graph.getStarterPacksWithMembership", "defs": { "main": { "type": "query", "description": "Enumerates the starter packs created by the session user, and includes membership information about `actor` in those starter packs. Requires auth.", "parameters": { "type": "params", "required": [ "actor" ], "properties": { "actor": { "type": "string", "description": "The account (actor) to check for membership.", "format": "at-identifier" }, "cursor": { "type": "string" }, "limit": { "type": "integer", "default": 50, "minimum": 1, "maximum": 100 } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "starterPacksWithMembership" ], "properties": { "cursor": { "type": "string" }, "starterPacksWithMembership": { "type": "array", "items": { "type": "ref", "ref": "#starterPackWithMembership" } } } } } }, "starterPackWithMembership": { "type": "object", "description": "A starter pack and an optional list item indicating membership of a target user to that starter pack.", "required": [ "starterPack" ], "properties": { "listItem": { "type": "ref", "ref": "app.bsky.graph.defs#listItemView" }, "starterPack": { "type": "ref", "ref": "app.bsky.graph.defs#starterPackView" } } } } }