a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
at major 36 lines 634 B view raw
1{ 2 "lexicon": 1, 3 "id": "pub.leaflet.blocks.unorderedList", 4 "defs": { 5 "main": { 6 "type": "object", 7 "required": ["children"], 8 "properties": { 9 "children": { 10 "type": "array", 11 "items": { 12 "type": "ref", 13 "ref": "#listItem" 14 } 15 } 16 } 17 }, 18 "listItem": { 19 "type": "object", 20 "required": ["content"], 21 "properties": { 22 "content": { 23 "type": "union", 24 "refs": ["pub.leaflet.blocks.text", "pub.leaflet.blocks.header", "pub.leaflet.blocks.image"] 25 }, 26 "children": { 27 "type": "array", 28 "items": { 29 "type": "ref", 30 "ref": "#listItem" 31 } 32 } 33 } 34 } 35 } 36}