-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
84 lines (84 loc) · 1.59 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
{
"reservations": [
{
"id": "1",
"userId": "1",
"serviceId": "1",
"reservationDateTime": "12/12/20; 11:30",
"reservationDuration": "60 min"
},
{
"id": "2",
"userId": "2",
"serviceId": "3",
"reservationDateTime": "30/01/20; 12:00",
"reservationDuration": "10 min"
},
{
"id": "3",
"userId": "1",
"serviceId": "2",
"reservationDateTime": "04/04/22; 08:00",
"reservationDuration": "60 min"
},
{
"userId": "1",
"serviceId": "4",
"reservationDateTime": "31/08/22; 19:00",
"reservationDuration": "180 min",
"id": "lcF-i1l"
},
{
"userId": "3",
"serviceId": "3",
"reservationDateTime": "04/04/22; 19:00",
"reservationDuration": "360 min",
"id": "Zq_icth"
},
{
"userId": "3",
"serviceId": "2",
"reservationDateTime": "20/12/21; 15:15",
"reservationDuration": "15 min",
"id": "sj1STvD"
}
],
"services": [
{
"id": "1",
"name": "Hair dye"
},
{
"id": "2",
"name": "Eye checkup"
},
{
"id": "3",
"name": "Birthday"
},
{
"id": "4",
"name": "Dinner"
}
],
"users": [
{
"id": "1",
"name": "Jussi",
"email": "[email protected]",
"password": "parmalat"
},
{
"id": "2",
"name": "Sampo",
"email": "[email protected]",
"password": "ErinPateSebu"
},
{
"id": "3",
"name": "Olli",
"email": "[email protected]",
"password": "caipirinha"
}
]
}