atproto blogging
1{
2 "lexicon": 1,
3 "id": "blog.pckt.block.taskList",
4 "description": "Interactive task list with checkable items. Each item displays a checkbox that can be toggled between checked and unchecked states.",
5 "defs": {
6 "main": {
7 "type": "object",
8 "required": [
9 "content"
10 ],
11 "properties": {
12 "content": {
13 "type": "array",
14 "description": "Array of task items",
15 "items": {
16 "type": "ref",
17 "ref": "blog.pckt.block.taskItem"
18 }
19 }
20 }
21 }
22 }
23}