forked from typicode/demo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdb.json
22 lines (22 loc) · 1.06 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
{
"users": [
{ "id": 1, "name": "frank06" },
{ "id": 2, "name": "winchester" }
],
"tasks": [
{ "id": 1, "title": "Laundry 🧺", "completed": false, "userId": 1 },
{ "id": 2, "title": "Groceries 🛒", "completed": true, "userId": 1 },
{ "id": 3, "title": "Reservation at Malloys", "completed": true, "userId": 1 },
{ "id": 4, "title": "Clean pool 🏊♂️", "completed": false, "userId": 2 },
{ "id": 5, "title": "Buy bitcoin", "completed": false, "userId": 2 },
{ "id": 6, "title": "Fix shed", "completed": true, "userId": 2 },
{ "id": 7, "title": "Take Amanda to birthday", "completed": true, "userId": 1 },
{ "id": 8, "title": "Get new surfboard 🏄♀️", "completed": false, "userId": 1 },
{ "id": 9, "title": "Take out trash 🗑", "completed": false, "userId": 2 },
{ "id": 10, "title": "Protest tyrannical mandates 👊", "completed": true, "userId": 1 }
],
"todos": [
{ "id": 1, "title": "Todo 1", "completed": false, "userId": 1 },
{ "id": 2, "title": "Todo 2", "completed": true, "userId": 1 }
]
}