Real Estate Address Object
Represents the address fields for a real estate property.
| Parameter | Description |
|---|---|
line1 string, nullable | Primary address line (e.g., street name). |
line2 string, nullable | Secondary address info (e.g., unit number). |
city string | City name (required). |
postalCode string | Postal code (required). |
parcelNumber string, nullable | Parcel number (required if both line1 and line2 are omitted). |
cadastralArea string, nullable | Cadastral area (required if both line1 and line2 are omitted). |
Validation Notes
- city and postalCode must always be provided.
- If
line1andline2are omitted, you must supply bothparcelNumberandcadastralArea.