at main 31 lines 761 B view raw
1{ 2 "lexicon": 1, 3 "id": "sh.weaver.graph.listitem", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "An item in a list.", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": ["subject", "list", "createdAt"], 12 "properties": { 13 "subject": { 14 "type": "ref", 15 "ref": "com.atproto.repo.strongRef", 16 "description": "The notebook or entry being added to the list." 17 }, 18 "list": { 19 "type": "string", 20 "format": "at-uri", 21 "description": "Reference to the list record." 22 }, 23 "createdAt": { 24 "type": "string", 25 "format": "datetime" 26 } 27 } 28 } 29 } 30 } 31}