-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
46 lines (46 loc) · 898 Bytes
/
db.json
File metadata and controls
46 lines (46 loc) · 898 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
38
39
40
41
42
43
44
45
46
{
"users": [
{
"id": "1",
"name": "John Doe",
"email": "test@test.com",
"password": "test123!"
},
{
"id": "2",
"name": "Jane Smith",
"email": "jane@example.com",
"password": "OMG123!"
}
],
"tasks": [
{
"userId": "1",
"id": "1",
"title": "Walk Dog",
"description": "Walk the dog around the block",
"done": false
},
{
"userId": "1",
"id": "2",
"title": "Second Task",
"description": "Do all the laundry fold and put away",
"done": false
},
{
"userId": "2",
"id": "3",
"title": "Homework",
"description": "Finsh homework that is due in class tomorrow",
"done": false
},
{
"userId": "2",
"id": "4",
"title": "Dinner",
"description": "Spaghetti and Meatballs",
"done": true
}
]
}