listing_property_type [string]
| Enum Value | Enum Descriptor |
|---|---|
| RENTAL | Rental |
| RESIDENTIAL_LEASE | Residential Lease |
| RESIDENTIAL_INCOME | Residential Income |
| RESIDENTIAL | Residential |
| LAND | Land |
| BUSINESS_OPPORTUNITY | Business Opportunity |
| COMMERCIAL_FOR_LEASE | Commercial For Lease |
| COMMERCIAL | Commercial |
| FARM | Farm |
| MANUFACTURED_IN_PARK | Manufactured In Park |
Fully Excluding Rentals
{
"city": "Richmond",
"state": "VA",
"active": true,
"exclude": [
{ "listing_property_type": "RENTAL" },
{ "listing_property_type": "RESIDENTIAL_LEASE" }
]
}
Get Commercial & Commercial for Lease
{
"city": "Richmond",
"state": "VA",
"active": true,
"and": [
{
"or": [
{ "listing_property_type": "COMMERCIAL" },
{ "listing_property_type": "COMMERCIAL_FOR_LEASE" }
]
}
]
}