{ "lexicon": 1, "id": "app.bsky.graph.getLists", "defs": { "main": { "type": "query", "description": "Enumerates the lists created by a specified account (actor).", "parameters": { "type": "params", "required": [ "actor" ], "properties": { "actor": { "type": "string", "description": "The account (actor) to enumerate lists from.", "format": "at-identifier" }, "cursor": { "type": "string" }, "limit": { "type": "integer", "default": 50, "minimum": 1, "maximum": 100 }, "purposes": { "type": "array", "description": "Optional filter by list purpose. If not specified, all supported types are returned.", "items": { "type": "string", "knownValues": [ "modlist", "curatelist" ] } } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "lists" ], "properties": { "cursor": { "type": "string" }, "lists": { "type": "array", "items": { "type": "ref", "ref": "app.bsky.graph.defs#listView" } } } } } } } }