1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"tasks": [
{
"name": "Test Root Task 1",
"spec": "This is a root task for testing",
"priority": "high",
"children": [
{
"name": "Test Child 1.1",
"spec": "First child of Root 1",
"priority": "medium"
},
{
"name": "Test Child 1.2",
"spec": "Second child of Root 1",
"children": [
{
"name": "Test Grandchild 1.2.1",
"spec": "Deeply nested task",
"priority": "low"
}
]
}
]
},
{
"name": "Test Root Task 2",
"status": "todo",
"children": [
{
"name": "Test Child 2.1",
"depends_on": [
"Test Root Task 1"
]
}
]
}
]
}