{ "lexicon": 1, "id": "sh.weaver.notebook.searchEntries", "defs": { "main": { "type": "query", "description": "Full-text search for entries with optional author and tag filtering.", "parameters": { "type": "params", "required": ["q"], "properties": { "q": { "type": "string", "minLength": 1, "maxLength": 500 }, "author": { "type": "string", "format": "at-identifier" }, "tags": { "type": "array", "items": { "type": "string" }, "maxLength": 10 }, "limit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 25 }, "cursor": { "type": "string" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["entries"], "properties": { "entries": { "type": "array", "items": { "type": "ref", "ref": "sh.weaver.notebook.defs#entryView" } }, "cursor": { "type": "string" } } } } } } }