at main 45 lines 1.4 kB view raw
1{ 2 "lexicon": 1, 3 "id": "sh.weaver.notebook.chapter", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A grouping of entries in a notebook.", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": ["notebook", "authors", "entryList"], 12 "properties": { 13 "title": { "type": "ref", "ref": "sh.weaver.notebook.defs#title" }, 14 "tags": { "type": "ref", "ref": "sh.weaver.notebook.defs#tags" }, 15 "notebook": { 16 "type": "ref", 17 "ref": "com.atproto.repo.strongRef", 18 "description": "The notebook this chapter belongs to." 19 }, 20 "authors": { 21 "type": "array", 22 "items": { 23 "type": "ref", 24 "ref": "sh.weaver.actor.defs#author" 25 } 26 }, 27 "entryList": { 28 "type": "array", 29 "items": { 30 "type": "ref", 31 "ref": "com.atproto.repo.strongRef" 32 } 33 }, 34 "createdAt": { 35 "type": "string", 36 "format": "datetime", 37 "description": "Client-declared timestamp when this was originally created." 38 }, 39 "contentWarnings": { "type": "ref", "ref": "sh.weaver.notebook.defs#contentWarnings" }, 40 "rating": { "type": "ref", "ref": "sh.weaver.notebook.defs#contentRating" } 41 } 42 } 43 } 44 } 45}