-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcars.xml
129 lines (129 loc) · 3.3 KB
/
cars.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<Hertz-UTS>
<Sedan>
<car id="1001">
<category>sedan</category>
<availability>False</availability>
<brand>Hyundai</brand>
<model>Sonata</model>
<model_year>2013</model_year>
<mileage>77892</mileage>
<fuel_type>petrol</fuel_type>
<seats>5</seats>
<price_per_day>120</price_per_day>
<description></description>
</car>
<car id="1002">
<category>sedan</category>
<availability>False</availability>
<brand>Volkswagen</brand>
<model>Golf</model>
<model_year>2015</model_year>
<mileage>25321</mileage>
<fuel_type>petrol</fuel_type>
<seats>5</seats>
<price_per_day>210</price_per_day>
<description></description>
</car>
<car id="1003">
<category>sedan</category>
<availability>False</availability>
<brand>Honda</brand>
<model>Civic</model>
<model_year>2017</model_year>
<mileage>20130</mileage>
<fuel_type>petrol</fuel_type>
<seats>5</seats>
<price_per_day>180</price_per_day>
<description></description>
</car>
<car id="1004">
<category>sedan</category>
<availability>True</availability>
<brand>Toyota</brand>
<model>Camry</model>
<model_year>2018</model_year>
<mileage>18930</mileage>
<fuel_type>petrol</fuel_type>
<seats>5</seats>
<price_per_day>150</price_per_day>
<description></description>
</car>
<car id="1005">
<category>sedan</category>
<availability>True</availability>
<brand>BMW</brand>
<model>320i</model>
<model_year>2019</model_year>
<mileage>4398</mileage>
<fuel_type>petrol</fuel_type>
<seats>5</seats>
<price_per_day>260</price_per_day>
<description></description>
</car>
</Sedan>
<Wagon>
<car id="2001">
<category>wagon</category>
<availability>True</availability>
<brand>Suzuki</brand>
<model>Jimny</model>
<model_year>2019</model_year>
<mileage>2001</mileage>
<fuel_type>diesel</fuel_type>
<seats>7</seats>
<price_per_day>140</price_per_day>
<description></description>
</car>
<car id="2002">
<category>wagon</category>
<availability>True</availability>
<brand>Holden</brand>
<model>Captiva</model>
<model_year>2018</model_year>
<mileage>6230</mileage>
<fuel_type>petrol</fuel_type>
<seats>7</seats>
<price_per_day>200</price_per_day>
<description></description>
</car>
</Wagon>
<SUV>
<car id="3001">
<category>suv</category>
<availability>True</availability>
<brand>Nissan</brand>
<model>X-trail</model>
<model_year>2016</model_year>
<mileage>27675</mileage>
<fuel_type>petrol</fuel_type>
<seats>7</seats>
<price_per_day>170</price_per_day>
<description></description>
</car>
<car id="3002">
<category>suv</category>
<availability>True</availability>
<brand>Mercedes-Benz</brand>
<model>GLC</model>
<model_year>2016</model_year>
<mileage>40436</mileage>
<fuel_type>petrol</fuel_type>
<seats>7</seats>
<price_per_day>280</price_per_day>
<description></description>
</car>
<car id="3003">
<category>suv</category>
<availability>True</availability>
<brand>Jeep</brand>
<model>Cherokee</model>
<model_year>2018</model_year>
<mileage>6481</mileage>
<fuel_type>petrol</fuel_type>
<seats>7</seats>
<price_per_day>230</price_per_day>
<description></description>
</car>
</SUV>
</Hertz-UTS>