-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_data.json
More file actions
52 lines (52 loc) · 1.22 KB
/
Copy pathtest_data.json
File metadata and controls
52 lines (52 loc) · 1.22 KB
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
{
"users": {
"0": {
"uuid": "0",
"username": "Yunhao Qian",
"password": "08221018",
"groups": ["2", "6"]
},
"1": {
"uuid": "4",
"username": "Yanjia Zhu",
"password": "10180822",
"groups": ["6", "10"]
}
},
"tasks": {
"1": {
"uuid": "1",
"group": "2",
"content": "Finish the NewHack",
"due_date": [2020, 3, 7],
"divisions": [["4", "8", "12"], ["16"], ["20", "24"]]
},
"2": {
"uuid": "5",
"group": "6",
"content": "Go to ChestNut",
"due_date": null,
"divisions": [["0", "4"]]
}
},
"groups": {
"2": {
"uuid": "2",
"tasks": ["1", "5", "9"],
"users": ["0", "4", "8"],
"user_to_task": {
"0": ["1", "5"],
"4": ["1", "9"],
"8": ["5", "9"]
}
},
"6": {
"uuid": "6",
"tasks": ["5", "13"],
"users": ["0"],
"user_to_task": {
"0": ["1", "5"]
}
}
}
}