Listing Property Type

listing_property_type [string]

Enum ValueEnum Descriptor
RENTALRental
LANDLand Lot
BUSINESS_OPPORTUNITYBusiness Opportunity
RESIDENTIAL_INCOMEResidential Income
RESIDENTIALResidential
RESIDENTIAL_LEASEResidential Lease
COMMERCIALCommercial
COMMERCIAL_FOR_LEASECommercial 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" } 
			]

    }
	]
}