at main 49 lines 1.2 kB view raw
1{ 2 "lexicon": 1, 3 "id": "sh.weaver.graph.list", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A curated list of notebooks and/or entries.", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": ["name", "purpose", "createdAt"], 12 "properties": { 13 "name": { 14 "type": "string", 15 "minLength": 1, 16 "maxLength": 64, 17 "description": "Display name for the list." 18 }, 19 "purpose": { 20 "type": "ref", 21 "ref": "#listPurpose", 22 "description": "The purpose/type of list." 23 }, 24 "description": { 25 "type": "string", 26 "maxGraphemes": 300, 27 "maxLength": 3000 28 }, 29 "avatar": { 30 "type": "blob", 31 "accept": ["image/png", "image/jpeg"], 32 "maxSize": 1000000 33 }, 34 "createdAt": { 35 "type": "string", 36 "format": "datetime" 37 } 38 } 39 } 40 }, 41 "listPurpose": { 42 "type": "string", 43 "knownValues": [ 44 "sh.weaver.graph.defs#curatelist", 45 "sh.weaver.graph.defs#readinglist" 46 ] 47 } 48 } 49}