atproto blogging
1{
2 "lexicon": 1,
3 "id": "pub.leaflet.blocks.unorderedList",
4 "defs": {
5 "listItem": {
6 "type": "object",
7 "required": [
8 "content"
9 ],
10 "properties": {
11 "children": {
12 "type": "array",
13 "items": {
14 "type": "ref",
15 "ref": "#listItem"
16 }
17 },
18 "content": {
19 "type": "union",
20 "refs": [
21 "pub.leaflet.blocks.text",
22 "pub.leaflet.blocks.header",
23 "pub.leaflet.blocks.image"
24 ]
25 }
26 }
27 },
28 "main": {
29 "type": "object",
30 "required": [
31 "children"
32 ],
33 "properties": {
34 "children": {
35 "type": "array",
36 "items": {
37 "type": "ref",
38 "ref": "#listItem"
39 }
40 }
41 }
42 }
43 }
44}