{ "lexicon": 1, "id": "sh.weaver.notebook.getNotebookFeed", "defs": { "main": { "type": "query", "description": "Get a feed of notebooks with optional algorithm and tag filtering.", "parameters": { "type": "params", "properties": { "algorithm": { "type": "string", "default": "chronological", "knownValues": ["chronological", "popular"] }, "feed": { "type": "string", "format": "at-uri", "description": "Optional custom feed generator URI" }, "tags": { "type": "array", "items": { "type": "string" }, "maxLength": 10 }, "limit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 50 }, "cursor": { "type": "string" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["notebooks"], "properties": { "notebooks": { "type": "array", "items": { "type": "ref", "ref": "sh.weaver.notebook.defs#notebookView" } }, "cursor": { "type": "string" } } } } } } }