-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
37 lines (37 loc) · 832 Bytes
/
Copy pathdb.json
File metadata and controls
37 lines (37 loc) · 832 Bytes
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
{
"user": {
"id": 1,
"name": "Dr. Strange",
"image_url": "https://i0.wp.com/screengeek.net/wp-content/uploads/2021/03/benedict-cumberbatch-doctor-strange-2.jpg"
},
"tasks": [
{
"id": 1,
"title": "This is my first task",
"is_complete": false,
"created_at": 1649917268140,
"user_id": 1
},
{
"id": 2,
"title": "This is my second task",
"is_complete": false,
"created_at": 1649917268200,
"user_id": 1
},
{
"id": "3",
"title": "Ok, now let's get serious and save the world!",
"is_complete": false,
"user_id": 1,
"created_at": 1649949279478
},
{
"id": "4",
"title": "Oh, and catch Peter Parker!",
"is_complete": false,
"user_id": 1,
"created_at": 1649952120042
}
]
}