at main 29 lines 668 B view raw
1{ 2 "lexicon": 1, 3 "id": "sh.weaver.notebook.getEntry", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get an entry view by its AT-URI.", 8 "parameters": { 9 "type": "params", 10 "required": ["uri"], 11 "properties": { 12 "uri": { 13 "type": "string", 14 "format": "at-uri", 15 "description": "AT-URI of the entry to fetch." 16 } 17 } 18 }, 19 "output": { 20 "encoding": "application/json", 21 "schema": { 22 "type": "ref", 23 "ref": "sh.weaver.notebook.defs#entryView" 24 } 25 }, 26 "errors": [{ "name": "EntryNotFound" }] 27 } 28 } 29}