-
Notifications
You must be signed in to change notification settings - Fork 0
/
rentals.json
42 lines (40 loc) · 1.09 KB
/
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
34
35
36
37
38
39
40
41
42
{ "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"
}],
"announcements": [{
"sales": "Mike Teavee's half off",
"weather": "Cloudy Cold",
"news": "Things are happening"
}, {
"sales": "Red Cube rental for $100 a night",
"weather": "Frosty",
"news": "People landing on the moon"
}, {
"sales": "Violet's must rent now",
"weather": "Sunny day",
"news": "Flowers be bloomin"
}],
"cities": [{
"name": "Portland",
"country": "USA"
}, {
"name": "Seattle",
"country": "USA"
}]
}