atproto blogging
1{
2 "lexicon": 1,
3 "id": "blog.pckt.block.orderedList",
4 "description": "Ordered numbered list. Each item can contain rich content including nested lists.",
5 "defs": {
6 "main": {
7 "type": "object",
8 "required": [
9 "content"
10 ],
11 "properties": {
12 "content": {
13 "type": "array",
14 "description": "Array of list items",
15 "items": {
16 "type": "ref",
17 "ref": "blog.pckt.block.listItem"
18 }
19 },
20 "start": {
21 "type": "integer",
22 "description": "Starting number for the ordered list (default: 1)",
23 "minimum": 1
24 }
25 }
26 }
27 }
28}