at main 26 lines 629 B view raw
1{ 2 "lexicon": 1, 3 "id": "sh.weaver.graph.subscribe", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "Request to subscribe to a notebook. Requires acceptance to be active.", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": ["notebook", "createdAt"], 12 "properties": { 13 "notebook": { 14 "type": "string", 15 "format": "at-uri", 16 "description": "URI of the notebook to subscribe to." 17 }, 18 "createdAt": { 19 "type": "string", 20 "format": "datetime" 21 } 22 } 23 } 24 } 25 } 26}