-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
64 lines (63 loc) · 1.62 KB
/
db.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
{
"users": [
{
"id": 1,
"name": "Pau Stack",
"email": "[email protected]",
"username": "pau"
},
{
"id": 2,
"name": "Valery Stack",
"email": "[email protected]",
"username": "valeryantonella"
},
{
"id": 3,
"name": "Washington Stack",
"email": "[email protected]",
"username": "washington"
}, {
"id": 4,
"name": "Fernando Stack",
"email": "[email protected]",
"username": "fer"
},
{
"id": 5,
"name": "Marceline Stack",
"email": "[email protected]",
"username": "marce"
}
],
"tasks": [
{
"id": 1,
"title": "Read a book",
"description": "Read a book about programming",
"status": "done",
"userId": 1
},
{
"id": 2,
"title": "Read training material",
"description": "Read intership guidelines and training material",
"status": "pending",
"userId": 2
},
{
"id": 3,
"title": "Read training material",
"description": "Read intership guidelines and training material",
"status": "done",
"userId": 3
},
{
"id": 4,
"title": "Review json data",
"description": "Review json data for the project",
"status": "pending",
"userId": 3
}
]
}