Real Estate Properties
Properties differ based on the real estate type.
Apartment
| Attribute | Description |
|---|---|
parkingCount number | Number of parking spaces |
garageCount number | Number of garages |
json
{
"parkingCount": 1,
"garageCount": 0
}Commercial
| Attribute | Description |
|---|---|
parkingCount number | Number of parking spaces |
garageCount number | Number of garages |
json
{
"parkingCount": 1,
"garageCount": 0
}Garage
No additional properties.
Use null or omit the properties field for garages.
House
| Attribute | Description |
|---|---|
parcelCount number | Number of parcels |
storeyCount number | Number of storeys |
otherBuildingCount number | Number of other buildings |
detachedGarageCount number | Number of detached garages |
json
{
"parcelCount": 1,
"storeyCount": 1,
"otherBuildingCount": 0,
"detachedGarageCount": 1
}Land
| Attribute | Description |
|---|---|
parcelCount number | Number of parcels |
json
{
"parcelCount": 0
}Recreational
| Attribute | Description |
|---|---|
storeyCount number | Number of storeys |
json
{
"storeyCount": 1
}Other
| Attribute | Description |
|---|---|
description string | Additional real estate info |
json
{
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
}