The home object
Required properties
Parameter | Type | Description |
---|---|---|
street1 | String | The number and street of the home. |
state | String | The US state where the home is located. The value should be abbreviated. Example: TX |
postal_code | String | The 5-digit postal code of the home. Example: 76063 |
Optional properties
Parameter | Type | Description |
---|---|---|
city | String | The city where the home is located. |
baths | Number | The number of baths inside the home. Any non-negative number divisible by 0.5 is accepted. Example: 2.5 |
fireplaces | Number | The number of fireplaces inside the home. Any whole number (non-negative, no decimal) is accepted. Example: 2 |
garages | Number | The number of garages of the home. Any non-negative number divisible by 0.5 is accepted. Example: 2.5 |
stories | Number | The number of stories of the home. Any non-negative number divisible by 0.5 is accepted. Example: 2.5 |
square_feet | Number | The size of the home in square feet. Any whole number (non-negative, no decimal) is accepted. Example: 1200 |
roof_year | Number | The year the roof of the home was built. Any whole number (non-negative, no decimal) is accepted. Example: 2009 |
has_electric_heating | Boolean | Set to true if the home has electric heating. |
has_gas_heating | Boolean | Set to true if the home has gas heating. |
has_pool | Boolean | Set to true if the home has one or more swimming pool/s. |
build_year | Number | The year the home was built. Any whole number (non-negative, no decimal) is accepted. Example: 2009 |
total_market_value | Number | The total market value of the home. Any whole number (non-negative, no decimal) is accepted. Example: 150000 |
Example
{
"street1": "6133 Flatley Heights",
"city": "Morissetteburgh",
"state": "NV",
"postal_code": "57461",
"baths": 3.5,
"fireplaces": 1,
"garages": 2,
"stories": 3,
"square_feet": 1191,
"roof_year": 2009,
"has_electric_heating": true,
"has_gas_heating": false,
"has_pool": true,
"build_year": 2009,
"total_market_value": 229965
}