-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
117 lines (117 loc) · 2.71 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
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
{
"cars": [
{
"id": 1,
"brand": "Ferrari",
"brandLogo": "https://i.ibb.co/swjw4B6/logo.png",
"model": "California",
"thumbnail": "https://i.ibb.co/jkVWcTH/lateral.png",
"rent": {
"price": 725,
"period": "day"
},
"colors": [
{
"color": "Red",
"image": "https://i.ibb.co/MpL04Td/01.png"
},
{
"color": "White",
"image": "https://i.ibb.co/QQ8MmVt/02.png"
},
{
"color": "Black",
"image": "https://i.ibb.co/fQ2Zkdv/03.png"
}
]
},
{
"id": 2,
"brand": "Lamborghini",
"brandLogo": "https://i.ibb.co/PQ2G9c2/logo.png",
"model": "Aventador",
"thumbnail": "https://i.ibb.co/0XtCgJ3/lateral.png",
"rent": {
"price": 750,
"period": "day"
},
"colors": [
{
"color": "Blue",
"image": "https://i.ibb.co/kGzgvpz/01.png"
},
{
"color": "White",
"image": "https://i.ibb.co/b27V9jG/02.png"
},
{
"color": "Orange",
"image": "https://i.ibb.co/ZTqDwMy/03.png"
}
]
},
{
"id": 3,
"brand": "Mustang",
"brandLogo": "https://i.ibb.co/BT6mrDH/mustang-logo.png",
"model": "Shelby GT500",
"thumbnail": "https://i.ibb.co/ww19VSS/mustang-lateral.png",
"rent": {
"price": 610,
"period": "day"
},
"colors": [
{
"color": "Red",
"image": "https://i.ibb.co/3CrZNxv/mustang-red.png"
}
]
},
{
"id": 4,
"brand": "Porsche",
"brandLogo": "https://i.ibb.co/W258kgD/logo.png",
"model": "Macan Turbo",
"thumbnail": "https://i.ibb.co/GvLDs2r/lateral.png",
"rent": {
"price": 505,
"period": "day"
},
"colors": [
{
"color": "White",
"image": "https://i.ibb.co/r24dT50/01.png"
},
{
"color": "Blue",
"image": "https://i.ibb.co/CHTr0fY/02.png"
},
{
"color": "Black",
"image": "https://i.ibb.co/jzKdnPV/03.png"
}
]
},
{
"id": 5,
"brand": "Chevrolet",
"brandLogo": "https://i.ibb.co/gmQhqCZ/chevrolet-logo.png",
"model": "Camaro",
"thumbnail": "https://i.ibb.co/5x5bqF9/camaro-lateral.png",
"rent": {
"price": 640,
"period": "day"
},
"colors": [
{
"color": "Yellow",
"image": "https://i.ibb.co/fv8nKPc/camaro-yellow.png"
},
{
"color": "Red",
"image": "https://i.ibb.co/W2CzDvs/camaro-red.png"
}
]
}
]
}