-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdb.json
67 lines (67 loc) · 1.07 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
{
"users": [
{
"username": "jo",
"email": "[email protected]",
"password": "jo",
"id": 1
},
{
"username": "tu",
"email": "[email protected]",
"password": "tu",
"id": 2
},
{
"username": "userA",
"email": "[email protected]",
"password": "userA",
"id": 3
},
{
"username": "userB",
"email": "[email protected]",
"password": "userB",
"id": 4
}
],
"orders": [
{
"id": 1,
"userId": 1,
"description": "One order"
},
{
"id": 2,
"userId": 1,
"description": "Another order"
},
{
"id": 3,
"userId": 1,
"description": "More orders"
},
{
"id": 4,
"userId": 2,
"description": "My order"
},
{
"id": 5,
"userId": 3,
"description": "My other order"
}
],
"files": [
{
"id": 1,
"userId": 1,
"filename": "json_logo.png"
},
{
"filename": "ac793700f322a3760ebfffc88cf76af3.jpeg",
"userId": 2,
"id": 2
}
]
}