-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathdb.json
275 lines (275 loc) · 6.6 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
{
"people": [
{
"id": 1,
"fullName": "John Doe",
"age": 32,
"occupation": "Software Developer",
"nickname": "Johnny",
"gender": "Male",
"picture": "https://randomuser.me/api/portraits/lego/1.jpg"
},
{
"id": 2,
"fullName": "Jane Smith",
"age": 27,
"occupation": "Doctor",
"nickname": "Jane",
"gender": "Female",
"picture": "https://randomuser.me/api/portraits/lego/2.jpg"
},
{
"id": 3,
"fullName": "Bob Johnson",
"age": 45,
"occupation": "Teacher",
"nickname": "Bobby",
"gender": "Male",
"picture": "https://randomuser.me/api/portraits/lego/3.jpg"
},
{
"id": 4,
"fullName": "Alice Williams",
"age": 29,
"occupation": "Lawyer",
"nickname": "Ali",
"gender": "Female",
"picture": "https://randomuser.me/api/portraits/lego/4.jpg"
},
{
"id": 5,
"fullName": "Michael Brown",
"age": 41,
"occupation": "Construction Worker",
"nickname": "Mike",
"gender": "Male",
"picture": "https://randomuser.me/api/portraits/lego/5.jpg"
},
{
"id": 6,
"fullName": "Emily Davis",
"age": 36,
"occupation": "Nurse",
"nickname": "Em",
"gender": "Female",
"picture": "https://randomuser.me/api/portraits/lego/6.jpg"
},
{
"id": 7,
"fullName": "David Anderson",
"age": 38,
"occupation": "Police Officer",
"nickname": "Dave",
"gender": "Male",
"picture": "https://randomuser.me/api/portraits/lego/7.jpg"
},
{
"id": 8,
"fullName": "Samantha Taylor",
"age": 26,
"occupation": "Graphic Designer",
"nickname": "Sam",
"gender": "Female",
"picture": "https://randomuser.me/api/portraits/lego/8.jpg"
},
{
"id": 9,
"fullName": "William Rodriguez",
"age": 33,
"occupation": "Accountant",
"nickname": "Will",
"gender": "Male",
"picture": "https://randomuser.me/api/portraits/lego/9.jpg"
},
{
"id": 10,
"fullName": "Ashley Johnson",
"age": 30,
"occupation": "Salespeople",
"nickname": "Ash",
"gender": "Female",
"picture": "https://randomuser.me/api/portraits/lego/1.jpg"
}
],
"tasks": [
{
"id": 1,
"title": "Task 1",
"description": "This is the first task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 1
},
{
"id": 2,
"title": "Task 2",
"description": "This is the second task on the list.",
"completed": true,
"startDate": "2022-12-04",
"endDate": "2022-12-05",
"personId": 2
},
{
"id": 3,
"title": "Task 3",
"description": "This is the third task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 3
},
{
"id": 4,
"title": "Task 4",
"description": "This is the fourth task on the list.",
"completed": true,
"startDate": "2022-12-04",
"endDate": "2022-12-06",
"personId": 4
},
{
"id": 5,
"title": "Task 5",
"description": "This is the fifth task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 5
},
{
"id": 6,
"title": "Task 6",
"description": "This is the sixth task on the list.",
"completed": true,
"startDate": "2022-12-04",
"endDate": "2022-12-07",
"personId": 6
},
{
"id": 7,
"title": "Task 7",
"description": "This is the seventh task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 7
},
{
"id": 8,
"title": "Task 8",
"description": "This is the eighth task on the list.",
"completed": true,
"startDate": "2022-12-04",
"endDate": "2022-12-08",
"personId": 8
},
{
"id": 9,
"title": "Task 9",
"description": "This is the ninth task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 9
},
{
"id": 10,
"title": "Task 10",
"description": "This is the tenth task on the list.",
"completed": true,
"startDate": "2022-12-04",
"endDate": null
},
{
"id": 11,
"title": "Task 11",
"description": "This is the eleventh task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 1
},
{
"id": 12,
"title": "Task 12",
"description": "This is the twelfth task on the list.",
"completed": true,
"startDate": "2022-12-04",
"endDate": "2022-12-05",
"personId": 2
},
{
"id": 13,
"title": "Task 13",
"description": "This is the thirteenth task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 3
},
{
"id": 14,
"title": "Task 14",
"description": "This is the fourteenth task on the list.",
"completed": true,
"startDate": "2022-12-04",
"endDate": "2022-12-06",
"personId": 4
},
{
"id": 15,
"title": "Task 15",
"description": "This is the fifteenth task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 5
},
{
"id": 16,
"title": "Task 16",
"description": "This is the sixteenth task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 6
},
{
"id": 17,
"title": "Task 17",
"description": "This is the seventeenth task on the list.",
"completed": true,
"startDate": "2022-12-04",
"endDate": "2022-12-05",
"personId": 7
},
{
"id": 18,
"title": "Task 18",
"description": "This is the eighteenth task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 8
},
{
"id": 19,
"title": "Task 19",
"description": "This is the nineteenth task on the list.",
"completed": true,
"startDate": "2022-12-04",
"endDate": "2022-12-06",
"personId": 9
},
{
"id": 20,
"title": "Task 20",
"description": "This is the twentieth task on the list.",
"completed": false,
"startDate": "2022-12-04",
"endDate": null,
"personId": 10
}
]
}