listing_property_type [string]
Enum Value | Enum Descriptor |
---|---|
RENTAL | Rental |
LAND | Land Lot |
BUSINESS_OPPORTUNITY | Business Opportunity |
RESIDENTIAL_INCOME | Residential Income |
RESIDENTIAL | Residential |
RESIDENTIAL_LEASE | Residential Lease |
COMMERCIAL | Commercial |
COMMERCIAL_FOR_LEASE | Commercial for Lease |
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" }
]
}
]
}