Real Estate Object
Represents a single real estate property, always nested within a testimony.
Request Fields
| Attribute | Description |
|---|---|
type string, enum | Real estate type. Valid values: apartment, commercial, house, recreational, land, garage, other. |
properties object, nullable | Additional real estate properties (e.g., storey count, garage count). Required unless type is garage. See Real Estate Properties. |
address object, RealEstateAddress | Address details for the real estate. See Real Estate Address. |
region string, enum, optional, nullable | Slovak region code. Valid values: ba, bb, ke, nr, po, tn, tt, za. If omitted, the backend resolves it via geocoding. |
addressCoords object, Coords, optional, nullable | Latitude and longitude of the address. If provided, the backend skips forward geocoding. If omitted, the backend geocodes the address automatically. See Coords. |
userCoords object, Coords, optional, nullable | Latitude and longitude entered manually by the user. Required when no street address (line1/line2) and no addressCoords are provided. See Coords. |
Response Fields
| Attribute | Description |
|---|---|
type string, enum | Real estate type. Valid values: apartment, commercial, house, recreational, land, garage, other. |
region string, enum, nullable | Slovak region code. Populated by backend geocoding. Null only when all geocoding fails. |
properties object, nullable | Additional real estate properties (e.g., storey count, garage count). See Real Estate Properties. |
address object, RealEstateAddress | Address details for the real estate. See Real Estate Address. |
addressCoords object, Coords, nullable | Latitude and longitude derived from the address. Populated by backend geocoding. Null only when geocoding fails. See Coords. |
userCoords object, Coords, nullable | Latitude and longitude entered manually by the user. See Coords. |