-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
64 lines (64 loc) · 1.5 KB
/
db.json
File metadata and controls
64 lines (64 loc) · 1.5 KB
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
{
"reviews": [
{
"id": "2",
"review": "Good Accomodation",
"rating": "5",
"by": "Ashwin Gode"
},
{
"id": "3",
"review": "Staff treats guests as family",
"rating": "4",
"by": "Thalian"
},
{
"id": "4",
"review": "Best place to relax with family and friends",
"rating": "5",
"by": "Chigmu"
}
],
"hotelDEtails": [
{
"id": "2",
"hotelName": "Siera Resorts",
"address": "pennag street Mylasia",
"phone": "+06 989898989"
},
{
"id": "3",
"hotelName": "Deluxe Resorts",
"address": "Lucem street Mylasia",
"phone": "+06 989898989"
},
{
"id": "4",
"hotelName": "Savious Resorts",
"address": "Vandilla street Mylasia",
"phone": "+06 989898989"
}
],
"roomType": [
{
"id": "1",
"roomType": "Select Room Type"
},
{
"id": "2",
"roomType": "Deluxe Room"
},
{
"id": "3",
"roomType": "Premium Room"
},
{
"id": "4",
"roomType": "Royal Suite"
}
],
"users":[
{"id":"1", "username":"root","password":"toor"},
{"id":"2", "username":"parry","password":"jayzee"}
]
}