-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.json
More file actions
54 lines (54 loc) · 1.21 KB
/
db.json
File metadata and controls
54 lines (54 loc) · 1.21 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
53
54
{
"todos": [
{
"id": 1,
"name": "Buy food",
"description": "Buy bread, sausage, eggs, salad",
"status": "NEW",
"dueDate": "2020-06-18T06:59:06.951Z",
"created": "2020-06-18T06:59:06.951Z",
"assignee": 1
},
{
"id": 2,
"name": "Cleanup kitchen",
"description": "Cleanup fridge, table and cooker",
"status": "IN_PROGRESS",
"dueDate": "2020-06-17T06:59:06.951Z",
"created": "2020-06-20T06:59:06.951Z",
"assignee": 2
},
{
"id": 3,
"name": "Order service inspection of the car",
"description": "Call +420 111 777 444",
"status": "IN_PROGRESS",
"dueDate": "2020-06-18T06:59:06.951Z",
"created": "2020-06-18T06:59:06.951Z",
"assignee": 1
},
{
"id": 4,
"name": "Mow the grass",
"description": null,
"status": "DONE",
"dueDate": "2020-06-18T06:59:06.951Z",
"created": "2020-06-18T06:59:06.951Z",
"assignee": 1
}
],
"users": [
{
"id": 1,
"firstName": "John",
"surname": "Doe",
"position": "husband"
},
{
"id": 2,
"firstName": "Jane",
"surname": "Doe",
"position": "wife"
}
]
}