forked from webix-hub/gantt-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.json
98 lines (98 loc) · 1.77 KB
/
tasks.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[
{
"_id": "1",
"text": "Project A",
"start_date": "2018-06-10 00:00:00",
"duration":5,
"progress":24,
"parent":0,
"opened":1,
"type":"project",
"details":"Weekly meeting required\nRoom 508",
"position":0
},
{
"_id": "1.1",
"text": "Design",
"start_date": "2018-06-10 00:00:00",
"duration":1,
"progress":85,
"parent":"1",
"position":0
},
{
"_id": "1.2",
"text": "Approval",
"start_date": "2018-06-11 00:00:00",
"duration":0,
"parent":"1",
"type":"milestone",
"position":1
},
{
"_id": "1.3",
"text": "Coding",
"start_date": "2018-06-10 00:00:00",
"duration":3,
"progress":20,
"parent":"1",
"details":"Contact Rob for details",
"position":2
},
{
"_id": "1.4",
"text": "Testing",
"start_date": "2018-06-13 00:00:00",
"duration":1,
"progress":0,
"parent":"1",
"details":"Desktop, mobile",
"position":3
},
{
"_id": "1.5",
"text": "Fixing",
"start_date": "2018-06-14 00:00:00",
"duration":1,
"progress":0,
"parent":"1",
"position":4
},
{
"_id": "1.6",
"text": "Deploy",
"start_date": "2018-06-15 00:00:00",
"duration":0,
"parent":"1",
"type":"milestone",
"position":5
},
{
"_id": "2",
"text": "Project B",
"start_date": "2018-06-10 00:00:00",
"duration":3,
"progress":0,
"parent":0,
"type":"project",
"position":1
},
{
"_id": "2.1",
"text": "Task 1",
"start_date": "2018-06-10 00:00:00",
"duration":2,
"progress":0,
"parent":"2",
"position":0
},
{
"_id": "2.2",
"text": "Task 2",
"start_date": "2018-06-11 00:00:00",
"duration":2,
"progress":0,
"parent":"2",
"position":1
}
]