-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhotels.json
More file actions
70 lines (70 loc) · 1.75 KB
/
hotels.json
File metadata and controls
70 lines (70 loc) · 1.75 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
65
66
67
68
69
70
{
"hotels": [
{
"id":1,
"name": "Media One Hotel",
"price": 102.2,
"city": "dubai",
"availability": [
{ "from": "10-10-2020", "to": "15-10-2020" },
{ "from": "25-10-2020", "to": "15-11-2020" },
{ "from": "10-12-2020", "to": "15-12-2020" }
]
},
{
"id":2,
"name": "Rotana Hotel",
"price": 80.6,
"city": "cairo",
"availability": [
{ "from": "10-10-2020", "to": "12-10-2020" },
{ "from": "25-10-2020", "to": "10-11-2020" },
{ "from": "05-12-2020", "to": "18-12-2020" }
]
},
{
"id":3,
"name": "Le Meridien",
"price": 89.6,
"city": "london",
"availability": [
{ "from": "01-10-2020", "to": "12-10-2020" },
{ "from": "05-10-2020", "to": "10-11-2020" },
{ "from": "05-12-2020", "to": "28-12-2020" }
]
},
{
"id":4,
"name": "Golden Tulip",
"price": 109.6,
"city": "paris",
"availability": [
{ "from": "04-10-2020", "to": "17-10-2020" },
{ "from": "16-10-2020", "to": "11-11-2020" },
{ "from": "01-12-2020", "to": "09-12-2020" }
]
},
{
"id":5,
"name": "Novotel Hotel",
"price": 111,
"city": "Vienna",
"availability": [
{ "from": "20-10-2020", "to": "28-10-2020" },
{ "from": "04-11-2020", "to": "20-11-2020" },
{ "from": "08-12-2020", "to": "24-12-2020" }
]
},
{
"id":6,
"name": "Concorde Hotel",
"price": 79.4,
"city": "Manila",
"availability": [
{ "from": "10-10-2020", "to": "19-10-2020" },
{ "from": "22-10-2020", "to": "22-11-2020" },
{ "from": "03-12-2020", "to": "20-12-2020" }
]
}
]
}