-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
178 lines (178 loc) · 4.4 KB
/
Copy pathdb.json
File metadata and controls
178 lines (178 loc) · 4.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"users": [
{
"id": "1",
"name": "Alice Johnson",
"email": "alice@example.com",
"password": "alice123",
"isAdmin": false
},
{
"id": "2",
"name": "Bob Smith",
"email": "bob@example.com",
"password": "bobpass",
"isAdmin": true
},
{
"id": "3",
"name": "Clara Brown",
"email": "clara@example.com",
"password": "clara321",
"isAdmin": false
},
{
"id": "4",
"name": "David Wilson",
"email": "david@example.com",
"password": "davidpass",
"isAdmin": false
}
],
"trips": [
{
"id": "1",
"name": "Paris City Tour",
"destination": "Paris, France",
"startDate": "2026-03-15",
"endDate": "2026-03-20",
"price": 1500,
"description": "Explore the Eiffel Tower, Louvre Museum, and Seine river cruise.",
"image": "https://picsum.photos/id/1011/400/200"
},
{
"id": "2",
"name": "London Highlights",
"destination": "London, UK",
"startDate": "2026-04-01",
"endDate": "2026-04-06",
"price": 1400,
"description": "Visit Big Ben, London Eye, and British Museum.",
"image": "https://picsum.photos/id/1015/400/200"
},
{
"id": "3",
"name": "Rome & Vatican",
"destination": "Rome, Italy",
"startDate": "2026-04-15",
"endDate": "2026-04-20",
"price": 1600,
"description": "Tour the Colosseum, Vatican City, and Sistine Chapel.",
"image": "https://picsum.photos/id/1021/400/200"
},
{
"id": "4",
"name": "Barcelona & Beaches",
"destination": "Barcelona, Spain",
"startDate": "2026-05-05",
"endDate": "2026-05-10",
"price": 1550,
"description": "Enjoy Gaudi architecture, La Rambla, and Mediterranean beaches.",
"image": "https://picsum.photos/id/1025/400/200"
},
{
"id": "5",
"name": "Amsterdam Canals",
"destination": "Amsterdam, Netherlands",
"startDate": "2026-05-20",
"endDate": "2026-05-25",
"price": 1300,
"description": "Canal cruises, Van Gogh Museum, and local markets.",
"image": "https://picsum.photos/id/1031/400/200"
},
{
"id": "6",
"name": "Prague Old Town",
"destination": "Prague, Czech Republic",
"startDate": "2026-06-01",
"endDate": "2026-06-06",
"price": 1350,
"description": "Charles Bridge, Old Town Square, and Prague Castle.",
"image": "https://picsum.photos/id/1035/400/200"
},
{
"id": "7",
"name": "Vienna Culture Tour",
"destination": "Vienna, Austria",
"startDate": "2026-06-10",
"endDate": "2026-06-15",
"price": 1450,
"description": "Visit Schönbrunn Palace, State Opera, and MuseumsQuartier.",
"image": "https://picsum.photos/id/1038/400/200"
},
{
"id": "8",
"name": "Santorini Escape",
"destination": "Santorini, Greece",
"startDate": "2026-07-01",
"endDate": "2026-07-06",
"price": 1700,
"description": "Relax on volcanic beaches, explore Oia village and sunset cruises.",
"image": "https://picsum.photos/id/1041/400/200"
},
{
"id": "9",
"name": "Lisbon & Alfama",
"destination": "Lisbon, Portugal",
"startDate": "2026-07-15",
"endDate": "2026-07-20",
"price": 1400,
"description": "Historic trams, Alfama district, and local cuisine tours.",
"image": "https://picsum.photos/id/1045/400/200"
},
{
"id": "10",
"name": "Istanbul Wonders",
"destination": "Istanbul, Turkey",
"startDate": "2026-08-01",
"endDate": "2026-08-06",
"price": 1500,
"description": "Hagia Sophia, Blue Mosque, and Bosphorus cruise.",
"image": "https://picsum.photos/id/1049/400/200"
}
],
"bookings": [
{
"id": "1",
"tripId": 1,
"userId": 1,
"people": 2
},
{
"id": "2",
"tripId": 2,
"userId": 3,
"people": 1
},
{
"id": "3",
"tripId": 3,
"userId": 1,
"people": 3
},
{
"id": "4",
"tripId": 5,
"userId": 4,
"people": 2
},
{
"id": "5",
"tripId": 8,
"userId": 3,
"people": 1
},
{
"id": "6",
"tripId": 10,
"userId": 1,
"people": 2
},
{
"id": "7",
"tripId": 1,
"userId": 1,
"people": 3
}
]
}