Last active
November 26, 2022 14:28
-
-
Save sejidjorge/282ff53028a19630363752b41d3af4a1 to your computer and use it in GitHub Desktop.
tipos de imoveis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const property = [ | |
| { | |
| title: "Casa no centro", | |
| about: | |
| "Imóvel localizado em Itapoá próximo ao Farol, ponto turístico da cidade. Casa de madeira com dois quartos, banheiro, cozinha e garagem para dois carros cobertos e um amplo quintal á 100 metros da praia", | |
| tags: ["casa", "3 quartos", "condominio", "casa no centro"], | |
| images: [ | |
| { | |
| frontCover: true, | |
| url: "https://images.pexels.com/photos/14262218/pexels-photo-14262218.jpeg", | |
| }, | |
| { | |
| frontCover: false, | |
| url: "https://images.pexels.com/photos/14286903/pexels-photo-14286903.jpeg?auto=compress&cs=tinysrgb&w=600&lazy=load", | |
| }, | |
| ], | |
| typesProperty: [ | |
| "Apartamento", | |
| "Apartamento garden", | |
| "Área", | |
| "Casa", | |
| "Chácara", | |
| "Cobertura", | |
| "Flat", | |
| "Hotel", | |
| "Loft", | |
| "Loja", | |
| "Ponto", | |
| "Prédio", | |
| "Sala", | |
| "Sobrado", | |
| "Studio", | |
| "Terreno", | |
| ], | |
| address: { | |
| street: "Rua central", | |
| number: "12A", | |
| neighborhood: "centro", | |
| city: "São Paulo", | |
| state: "SP", | |
| }, | |
| price: 1, | |
| gatedComunity: true, | |
| bedroons: 2, | |
| suites: 1, | |
| bathrooms: 2, | |
| parkingSpace: 2, | |
| buildingArea: 300, | |
| landArea: 600, | |
| features: { | |
| acceptFinancing: true, | |
| acceptBarter: false, | |
| acceptPet: true, | |
| wineHouse: false, | |
| alarm: true, | |
| solarHeating: false, | |
| airConditioning: true, | |
| serviceArea: true, | |
| cabinetCloset: true, | |
| horseStall: true, | |
| maidsBathroom: true, | |
| shed: false, | |
| seaShore: false, | |
| footballField: false, | |
| goatFarming: false, | |
| carpet: true, | |
| settlersHouse: false, | |
| houseMade: false, | |
| fence: false, | |
| grill: true, | |
| screed: true, | |
| cup: true, | |
| corral: true, | |
| pantry: true, | |
| maidsDormitory: true, | |
| elevator: true, | |
| equinoculture: false, | |
| internalRoad: true, | |
| garageForMachinery: false, | |
| farm: false, | |
| whirlpool: false, | |
| lake: true, | |
| fireplace: false, | |
| toilet: false, | |
| laundry: false, | |
| coastal: false, | |
| hose: false, | |
| mezzanine: false, | |
| furnished: false, | |
| sheepFarming: false, | |
| pasture: false, | |
| footOnTheSand: false, | |
| Livestock: false, | |
| Pisciculture: false, | |
| Pool: false, | |
| ceramicFloor: false, | |
| burntCementFloor: false, | |
| graniteFloor: false, | |
| marbleFloor: false, | |
| plankFloor: false, | |
| laminateFlooring: false, | |
| artesianWell: false, | |
| orchard: false, | |
| porcelainTile: false, | |
| electronicGate: false, | |
| multiSportCourt: false, | |
| yard: false, | |
| bBalcony: false, | |
| fitnessRoom: false, | |
| partyRoom: false, | |
| steamRoom: false, | |
| noCondo: false, | |
| solarium: false, | |
| woodenBat: false, | |
| fishTank: false, | |
| balcony: false, | |
| gourmetBalcony: false, | |
| seaView: false, | |
| }, | |
| }, | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment