-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrentals.json
33 lines (33 loc) · 852 Bytes
/
rentals.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
{
"rentals":[
{
"owner": "Veruca Salt",
"city": "San Francisco",
"type": "Estate",
"bedrooms": 15,
"image": "https://upload.wikimedia.org/wikipedia/commons/c/cb/Crane_estate_(5).jpg"
},
{
"owner": "Mike Teavee",
"city": "Seattle",
"type": "Condo",
"bedrooms": 1,
"image": "https://upload.wikimedia.org/wikipedia/commons/0/0e/Alfonso_13_Highrise_Tegucigalpa.jpg"
},
{
"owner": "Violet Beauregarde",
"city": "Portland",
"type": "Apartment",
"bedrooms": 3,
"image": "https://upload.wikimedia.org/wikipedia/commons/f/f7/Wheeldon_Apartment_Building_-_Portland_Oregon.jpg"
}],
"reviews": [{
"author": "Andrea",
"rating": 4,
"content": "Did not fall down."
}, {
"author": "Alex",
"rating": 9,
"content": "Nice view of the volcano!"
}]
}