Skip to content

Instantly share code, notes, and snippets.

@jtwray
Last active December 16, 2020 20:04
Show Gist options
  • Save jtwray/5cf1ff4b2ccdeefabd09f274f3a6e01e to your computer and use it in GitHub Desktop.
Save jtwray/5cf1ff4b2ccdeefabd09f274f3a6e01e to your computer and use it in GitHub Desktop.
writing thousand line for loop output to new file with promisify stream pipeline
{/**
code starts line 78
a little story telling for context
while mocking seeds for my Express API
I ran into 2 simliar common obstacles
-- several occasions where I didn't get the seed just right the first go around and needed to tweak a small part..of every seed
-- or I realized that my seed files were intertwined with foreign_keys and a change in one file meant i needed to update its related files to be accurate and realistic
it would be all the better if i made sure the listings_id pointed to an actual listing in the listings seedfile etc
-- I encountered a third subsequent obstacle while trying to [ctrl]+[d] through each listing (manually selecting the next instance and next instance... with hotkeys)
-- my computer couldnt remember it all
.
I dont have any external GPU or what have you but I do have 16gb of dual channel ram and it was still too much to do it all at once and even when i could get all 238 objects corrected by hand
copying and pasting was a nightmare.
the screen wasn't tall enough and trying to scroll ten pages while holding the mouse proved more trying that i imageined. oh and the bogging down thing again haha!
I wrote a for loop to do the repetitive part for me bringing my work down to one iteration
if only i could do away with the copy pasting
i scoured the interwebs and found a NODE pipeline
is this a way to write the changes into a new file one at at time as they happened? seems like it!
I found a [reference]("https://2ality.com/2019/11/nodejs-streams-async-iteration.html") to this in the depths of the interwebs and tweaked it to my usecase.
write a function or for loop to populate a const variable
create a new file to pass the results into
pass the results const and filepath into: writeIterableToFile(iterable,filepath)
writeIterableToFile function(1st,2nd)
plug in first parameter -- const holding transformed data ( example: removed all amenities objects into new array )
plug in second parameter -- a new empty file and it will be overwritten/filled with your data
a final most important step...
in the terminal:
->navigate to the directory of file with writeIterableToFile function
run this command subsittuing your file's name
```
node yourfilename.js
```
you should nearly instantly find 2 new files in your vscode with the desired content held neatly within
example use case:
-parses 5600+ lines of a single seedfile
-separates into two new seed files of 234 seed objects each,
./seeds/listings.jd and ./seeds/amenities.js
-- a final obstacle
when I opened my new files they were filled with "{object Object}","{object Object}","{object Object}","{object Object}","{object Object}".....
solution:
wrap the iterable parameter with JSON.stringify() when you pass it in
*/}
let newList=[]
let newAmenitiesTableList=[]
let listingsLen=listings.length
// shaping the single array of data into two distinct arrays
for (let idx=0;idx<234;idx++){
let listOBJ=listings[idx];
let newAOBJ={listing_id:listOBJ['id'],...listOBJ['amenities']};
newAmenitiesTableList.push(newAOBJ)
let{amenities,...listOBJ_noAmenities}=listOBJ;
newList.push(listOBJ_noAmenities);
}
//imports
const util=require("util")
const stream =require('stream') ;
const fs =require('fs');
const pipeline = util.promisify(stream.pipeline);
// the NODE streaming function
async function writeIterableToFile(iterable, filePath) {
const readable = stream.Readable.from(
iterable, {encoding: 'utf8'});
const writable = fs.createWriteStream(filePath);
await pipeline(readable, writable);
}
writeIterableToFile(
JSON.stringify(newAmenitiesTableList), 'newAmenities.js')
writeIterableToFile(
JSON.stringify(newList), 'newListings.js')
let listings=
[
{
id: 1,
title: "Lake Front Dream Escape",
price: "$98.13",
landowner_id: 28,
photo:"https://i.imgur.com/zmbaXFD.jpg",
address: {
address: "30 Memorial Drive",
city: "Avon",
state: "MA",
zip: "2322",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 2,
title: "Breathtaking Sunrises",
price: "$112.78",
landowner_id: 59,
photo: 'https://imgur.com/qgRYDex',
address: {
address: "250 Hartford Avenue",
city: "Bellingham",
state: "MA",
zip: "2019",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 3,
title: "Fresh Mountain Air",
price: "$161.84",
landowner_id: 25,
photo: "https://imgur.com/l94JiT9",
address: {
address: "700 Oak Street",
city: "Brockton",
state: "MA",
zip: "2301",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 4,
title: "Towering Forest Brimming with Wild Life",
price: "$92.17",
landowner_id: 30,
photo: "https://imgur.com/hCA9ZwX",
address: {
address: "66-4 Parkhurst Rd",
city: "Chelmsford",
state: "MA",
zip: "1824",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 5,
title: "Clifftop Views and Rolling Hills",
price: "$159.55",
landowner_id: 28,
photo: "https://imgur.com/pbUQXCF",
address: {
address: "591 Memorial Dr",
city: "Chicopee",
state: "MA",
zip: "1020",
},
amenities: {
guests: 5,
beds: 3,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: false,
shower: true,
firepit: false,
},
},
{
id: 6,
title: "Cabin Escape Just Above the Clouds",
price: "$216.31",
landowner_id: 39,
photo: "https://i.imgur.com/W1HFYfS.jpg",
address: {
address: "55 Brooksby Village Way",
city: "Danvers",
state: "MA",
zip: "1923",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 7,
title: "Wooded Wonderland Minutes from the Metro",
price: "$69.33",
landowner_id: 10,
photo: 'https://i.imgur.com/hCA9ZwX.jpg',
address: {
address: "137 Teaticket Hwy",
city: "East Falmouth",
state: "MA",
zip: "2536",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 8,
title: "Wilderness Vacation Miles from anyone",
price: "$169.22",
landowner_id: 81,
photo: 'https://i.imgur.com/oGncYsR.jpg',
address: {
address: "42 Fairhaven Commons Way",
city: "Fairhaven",
state: "MA",
zip: "2719",
},
amenities: {
guests: 12,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: true,
},
},
{
id: 9,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$218.02",
landowner_id: 87,
photo: "https://i.imgur.com/bMPEl58.jpg",
address: {
address: "374 William S Canning Blvd",
city: "Fall River",
state: "MA",
zip: "2721",
},
amenities: {
guests: 7,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 10,
title: "Four Wheel Drive Mud Retreat",
price: "$179.94",
landowner_id: 15,
photo: "https://i.imgur.com/jMozf8R.jpg",
address: {
address: "121 Worcester Rd",
city: "Framingham",
state: "MA",
zip: "1701",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 11,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$154.56",
landowner_id: 17,
photo: "https://i.imgur.com/1bC79NF.jpg",
address: {
address: "677 Timpany Blvd",
city: "Gardner",
state: "MA",
zip: "1440",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 12,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$129.62",
landowner_id: 69,
photo: "https://i.imgur.com/yhFYwHv.jpg",
address: {
address: "337 Russell St",
city: "Hadley",
state: "MA",
zip: "1035",
},
amenities: {
guests: 7,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 13,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$193.62",
landowner_id: 76,
photo: "https://i.imgur.com/ZwXXHZf.jpg",
address: {
address: "295 Plymouth Street",
city: "Halifax",
state: "MA",
zip: "2338",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 14,
title: "River Life at its Best",
price: "$137.42",
landowner_id: 65,
photo: 'https://i.imgur.com/27rhlxH.jpg',
address: {
address: "1775 Washington St",
city: "Hanover",
state: "MA",
zip: "2339",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 15,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$260.39",
landowner_id: 33,
photo: 'https://i.imgur.com/53oXIGq.jpg',
address: {
address: "280 Washington Street",
city: "Hudson",
state: "MA",
zip: "1749",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 16,
title: "Lake Front Dream Escape",
price: "$292.22",
landowner_id: 29,
photo: "https://i.imgur.com/SOamOMF.jpg",
address: {
address: "20 Soojian Dr",
city: "Leicester",
state: "MA",
zip: "1524",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 17,
title: "Breathtaking Sunrises",
price: "$247.49",
landowner_id: 32,
photo: "https://i.imgur.com/z5FnKQ0.jpg",
address: {
address: "11 Jungle Road",
city: "Leominster",
state: "MA",
zip: "1453",
},
amenities: {
guests: 7,
beds: 6,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: true,
},
},
{
id: 18,
title: "Fresh Mountain Air",
price: "$260.81",
landowner_id: 92,
photo: "https://i.imgur.com/fqkyi8O.jpg",
address: {
address: "301 Massachusetts Ave",
city: "Lunenburg",
state: "MA",
zip: "1462",
},
amenities: {
guests: 7,
beds: 6,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: true,
},
},
{
id: 19,
title: "Towering Forest Brimming with Wild Life",
price: "$186.82",
landowner_id: 66,
photo: "https://i.imgur.com/Zq6sanZ.jpg",
address: {
address: "780 Lynnway",
city: "Lynn",
state: "MA",
zip: "1905",
}, amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 20,
title: "Clifftop Views and Rolling Hills",
price: "$105.98",
landowner_id: 7,
photo: "https://i.imgur.com/gNtMkpU.jpg",
address: {
address: "70 Pleasant Valley Street",
city: "Methuen",
state: "MA",
zip: "1844",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 21,
title: "Cabin Escape Just Above the Clouds",
price: "$51.68",
landowner_id: 83,
photo: "https://i.imgur.com/QeuTMAd.png",
address: {
address: "830 Curran Memorial Hwy",
city: "North Adams",
state: "MA",
zip: "1247",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 22,
title: "Wooded Wonderland Minutes from the Metro",
price: "$191.58",
landowner_id: 93,
photo: "https://i.imgur.com/OWZxfJo.png",
address: {
address: "1470 S Washington St",
city: "North Attleboro",
state: "MA",
zip: "2760",
},
amenities: {
guests: 7,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 23,
title: "Wilderness Vacation Miles from anyone",
price: "$113.23",
landowner_id: 81,
photo: "https://i.imgur.com/AfAVj0R.png",
address: {
address: "506 State Road",
city: "North Dartmouth",
state: "MA",
zip: "2747",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 24,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$115.96",
landowner_id: 24,
photo: "https://i.imgur.com/VEyRRE1.png",
address: {
address: "742 Main Street",
city: "North Oxford",
state: "MA",
zip: "1537",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 25,
title: "Four Wheel Drive Mud Retreat",
price: "$147.91",
landowner_id: 53,
photo: "https://i.imgur.com/rhic9us.png",
address: {
address: "72 Main St",
city: "North Reading",
state: "MA",
zip: "1864",
},
amenities: {
guests: 7,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 26,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$127.90",
landowner_id: 49,
photo: "https://i.imgur.com/jvJILEi.png",
address: {
address: "200 Otis Street",
city: "Northborough",
state: "MA",
zip: "1532",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 27,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$257.76",
landowner_id: 7,
photo: "https://i.imgur.com/OlTKNPt.png",
address: {
address: "180 North King Street",
city: "Northhampton",
state: "MA",
zip: "1060",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 28,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$215.68",
landowner_id: 17,
photo: "https://i.imgur.com/VlWGiIe.png",
address: {
address: "555 East Main St",
city: "Orange",
state: "MA",
zip: "1364",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 29,
title: "River Life at its Best",
price: "$291.65",
landowner_id: 62,
photo: "https://i.imgur.com/wAlSXth.png",
address: {
address: "555 Hubbard Ave-Suite 12",
city: "Pittsfield",
state: "MA",
zip: "1201",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 30,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$50.63",
landowner_id: 73,
photo: "https://i.imgur.com/Y7pxAI8.png",
address: {
address: "300 Colony Place",
city: "Plymouth",
state: "MA",
zip: "2360",
},
amenities: {
guests: 12,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: true,
},
},
{
id: 31,
title: "Lake Front Dream Escape",
price: "$80.82",
landowner_id: 12,
photo: "https://i.imgur.com/U6oPRwj.png",
address: {
address: "301 Falls Blvd",
city: "Quincy",
state: "MA",
zip: "2169",
},
amenities:{
guests: 12,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: true,
},
},
{
id: 32,
title: "Breathtaking Sunrises",
price: "$176.52",
landowner_id: 71,
photo: "https://i.imgur.com/1yn4hYQ.png",
address: {
address: "36 Paramount Drive",
city: "Raynham",
state: "MA",
zip: "2767",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 33,
title: "Fresh Mountain Air",
price: "$78.10",
landowner_id: 53,
photo: "https://i.imgur.com/vXE4VRg.png",
address: {
address: "450 Highland Ave",
city: "Salem",
state: "MA",
zip: "1970",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 34,
title: "Towering Forest Brimming with Wild Life",
price: "$285.68",
landowner_id: 65,
photo: "https://i.imgur.com/FWGnQn6.png",
address: {
address: "1180 Fall River Avenue",
city: "Seekonk",
state: "MA",
zip: "2771",
},
amenities: {
guests: 12,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: true,
},
},
{
id: 35,
title: "Clifftop Views and Rolling Hills",
price: "$73.40",
landowner_id: 58,
photo: "https://i.imgur.com/pm4hjoP.png",
address: {
address: "1105 Boston Road",
city: "Springfield",
state: "MA",
zip: "1119",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 36,
title: "Cabin Escape Just Above the Clouds",
price: "$59.93",
landowner_id: 42,
photo: "https://i.imgur.com/avgI4NE.png",
address: {
address: "100 Charlton Road",
city: "Sturbridge",
state: "MA",
zip: "1566",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 37,
title: "Wooded Wonderland Minutes from the Metro",
price: "$191.49",
landowner_id: 6,
photo: "https://i.imgur.com/mEWaQ2o.png",
address: {
address: "262 Swansea Mall Dr",
city: "Swansea",
state: "MA",
zip: "2777",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 38,
title: "Wilderness Vacation Miles from anyone",
price: "$63.13",
landowner_id: 6,
photo: "https://i.imgur.com/WkMRLA9.png",
address: {
address: "333 Main Street",
city: "Tewksbury",
state: "MA",
zip: "1876",
},
amenities: {
guests: 3,
beds: 2,
bath: 3,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 39,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$141.37",
landowner_id: 61,
photo: "https://i.imgur.com/tXN6YmI.png",
address: {
address: "550 Providence Hwy",
city: "Walpole",
state: "MA",
zip: "2081",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 40,
title: "Four Wheel Drive Mud Retreat",
price: "$174.70",
landowner_id: 69,
photo: "https://i.imgur.com/oAVNf6n.png",
address: {
address: "352 Palmer Road",
city: "Ware",
state: "MA",
zip: "1082",
},
amenities: {
guests: 7,
beds: 6,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: true,
},
},
{
id: 41,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$291.83",
landowner_id: 86,
photo: "https://i.imgur.com/B208b09.png",
address: {
address: "3005 Cranberry Hwy Rt 6 28",
city: "Wareham",
state: "MA",
zip: "2538",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 42,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$236.90",
landowner_id: 3,
photo: "https://i.imgur.com/xx4cZRb.png",
address: {
address: "250 Rt 59",
city: "Airmont",
state: "NY",
zip: "10901",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 43,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$137.83",
landowner_id: 58,
photo: "https://i.imgur.com/whv3jtM.png",
address: {
address: "141 Washington Ave Extension",
city: "Albany",
state: "NY",
zip: "12205",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 44,
title: "River Life at its Best",
price: "$73.72",
landowner_id: 29,
photo: "https://i.imgur.com/BvlrxK3.png",
address: {
address: "13858 Rt 31 W",
city: "Albion",
state: "NY",
zip: "14411",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 45,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$52.34",
landowner_id: 6,
photo: "https://i.imgur.com/FZWis5M.png",
address: {
address: "2055 Niagara Falls Blvd",
city: "Amherst",
state: "NY",
zip: "14228",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 46,
title: "Lake Front Dream Escape",
price: "$146.33",
landowner_id: 72,
photo: "https://i.imgur.com/OiVtmvG.png",
address: {
address: "101 Sanford Farm Shpg Center",
city: "Amsterdam",
state: "NY",
zip: "12010",
},
amenities: {
guests: 5,
beds: 3,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: false,
shower: true,
firepit: false,
},
},
{
id: 47,
title: "Breathtaking Sunrises",
price: "$132.37",
landowner_id: 36,
photo: "https://i.imgur.com/DoNiQTJ.png",
address: {
address: "297 Grant Avenue",
city: "Auburn",
state: "NY",
zip: "13021",
},
amenities: {
guests: 7,
beds: 6,
bath: 2,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 48,
title: "Fresh Mountain Air",
price: "$282.81",
landowner_id: 26,
photo: "https://i.imgur.com/9wWTTgH.png",
address: {
address: "4133 Veterans Memorial Drive",
city: "Batavia",
state: "NY",
zip: "14020",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 49,
title: "Towering Forest Brimming with Wild Life",
price: "$149.84",
landowner_id: 82,
photo: "https://i.imgur.com/oal0A1B.png",
address: {
address: "6265 Brockport Spencerport Rd",
city: "Brockport",
state: "NY",
zip: "14420",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 50,
title: "Clifftop Views and Rolling Hills",
price: "$183.33",
landowner_id: 88,
photo: "https://i.imgur.com/PUI4rs8.png",
address: {
address: "5399 W Genesse St",
city: "Camillus",
state: "NY",
zip: "13031",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 51,
title: "Cabin Escape Just Above the Clouds",
price: "$77.58",
landowner_id: 80,
photo: "https://i.imgur.com/NAbRfc1.png",
address: {
address: "3191 County rd 10",
city: "Canandaigua",
state: "NY",
zip: "14424",
},
amenities: {
guests: 5,
beds: 4,
bath: 3,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 52,
title: "Wooded Wonderland Minutes from the Metro",
price: "$221.26",
landowner_id: 8,
photo: "https://i.imgur.com/syiM87E.png",
address: {
address: "30 Catskill",
city: "Catskill",
state: "NY",
zip: "12414",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 53,
title: "Wilderness Vacation Miles from anyone",
price: "$101.28",
landowner_id: 11,
photo: "https://i.imgur.com/GcGYxEz.png",
address: {
address: "161 Centereach Mall",
city: "Centereach",
state: "NY",
zip: "11720",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 54,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$123.55",
landowner_id: 62,
photo: "https://i.imgur.com/W8EPbaU.png",
address: {
address: "3018 East Ave",
city: "Central Square",
state: "NY",
zip: "13036",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 55,
title: "Four Wheel Drive Mud Retreat",
price: "$195.56",
landowner_id: 26,
photo: "https://i.imgur.com/ngLMMXm.png",
address: {
address: "100 Thruway Plaza",
city: "Cheektowaga",
state: "NY",
zip: "14225",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 56,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$122.73",
landowner_id: 85,
photo: "https://i.imgur.com/cAcpkMt.png",
address: {
address: "8064 Brewerton Rd",
city: "Cicero",
state: "NY",
zip: "13039",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 57,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$63.86",
landowner_id: 72,
photo: "https://i.imgur.com/cxcbiTF.png",
address: {
address: "5033 Transit Road",
city: "Clarence",
state: "NY",
zip: "14031",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 58,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$113.90",
landowner_id: 74,
photo: "https://i.imgur.com/qBWIokl.png",
address: {
address: "3949 Route 31",
city: "Clay",
state: "NY",
zip: "13041",
},
amenities: {
guests: 3,
beds: 2,
bath: 3,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 59,
title: "River Life at its Best",
price: "$112.63",
landowner_id: 4,
photo: "https://i.imgur.com/7yH4ksV.png",
address: {
address: "139 Merchant Place",
city: "Cobleskill",
state: "NY",
zip: "12043",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 60,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$237.02",
landowner_id: 47,
photo: "https://i.imgur.com/v4UVlvq.png",
address: {
address: "85 Crooked Hill Road",
city: "Commack",
state: "NY",
zip: "11725",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 61,
title: "Lake Front Dream Escape",
price: "$54.95",
landowner_id: 68,
photo: null,
address: {
address: "872 Route 13",
city: "Cortlandville",
state: "NY",
zip: "13045",
},
amenities: {
guests: 5,
beds: 4,
bath: 3,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 62,
title: "Breathtaking Sunrises",
price: "$83.02",
landowner_id: 98,
photo: null,
address: {
address: "279 Troy Road",
city: "East Greenbush",
state: "NY",
zip: "12061",
},
amenities: {
guests: 7,
beds: 6,
bath: 2,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 63,
title: "Fresh Mountain Air",
price: "$96.00",
landowner_id: 67,
photo: null,
address: {
address: "2465 Hempstead Turnpike",
city: "East Meadow",
state: "NY",
zip: "11554",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 64,
title: "Towering Forest Brimming with Wild Life",
price: "$102.41",
landowner_id: 19,
photo: null,
address: {
address: "6438 Basile Rowe",
city: "East Syracuse",
state: "NY",
zip: "13057",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 65,
title: "Clifftop Views and Rolling Hills",
price: "$170.65",
landowner_id: 62,
photo: null,
address: {
address: "25737 US Rt 11",
city: "Evans Mills",
state: "NY",
zip: "13637",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 66,
title: "Cabin Escape Just Above the Clouds",
price: "$113.69",
landowner_id: 19,
photo: null,
address: {
address: "901 Route 110",
city: "Farmingdale",
state: "NY",
zip: "11735",
},
amenities: {
guests: 14,
beds: 12,
bath: 3,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 67,
title: "Wooded Wonderland Minutes from the Metro",
price: "$137.45",
landowner_id: 82,
photo: null,
address: {
address: "2400 Route 9",
city: "Fishkill",
state: "NY",
zip: "12524",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 68,
title: "Wilderness Vacation Miles from anyone",
price: "$178.72",
landowner_id: 86,
photo: null,
address: {
address: "10401 Bennett Road",
city: "Fredonia",
state: "NY",
zip: "14063",
},
amenities: {
guests: 14,
beds: 12,
bath: 3,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 69,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$272.76",
landowner_id: 91,
photo: null,
address: {
address: "1818 State Route 3",
city: "Fulton",
state: "NY",
zip: "13069",
},
amenities: {
guests: 5,
beds: 3,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: false,
shower: true,
firepit: false,
},
},
{
id: 70,
title: "Four Wheel Drive Mud Retreat",
price: "$152.02",
landowner_id: 6,
photo: null,
address: {
address: "4300 Lakeville Road",
city: "Geneseo",
state: "NY",
zip: "14454",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 71,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$125.34",
landowner_id: 46,
photo: null,
address: {
address: "990 Route 5 20",
city: "Geneva",
state: "NY",
zip: "14456",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 72,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$206.78",
landowner_id: 65,
photo: null,
address: {
address: "311 RT 9W",
city: "Glenmont",
state: "NY",
zip: "12077",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 73,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$154.36",
landowner_id: 58,
photo: null,
address: {
address: "200 Dutch Meadows Ln",
city: "Glenville",
state: "NY",
zip: "12302",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 74,
title: "River Life at its Best",
price: "$248.41",
landowner_id: 81,
photo: null,
address: {
address: "100 Elm Ridge Center Dr",
city: "Greece",
state: "NY",
zip: "14626",
},
amenities: {
guests: 7,
beds: 6,
bath: 2,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 75,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$129.18",
landowner_id: 18,
photo: null,
address: {
address: "1549 Rt 9",
city: "Halfmoon",
state: "NY",
zip: "12065",
},
amenities: {
guests: 7,
beds: 6,
bath: 2,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 76,
title: "Lake Front Dream Escape",
price: "$168.18",
landowner_id: 59,
photo: null,
address: {
address: "5360 Southwestern Blvd",
city: "Hamburg",
state: "NY",
zip: "14075",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 77,
title: "Breathtaking Sunrises",
price: "$110.66",
landowner_id: 31,
photo: null,
address: {
address: "103 North Caroline St",
city: "Herkimer",
state: "NY",
zip: "13350",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 78,
title: "Fresh Mountain Air",
price: "$161.67",
landowner_id: 84,
photo: null,
address: {
address: "1000 State Route 36",
city: "Hornell",
state: "NY",
zip: "14843",
},
amenities: {
guests: 7,
beds: 6,
bath: 2,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 79,
title: "Towering Forest Brimming with Wild Life",
price: "$280.72",
landowner_id: 78,
photo: null,
address: {
address: "1400 County Rd 64",
city: "Horseheads",
state: "NY",
zip: "14845",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 80,
title: "Clifftop Views and Rolling Hills",
price: "$248.59",
landowner_id: 76,
photo: null,
address: {
address: "135 Fairgrounds Memorial Pkwy",
city: "Ithaca",
state: "NY",
zip: "14850",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 81,
title: "Cabin Escape Just Above the Clouds",
price: "$264.59",
landowner_id: 18,
photo: null,
address: {
address: "2 Gannett Dr",
city: "Johnson City",
state: "NY",
zip: "13790",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 82,
title: "Wooded Wonderland Minutes from the Metro",
price: "$194.69",
landowner_id: 40,
photo: null,
address: {
address: "233 5th Ave Ext",
city: "Johnstown",
state: "NY",
zip: "12095",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 83,
title: "Wilderness Vacation Miles from anyone",
price: "$50.66",
landowner_id: 37,
photo: null,
address: {
address: "601 Frank Stottile Blvd",
city: "Kingston",
state: "NY",
zip: "12401",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 84,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$292.61",
landowner_id: 85,
photo: null,
address: {
address: "350 E Fairmount Ave",
city: "Lakewood",
state: "NY",
zip: "14750",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 85,
title: "Four Wheel Drive Mud Retreat",
price: "$114.32",
landowner_id: 97,
photo: null,
address: {
address: "4975 Transit Rd",
city: "Lancaster",
state: "NY",
zip: "14086",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 86,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$91.74",
landowner_id: 100,
photo: null,
address: {
address: "579 Troy-Schenectady Road",
city: "Latham",
state: "NY",
zip: "12110",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 87,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$194.68",
landowner_id: 79,
photo: null,
address: {
address: "5783 So Transit Road",
city: "Lockport",
state: "NY",
zip: "14094",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 88,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$151.03",
landowner_id: 37,
photo: null,
address: {
address: "7155 State Rt 12 S",
city: "Lowville",
state: "NY",
zip: "13367",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 89,
title: "River Life at its Best",
price: "$88.63",
landowner_id: 12,
photo: null,
address: {
address: "425 Route 31",
city: "Macedon",
state: "NY",
zip: "14502",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 90,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$262.29",
landowner_id: 56,
photo: null,
address: {
address: "3222 State Rt 11",
city: "Malone",
state: "NY",
zip: "12953",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 91,
title: "Lake Front Dream Escape",
price: "$174.31",
landowner_id: 83,
photo: null,
address: {
address: "200 Sunrise Mall",
city: "Massapequa",
state: "NY",
zip: "11758",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 92,
title: "Breathtaking Sunrises",
price: "$183.75",
landowner_id: 8,
photo: null,
address: {
address: "43 Stephenville St",
city: "Massena",
state: "NY",
zip: "13662",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 93,
title: "Fresh Mountain Air",
price: "$176.82",
landowner_id: 47,
photo: null,
address: {
address: "750 Middle Country Road",
city: "Middle Island",
state: "NY",
zip: "11953",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 94,
title: "Towering Forest Brimming with Wild Life",
price: "$120.34",
landowner_id: 95,
photo: null,
address: {
address: "470 Route 211 East",
city: "Middletown",
state: "NY",
zip: "10940",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 95,
title: "Clifftop Views and Rolling Hills",
price: "$76.00",
landowner_id: 19,
photo: null,
address: {
address: "3133 E Main St",
city: "Mohegan Lake",
state: "NY",
zip: "10547",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 96,
title: "Cabin Escape Just Above the Clouds",
price: "$111.44",
landowner_id: 85,
photo: null,
address: {
address: "288 Larkin",
city: "Monroe",
state: "NY",
zip: "10950",
},
amenities: {
guests: 7,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 97,
title: "Wooded Wonderland Minutes from the Metro",
price: "$234.77",
landowner_id: 96,
photo: null,
address: {
address: "41 Anawana Lake Road",
city: "Monticello",
state: "NY",
zip: "12701",
},
amenities: {
guests: 5,
beds: 3,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: false,
shower: true,
firepit: false,
},
},
{
id: 98,
title: "Wilderness Vacation Miles from anyone",
price: "$180.67",
landowner_id: 16,
photo: null,
address: {
address: "4765 Commercial Drive",
city: "New Hartford",
state: "NY",
zip: "13413",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 99,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$279.14",
landowner_id: 8,
photo: null,
address: {
address: "1201 Rt 300",
city: "Newburgh",
state: "NY",
zip: "12550",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 100,
title: "Four Wheel Drive Mud Retreat",
price: "$290.48",
landowner_id: 70,
photo: null,
address: {
address: "255 W Main St",
city: "Avon",
state: "CT",
zip: "6001",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 101,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$102.29",
landowner_id: 66,
photo: null,
address: {
address: "120 Commercial Parkway",
city: "Branford",
state: "CT",
zip: "6405",
},
amenities: {
guests: 7,
beds: 6,
bath: 2,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 102,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$201.46",
landowner_id: 67,
photo: null,
address: {
address: "1400 Farmington Ave",
city: "Bristol",
state: "CT",
zip: "6010",
},
amenities: {
guests: 7,
beds: 6,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: true,
},
},
{
id: 103,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$67.39",
landowner_id: 26,
photo: null,
address: {
address: "161 Berlin Road",
city: "Cromwell",
state: "CT",
zip: "6416",
},
amenities: {
guests: 7,
beds: 6,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: true,
},
},
{
id: 104,
title: "River Life at its Best",
price: "$54.66",
landowner_id: 61,
photo: null,
address: {
address: "67 Newton Rd",
city: "Danbury",
state: "CT",
zip: "6810",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 105,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$191.85",
landowner_id: 8,
photo: null,
address: {
address: "656 New Haven Ave",
city: "Derby",
state: "CT",
zip: "6418",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 106,
title: "Lake Front Dream Escape",
price: "$197.40",
landowner_id: 79,
photo: null,
address: {
address: "69 Prospect Hill Road",
city: "East Windsor",
state: "CT",
zip: "6088",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 107,
title: "Breathtaking Sunrises",
price: "$206.23",
landowner_id: 13,
photo: null,
address: {
address: "150 Gold Star Hwy",
city: "Groton",
state: "CT",
zip: "6340",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 108,
title: "Fresh Mountain Air",
price: "$140.85",
landowner_id: 87,
photo: null,
address: {
address: "900 Boston Post Road",
city: "Guilford",
state: "CT",
zip: "6437",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 109,
title: "Towering Forest Brimming with Wild Life",
price: "$110.61",
landowner_id: 91,
photo: null,
address: {
address: "2300 Dixwell Ave",
city: "Hamden",
state: "CT",
zip: "6514",
},
amenities: {
guests: 3,
beds: 2,
bath: 3,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 110,
title: "Clifftop Views and Rolling Hills",
price: "$154.35",
landowner_id: 18,
photo: null,
address: {
address: "495 Flatbush Ave",
city: "Hartford",
state: "CT",
zip: "6106",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 111,
title: "Cabin Escape Just Above the Clouds",
price: "$230.72",
landowner_id: 37,
photo: null,
address: {
address: "180 River Rd",
city: "Lisbon",
state: "CT",
zip: "6351",
},
amenities: {
guests: 5,
beds: 4,
bath: 3,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 112,
title: "Wooded Wonderland Minutes from the Metro",
price: "$199.20",
landowner_id: 30,
photo: null,
address: {
address: "420 Buckland Hills Dr",
city: "Manchester",
state: "CT",
zip: "6040",
},
amenities: {
guests: 15,
beds: 11,
bath: 3,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 113,
title: "Wilderness Vacation Miles from anyone",
price: "$58.98",
landowner_id: 27,
photo: null,
address: {
address: "1365 Boston Post Road",
city: "Milford",
state: "CT",
zip: "6460",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 114,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$67.64",
landowner_id: 14,
photo: null,
address: {
address: "1100 New Haven Road",
city: "Naugatuck",
state: "CT",
zip: "6770",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 115,
title: "Four Wheel Drive Mud Retreat",
price: "$98.26",
landowner_id: 28,
photo: null,
address: {
address: "315 Foxon Blvd",
city: "New Haven",
state: "CT",
zip: "6513",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 116,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$133.04",
landowner_id: 36,
photo: null,
address: {
address: "164 Danbury Rd",
city: "New Milford",
state: "CT",
zip: "6776",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 117,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$108.11",
landowner_id: 55,
photo: null,
address: {
address: "3164 Berlin Turnpike",
city: "Newington",
state: "CT",
zip: "6111",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 118,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$50.36",
landowner_id: 29,
photo: null,
address: {
address: "474 Boston Post Road",
city: "North Windham",
state: "CT",
zip: "6256",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 119,
title: "River Life at its Best",
price: "$234.15",
landowner_id: 9,
photo: null,
address: {
address: "650 Main Ave",
city: "Norwalk",
state: "CT",
zip: "6851",
},
amenities: {
guests: 12,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: true,
},
},
{
id: 120,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$224.77",
landowner_id: 73,
photo: null,
address: {
address: "680 Connecticut Avenue",
city: "Norwalk",
state: "CT",
zip: "6854",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 121,
title: "Lake Front Dream Escape",
price: "$160.56",
landowner_id: 76,
photo: null,
address: {
address: "220 Salem Turnpike",
city: "Norwich",
state: "CT",
zip: "6360",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 122,
title: "Breathtaking Sunrises",
price: "$208.46",
landowner_id: 70,
photo: null,
address: {
address: "655 Boston Post Rd",
city: "Old Saybrook",
state: "CT",
zip: "6475",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 123,
title: "Fresh Mountain Air",
price: "$142.72",
landowner_id: 20,
photo: null,
address: {
address: "625 School Street",
city: "Putnam",
state: "CT",
zip: "6260",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 124,
title: "Towering Forest Brimming with Wild Life",
price: "$172.87",
landowner_id: 82,
photo: null,
address: {
address: "80 Town Line Rd",
city: "Rocky Hill",
state: "CT",
zip: "6067",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 125,
title: "Clifftop Views and Rolling Hills",
price: "$115.93",
landowner_id: 88,
photo: null,
address: {
address: "465 Bridgeport Avenue",
city: "Shelton",
state: "CT",
zip: "6484",
},
amenities: {
guests: 15,
beds: 11,
bath: 3,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 126,
title: "Cabin Escape Just Above the Clouds",
price: "$172.40",
landowner_id: 83,
photo: null,
address: {
address: "235 Queen St",
city: "Southington",
state: "CT",
zip: "6489",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 127,
title: "Wooded Wonderland Minutes from the Metro",
price: "$70.17",
landowner_id: 10,
photo: null,
address: {
address: "150 Barnum Avenue Cutoff",
city: "Stratford",
state: "CT",
zip: "6614",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 128,
title: "Wilderness Vacation Miles from anyone",
price: "$73.37",
landowner_id: 21,
photo: null,
address: {
address: "970 Torringford Street",
city: "Torrington",
state: "CT",
zip: "6790",
},
amenities: {
guests: 7,
beds: 6,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: true,
},
},
{
id: 129,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$162.78",
landowner_id: 39,
photo: null,
address: {
address: "844 No Colony Road",
city: "Wallingford",
state: "CT",
zip: "6492",
},
amenities: {
guests: 15,
beds: 11,
bath: 3,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 130,
title: "Four Wheel Drive Mud Retreat",
price: "$54.87",
landowner_id: 19,
photo: null,
address: {
address: "910 Wolcott St",
city: "Waterbury",
state: "CT",
zip: "6705",
},
amenities: {
guests: 3,
beds: 2,
bath: 3,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 131,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$233.71",
landowner_id: 27,
photo: null,
address: {
address: "155 Waterford Parkway No",
city: "Waterford",
state: "CT",
zip: "6385",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 132,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$293.52",
landowner_id: 30,
photo: null,
address: {
address: "515 Sawmill Road",
city: "West Haven",
state: "CT",
zip: "6516",
},
amenities: {
guests: 7,
beds: 6,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: true,
},
},
{
id: 133,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$54.42",
landowner_id: 89,
photo: null,
address: {
address: "2473 Hackworth Road",
city: "Adamsville",
state: "AL",
zip: "35005",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 134,
title: "River Life at its Best",
price: "$293.24",
landowner_id: 18,
photo: null,
address: {
address: "630 Coonial Promenade Pkwy",
city: "Alabaster",
state: "AL",
zip: "35007",
},
amenities: {
guests: 15,
beds: 11,
bath: 3,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 135,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$241.07",
landowner_id: 92,
photo: null,
address: {
address: "2643 Hwy 280 West",
city: "Alexander City",
state: "AL",
zip: "35010",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 136,
title: "Lake Front Dream Escape",
price: "$199.23",
landowner_id: 85,
photo: null,
address: {
address: "540 West Bypass",
city: "Andalusia",
state: "AL",
zip: "36420",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 137,
title: "Breathtaking Sunrises",
price: "$97.06",
landowner_id: 53,
photo: null,
address: {
address: "5560 Mcclellan Blvd",
city: "Anniston",
state: "AL",
zip: "36206",
},
amenities: {
guests: 5,
beds: 4,
bath: 3,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 138,
title: "Fresh Mountain Air",
price: "$190.93",
landowner_id: 14,
photo: null,
address: {
address: "1450 No Brindlee Mtn Pkwy",
city: "Arab",
state: "AL",
zip: "35016",
},
amenities: {
guests: 12,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: true,
},
},
{
id: 139,
title: "Towering Forest Brimming with Wild Life",
price: "$117.88",
landowner_id: 65,
photo: null,
address: {
address: "1011 US Hwy 72 East",
city: "Athens",
state: "AL",
zip: "35611",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 140,
title: "Clifftop Views and Rolling Hills",
price: "$140.43",
landowner_id: 58,
photo: null,
address: {
address: "973 Gilbert Ferry Road Se",
city: "Attalla",
state: "AL",
zip: "35954",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 141,
title: "Cabin Escape Just Above the Clouds",
price: "$253.05",
landowner_id: 71,
photo: null,
address: {
address: "1717 South College Street",
city: "Auburn",
state: "AL",
zip: "36830",
},
amenities: {
guests: 14,
beds: 12,
bath: 3,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 142,
title: "Wooded Wonderland Minutes from the Metro",
price: "$105.02",
landowner_id: 37,
photo: null,
address: {
address: "701 Mcmeans Ave",
city: "Bay Minette",
state: "AL",
zip: "36507",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 143,
title: "Wilderness Vacation Miles from anyone",
price: "$196.70",
landowner_id: 89,
photo: null,
address: {
address: "750 Academy Drive",
city: "Bessemer",
state: "AL",
zip: "35022",
},
amenities: {
guests: 5,
beds: 3,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: false,
shower: true,
firepit: false,
},
},
{
id: 144,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$201.53",
landowner_id: 79,
photo: null,
address: {
address: "312 Palisades Blvd",
city: "Birmingham",
state: "AL",
zip: "35209",
},
amenities: {
guests: 7,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 145,
title: "Four Wheel Drive Mud Retreat",
price: "$76.13",
landowner_id: 58,
photo: null,
address: {
address: "1600 Montclair Rd",
city: "Birmingham",
state: "AL",
zip: "35210",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 146,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$200.69",
landowner_id: 86,
photo: null,
address: {
address: "5919 Trussville Crossings Pkwy",
city: "Birmingham",
state: "AL",
zip: "35235",
},
amenities: {
guests: 7,
beds: 6,
bath: 2,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 147,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$223.46",
landowner_id: 31,
photo: null,
address: {
address: "9248 Parkway East",
city: "Birmingham",
state: "AL",
zip: "35206",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 148,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$96.95",
landowner_id: 51,
photo: null,
address: {
address: "1972 Hwy 431",
city: "Boaz",
state: "AL",
zip: "35957",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 149,
title: "River Life at its Best",
price: "$256.73",
landowner_id: 98,
photo: null,
address: {
address: "10675 Hwy 5",
city: "Brent",
state: "AL",
zip: "35034",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 150,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$171.11",
landowner_id: 99,
photo: null,
address: {
address: "2041 Douglas Avenue",
city: "Brewton",
state: "AL",
zip: "36426",
},
amenities: {
guests: 7,
beds: 6,
bath: 2,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 151,
title: "Lake Front Dream Escape",
price: "$75.95",
landowner_id: 15,
photo: null,
address: {
address: "5100 Hwy 31",
city: "Calera",
state: "AL",
zip: "35040",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 152,
title: "Breathtaking Sunrises",
price: "$267.47",
landowner_id: 100,
photo: null,
address: {
address: "1916 Center Point Rd",
city: "Center Point",
state: "AL",
zip: "35215",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 153,
title: "Fresh Mountain Air",
price: "$147.88",
landowner_id: 8,
photo: null,
address: {
address: "1950 W Main St",
city: "Centre",
state: "AL",
zip: "35960",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 154,
title: "Towering Forest Brimming with Wild Life",
price: "$176.51",
landowner_id: 60,
photo: null,
address: {
address: "16077 Highway 280",
city: "Chelsea",
state: "AL",
zip: "35043",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 155,
title: "Clifftop Views and Rolling Hills",
price: "$80.38",
landowner_id: 45,
photo: null,
address: {
address: "1415 7Th Street South",
city: "Clanton",
state: "AL",
zip: "35045",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 156,
title: "Cabin Escape Just Above the Clouds",
price: "$261.00",
landowner_id: 67,
photo: null,
address: {
address: "626 Olive Street Sw",
city: "Cullman",
state: "AL",
zip: "35055",
},
amenities: {
guests: 10,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: true,
},
},
{
id: 157,
title: "Wooded Wonderland Minutes from the Metro",
price: "$241.69",
landowner_id: 42,
photo: null,
address: {
address: "27520 Hwy 98",
city: "Daphne",
state: "AL",
zip: "36526",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 158,
title: "Wilderness Vacation Miles from anyone",
price: "$169.78",
landowner_id: 17,
photo: null,
address: {
address: "2800 Spring Avn SW",
city: "Decatur",
state: "AL",
zip: "35603",
},
amenities: {
guests: 14,
beds: 12,
bath: 3,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 159,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$86.76",
landowner_id: 85,
photo: null,
address: {
address: "969 Us Hwy 80 West",
city: "Demopolis",
state: "AL",
zip: "36732",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 160,
title: "Four Wheel Drive Mud Retreat",
price: "$282.65",
landowner_id: 58,
photo: null,
address: {
address: "3300 South Oates Street",
city: "Dothan",
state: "AL",
zip: "36301",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 161,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$136.82",
landowner_id: 38,
photo: null,
address: {
address: "4310 Montgomery Hwy",
city: "Dothan",
state: "AL",
zip: "36303",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 162,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$221.56",
landowner_id: 93,
photo: null,
address: {
address: "600 Boll Weevil Circle",
city: "Enterprise",
state: "AL",
zip: "36330",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 163,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$80.10",
landowner_id: 34,
photo: null,
address: {
address: "3176 South Eufaula Avenue",
city: "Eufaula",
state: "AL",
zip: "36027",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 164,
title: "River Life at its Best",
price: "$243.71",
landowner_id: 97,
photo: null,
address: {
address: "7100 Aaron Aronov Drive",
city: "Fairfield",
state: "AL",
zip: "35064",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 165,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$128.59",
landowner_id: 90,
photo: null,
address: {
address: "10040 County Road 48",
city: "Fairhope",
state: "AL",
zip: "36533",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 166,
title: "Lake Front Dream Escape",
price: "$64.52",
landowner_id: 55,
photo: null,
address: {
address: "3186 Hwy 171 North",
city: "Fayette",
state: "AL",
zip: "35555",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 167,
title: "Breathtaking Sunrises",
price: "$111.70",
landowner_id: 65,
photo: null,
address: {
address: "3100 Hough Rd",
city: "Florence",
state: "AL",
zip: "35630",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 168,
title: "Fresh Mountain Air",
price: "$57.38",
landowner_id: 81,
photo: null,
address: {
address: "2200 South Mckenzie St",
city: "Foley",
state: "AL",
zip: "36535",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 169,
title: "Towering Forest Brimming with Wild Life",
price: "$108.82",
landowner_id: 53,
photo: null,
address: {
address: "2001 Glenn Bldv Sw",
city: "Fort Payne",
state: "AL",
zip: "35968",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 170,
title: "Clifftop Views and Rolling Hills",
price: "$218.66",
landowner_id: 71,
photo: null,
address: {
address: "340 East Meighan Blvd",
city: "Gadsden",
state: "AL",
zip: "35903",
},
amenities: {
guests: 3,
beds: 2,
bath: 3,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 171,
title: "Cabin Escape Just Above the Clouds",
price: "$205.37",
landowner_id: 99,
photo: null,
address: {
address: "890 Odum Road",
city: "Gardendale",
state: "AL",
zip: "35071",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 172,
title: "Wooded Wonderland Minutes from the Metro",
price: "$258.75",
landowner_id: 52,
photo: null,
address: {
address: "1608 W Magnolia Ave",
city: "Geneva",
state: "AL",
zip: "36340",
},
amenities: {
guests: 7,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 173,
title: "Wilderness Vacation Miles from anyone",
price: "$83.07",
landowner_id: 84,
photo: null,
address: {
address: "501 Willow Lane",
city: "Greenville",
state: "AL",
zip: "36037",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 174,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$241.24",
landowner_id: 4,
photo: null,
address: {
address: "170 Fort Morgan Road",
city: "Gulf Shores",
state: "AL",
zip: "36542",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 175,
title: "Four Wheel Drive Mud Retreat",
price: "$68.60",
landowner_id: 26,
photo: null,
address: {
address: "11697 US Hwy 431",
city: "Guntersville",
state: "AL",
zip: "35976",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 176,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$179.36",
landowner_id: 3,
photo: null,
address: {
address: "42417 Hwy 195",
city: "Haleyville",
state: "AL",
zip: "35565",
},
amenities: {
guests: 7,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 177,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$176.40",
landowner_id: 17,
photo: null,
address: {
address: "1706 Military Street South",
city: "Hamilton",
state: "AL",
zip: "35570",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 178,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$102.80",
landowner_id: 79,
photo: null,
address: {
address: "1201 Hwy 31 NW",
city: "Hartselle",
state: "AL",
zip: "35640",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 179,
title: "River Life at its Best",
price: "$268.54",
landowner_id: 39,
photo: null,
address: {
address: "209 Lakeshore Parkway",
city: "Homewood",
state: "AL",
zip: "35209",
},
amenities: {
guests: 12,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: true,
},
},
{
id: 180,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$249.66",
landowner_id: 41,
photo: null,
address: {
address: "2780 John Hawkins Pkwy",
city: "Hoover",
state: "AL",
zip: "35244",
},
amenities: {
guests: 15,
beds: 11,
bath: 3,
wifi: false,
kitchen: true,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 181,
title: "Lake Front Dream Escape",
price: "$163.87",
landowner_id: 25,
photo: null,
address: {
address: "5335 Hwy 280 South",
city: "Hoover",
state: "AL",
zip: "35242",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 182,
title: "Breathtaking Sunrises",
price: "$81.15",
landowner_id: 92,
photo: null,
address: {
address: "1007 Red Farmer Drive",
city: "Hueytown",
state: "AL",
zip: "35023",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 183,
title: "Fresh Mountain Air",
price: "$281.08",
landowner_id: 46,
photo: null,
address: {
address: "2900 S Mem PkwyDrake Ave",
city: "Huntsville",
state: "AL",
zip: "35801",
},
amenities: {
guests: 14,
beds: 12,
bath: 3,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 184,
title: "Towering Forest Brimming with Wild Life",
price: "$278.23",
landowner_id: 87,
photo: null,
address: {
address: "11610 Memorial Pkwy South",
city: "Huntsville",
state: "AL",
zip: "35803",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 185,
title: "Clifftop Views and Rolling Hills",
price: "$262.95",
landowner_id: 93,
photo: null,
address: {
address: "2200 Sparkman Drive",
city: "Huntsville",
state: "AL",
zip: "35810",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 186,
title: "Cabin Escape Just Above the Clouds",
price: "$217.34",
landowner_id: 88,
photo: null,
address: {
address: "330 Sutton Rd",
city: "Huntsville",
state: "AL",
zip: "35763",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 187,
title: "Wooded Wonderland Minutes from the Metro",
price: "$154.04",
landowner_id: 94,
photo: null,
address: {
address: "6140A Univ Drive",
city: "Huntsville",
state: "AL",
zip: "35806",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 188,
title: "Wilderness Vacation Miles from anyone",
price: "$93.56",
landowner_id: 3,
photo: null,
address: {
address: "4206 N College Ave",
city: "Jackson",
state: "AL",
zip: "36545",
},
amenities: {
guests: 5,
beds: 4,
bath: 3,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 189,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$292.38",
landowner_id: 67,
photo: null,
address: {
address: "1625 Pelham South",
city: "Jacksonville",
state: "AL",
zip: "36265",
},
amenities: {
guests: 5,
beds: 3,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: false,
shower: true,
firepit: false,
},
},
{
id: 190,
title: "Four Wheel Drive Mud Retreat",
price: "$271.30",
landowner_id: 91,
photo: null,
address: {
address: "1801 Hwy 78 East",
city: "Jasper",
state: "AL",
zip: "35501",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 191,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$204.91",
landowner_id: 45,
photo: null,
address: {
address: "8551 Whitfield Ave",
city: "Leeds",
state: "AL",
zip: "35094",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 192,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$124.32",
landowner_id: 100,
photo: null,
address: {
address: "8650 Madison Blvd",
city: "Madison",
state: "AL",
zip: "35758",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 193,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$184.37",
landowner_id: 95,
photo: null,
address: {
address: "145 Kelley Blvd",
city: "Millbrook",
state: "AL",
zip: "36054",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 194,
title: "River Life at its Best",
price: "$58.08",
landowner_id: 54,
photo: null,
address: {
address: "1970 S University Blvd",
city: "Mobile",
state: "AL",
zip: "36609",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 195,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$275.93",
landowner_id: 85,
photo: null,
address: {
address: "6350 Cottage Hill Road",
city: "Mobile",
state: "AL",
zip: "36609",
},
amenities: {
guests: 12,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: true,
},
},
{
id: 196,
title: "Lake Front Dream Escape",
price: "$63.63",
landowner_id: 38,
photo: null,
address: {
address: "101 South Beltline Highway",
city: "Mobile",
state: "AL",
zip: "36606",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 197,
title: "Breathtaking Sunrises",
price: "$198.58",
landowner_id: 6,
photo: null,
address: {
address: "2500 Dawes Road",
city: "Mobile",
state: "AL",
zip: "36695",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 198,
title: "Fresh Mountain Air",
price: "$86.98",
landowner_id: 98,
photo: null,
address: {
address: "5245 Rangeline Service Rd",
city: "Mobile",
state: "AL",
zip: "36619",
},
amenities: {
guests: 5,
beds: 4,
bath: 3,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 199,
title: "Towering Forest Brimming with Wild Life",
price: "$245.07",
landowner_id: 69,
photo: null,
address: {
address: "685 Schillinger Rd",
city: "Mobile",
state: "AL",
zip: "36695",
},
amenities: {
guests: 5,
beds: 4,
bath: 3,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 200,
title: "Clifftop Views and Rolling Hills",
price: "$87.32",
landowner_id: 2,
photo: null,
address: {
address: "3371 S Alabama Ave",
city: "Monroeville",
state: "AL",
zip: "36460",
},
amenities: {
guests: 7,
beds: 6,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: true,
},
},
{
id: 201,
title: "Cabin Escape Just Above the Clouds",
price: "$183.59",
landowner_id: 99,
photo: null,
address: {
address: "10710 Chantilly Pkwy",
city: "Montgomery",
state: "AL",
zip: "36117",
},
amenities: {
guests: 7,
beds: 3,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 202,
title: "Wooded Wonderland Minutes from the Metro",
price: "$272.26",
landowner_id: 62,
photo: null,
address: {
address: "3801 Eastern Blvd",
city: "Montgomery",
state: "AL",
zip: "36116",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 203,
title: "Wilderness Vacation Miles from anyone",
price: "$178.41",
landowner_id: 14,
photo: null,
address: {
address: "6495 Atlanta Hwy",
city: "Montgomery",
state: "AL",
zip: "36117",
},
amenities: {
guests: 14,
beds: 12,
bath: 3,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 204,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$139.26",
landowner_id: 17,
photo: null,
address: {
address: "851 Ann St",
city: "Montgomery",
state: "AL",
zip: "36107",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 205,
title: "Four Wheel Drive Mud Retreat",
price: "$101.50",
landowner_id: 9,
photo: null,
address: {
address: "15445 Highway 24",
city: "Moulton",
state: "AL",
zip: "35650",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 206,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$286.55",
landowner_id: 77,
photo: null,
address: {
address: "517 West Avalon Ave",
city: "Muscle Shoals",
state: "AL",
zip: "35661",
},
amenities: {
guests: 14,
beds: 7,
bath: 3,
wifi: true,
kitchen: false,
heat: false,
water: false,
shower: true,
firepit: false,
},
},
{
id: 207,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$137.99",
landowner_id: 50,
photo: null,
address: {
address: "5710 Mcfarland Blvd",
city: "Northport",
state: "AL",
zip: "35476",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 208,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$159.14",
landowner_id: 56,
photo: null,
address: {
address: "2453 2Nd Avenue East",
city: "Oneonta",
state: "AL",
zip: "35121",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 209,
title: "River Life at its Best",
price: "$126.80",
landowner_id: 40,
photo: null,
address: {
address: "2900 Pepperrell Pkwy",
city: "Opelika",
state: "AL",
zip: "36801",
},
amenities: {
guests: 5,
beds: 4,
bath: 3,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 210,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$291.48",
landowner_id: 56,
photo: null,
address: {
address: "92 Plaza Lane",
city: "Oxford",
state: "AL",
zip: "36203",
},
amenities: {
guests: 6,
beds: 3,
bath: 3,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 211,
title: "Lake Front Dream Escape",
price: "$109.39",
landowner_id: 100,
photo: null,
address: {
address: "1537 Hwy 231 South",
city: "Ozark",
state: "AL",
zip: "36360",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 212,
title: "Breathtaking Sunrises",
price: "$259.78",
landowner_id: 19,
photo: null,
address: {
address: "2181 Pelham Pkwy",
city: "Pelham",
state: "AL",
zip: "35124",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 213,
title: "Fresh Mountain Air",
price: "$158.85",
landowner_id: 56,
photo: null,
address: {
address: "165 Vaughan Ln",
city: "Pell City",
state: "AL",
zip: "35125",
},
amenities: {
guests: 12,
beds: 2,
bath: 1,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: true,
},
},
{
id: 214,
title: "Towering Forest Brimming with Wild Life",
price: "$79.22",
landowner_id: 4,
photo: null,
address: {
address: "3700 Hwy 280-431 N",
city: "Phenix City",
state: "AL",
zip: "36867",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 215,
title: "Clifftop Views and Rolling Hills",
price: "$173.53",
landowner_id: 15,
photo: null,
address: {
address: "1903 Cobbs Ford Rd",
city: "Prattville",
state: "AL",
zip: "36066",
},
amenities: {
guests: 3,
beds: 3,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 216,
title: "Cabin Escape Just Above the Clouds",
price: "$268.30",
landowner_id: 95,
photo: null,
address: {
address: "4180 Us Hwy 431",
city: "Roanoke",
state: "AL",
zip: "36274",
},
amenities: {
guests: 10,
beds: 7,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 217,
title: "Wooded Wonderland Minutes from the Metro",
price: "$76.09",
landowner_id: 77,
photo: null,
address: {
address: "13675 Hwy 43",
city: "Russellville",
state: "AL",
zip: "35653",
},
amenities: {
guests: 3,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 218,
title: "Wilderness Vacation Miles from anyone",
price: "$199.43",
landowner_id: 79,
photo: null,
address: {
address: "1095 Industrial Pkwy",
city: "Saraland",
state: "AL",
zip: "36571",
},
amenities: {
guests: 7,
beds: 6,
bath: 3,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: true,
},
},
{
id: 219,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$56.04",
landowner_id: 36,
photo: null,
address: {
address: "24833 Johnt Reidprkw",
city: "Scottsboro",
state: "AL",
zip: "35768",
},
amenities: {
guests: 4,
beds: 4,
bath: 2,
wifi: true,
kitchen: true,
heat: true,
water: true,
shower: true,
firepit: false,
},
},
{
id: 220,
title: "Four Wheel Drive Mud Retreat",
price: "$74.62",
landowner_id: 10,
photo: null,
address: {
address: "1501 Hwy 14 East",
city: "Selma",
state: "AL",
zip: "36703",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 221,
title:
"Fresh Grown Fruit and Vegetables Mountain Hikes and Quiet Morning Coffees",
price: "$279.13",
landowner_id: 35,
photo: null,
address: {
address: "7855 Moffett Rd",
city: "Semmes",
state: "AL",
zip: "36575",
},
amenities: {
guests: 12,
beds: 5,
bath: 3,
wifi: false,
kitchen: false,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 222,
title: "Bird Watchers Paradise (Twitchers Welcome)",
price: "$266.05",
landowner_id: 83,
photo: null,
address: {
address: "150 Springville Station Blvd",
city: "Springville",
state: "AL",
zip: "35146",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 223,
title: "Wide Open Spaces Super TALL Blue Skies Fresh Air",
price: "$158.07",
landowner_id: 66,
photo: null,
address: {
address: "690 Hwy 78",
city: "Sumiton",
state: "AL",
zip: "35148",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 224,
title: "River Life at its Best",
price: "$173.25",
landowner_id: 98,
photo: null,
address: {
address: "41301 US Hwy 280",
city: "Sylacauga",
state: "AL",
zip: "35150",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 225,
title: "Whitewater Rapids Fresh Morning Brew",
price: "$279.73",
landowner_id: 78,
photo: null,
address: {
address: "214 Haynes Street",
city: "Talladega",
state: "AL",
zip: "35160",
},
amenities: {
guests: 7,
beds: 2,
bath: 2,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: true,
},
},
{
id: 226,
title: "Lake Front Dream Escape",
price: "$91.71",
landowner_id: 84,
photo: null,
address: {
address: "1300 Gilmer Ave",
city: "Tallassee",
state: "AL",
zip: "36078",
},
amenities: {
guests: 7,
beds: 6,
bath: 2,
wifi: false,
kitchen: true,
heat: false,
water: true,
shower: false,
firepit: false,
},
},
{
id: 227,
title: "Breathtaking Sunrises",
price: "$75.30",
landowner_id: 40,
photo: null,
address: {
address: "34301 Hwy 43",
city: "Thomasville",
state: "AL",
zip: "36784",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
{
id: 228,
title: "Fresh Mountain Air",
price: "$126.11",
landowner_id: 96,
photo: null,
address: {
address: "1420 Us 231 South",
city: "Troy",
state: "AL",
zip: "36081",
},
amenities: {
guests: 15,
beds: 9,
bath: 3,
wifi: true,
kitchen: true,
heat: false,
water: true,
shower: true,
firepit: false,
},
},
{
id: 229,
title: "Towering Forest Brimming with Wild Life",
price: "$276.50",
landowner_id: 21,
photo: null,
address: {
address: "1501 Skyland Blvd E",
city: "Tuscaloosa",
state: "AL",
zip: "35405",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 230,
title: "Clifftop Views and Rolling Hills",
price: "$199.10",
landowner_id: 2,
photo: null,
address: {
address: "3501 20th Av",
city: "Valley",
state: "AL",
zip: "36854",
},
amenities: {
guests: 6,
beds: 5,
bath: 2,
wifi: true,
kitchen: false,
heat: true,
water: true,
shower: false,
firepit: false,
},
},
{
id: 231,
title: "Cabin Escape Just Above the Clouds",
price: "$181.52",
landowner_id: 39,
photo: null,
address: {
address: "1300 Montgomery Highway",
city: "Vestavia Hills",
state: "AL",
zip: "35216",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 232,
title: "Wooded Wonderland Minutes from the Metro",
price: "$265.44",
landowner_id: 35,
photo: null,
address: {
address: "4538 Us Hwy 231",
city: "Wetumpka",
state: "AL",
zip: "36092",
},
amenities: {
guests: 5,
beds: 2,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: false,
firepit: false,
},
},
{
id: 233,
title: "Wilderness Vacation Miles from anyone",
price: "$240.03",
landowner_id: 64,
photo: null,
address: {
address: "2575 Us Hwy 43",
city: "Winfield",
state: "AL",
zip: "35594",
},
amenities: {
guests: 14,
beds: 8,
bath: 1,
wifi: false,
kitchen: true,
heat: true,
water: false,
shower: true,
firepit: true,
},
},
{
id: 234,
title: "Surfing Sand Dunes and Soaking up Sun Rays",
price: "$88.52",
landowner_id: 48,
photo: null,
address: {
address: "19 Costilla Blvd Lot 15",
city: "Alamosa",
state: "CO",
zip: "81101",
},
amenities: {
guests: 8,
beds: 7,
bath: 1,
wifi: false,
kitchen: false,
heat: true,
water: true,
shower: true,
firepit: true,
},
},
]
will be over written by the pipeline
will be overwritten by the pipeline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment