The home object

Required properties

ParameterTypeDescription
street1StringThe number and street of the home.
stateStringThe US state where the home is located. The value should be abbreviated.
Example: TX
postal_codeStringThe 5-digit postal code of the home.
Example: 76063

Optional properties

ParameterTypeDescription
cityStringThe city where the home is located.
bathsNumberThe number of baths inside the home. Any non-negative number divisible by 0.5 is accepted.
Example: 2.5
fireplacesNumberThe number of fireplaces inside the home. Any whole number (non-negative, no decimal) is accepted.
Example: 2
garagesNumberThe number of garages of the home. Any non-negative number divisible by 0.5 is accepted.
Example: 2.5
storiesNumberThe number of stories of the home. Any non-negative number divisible by 0.5 is accepted.
Example: 2.5
square_feetNumberThe size of the home in square feet. Any whole number (non-negative, no decimal) is accepted.
Example: 1200
roof_yearNumberThe year the roof of the home was built. Any whole number (non-negative, no decimal) is accepted.
Example: 2009
has_electric_heatingBooleanSet to true if the home has electric heating.
has_gas_heatingBooleanSet to true if the home has gas heating.
has_poolBooleanSet to true if the home has one or more swimming pool/s.
build_yearNumberThe year the home was built. Any whole number (non-negative, no decimal) is accepted.
Example: 2009
total_market_valueNumberThe 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
}
*The details in the example above are fictional. Any resemblance to an actual property is purely coincidental.