Listing Property Type

listing_property_type [string]

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

    }
	]
}