atproto blogging
1{
2 "lexicon": 1,
3 "id": "blog.pckt.block.taskItem",
4 "description": "Individual task item with checkbox state.",
5 "defs": {
6 "main": {
7 "type": "object",
8 "required": [
9 "checked",
10 "content"
11 ],
12 "properties": {
13 "checked": {
14 "type": "boolean",
15 "description": "Whether the task is completed"
16 },
17 "content": {
18 "type": "array",
19 "description": "Array of text blocks",
20 "items": {
21 "type": "union",
22 "refs": [
23 "blog.pckt.block.text"
24 ],
25 "closed": false
26 }
27 }
28 }
29 }
30 }
31}