Improvement

Enhanced Regional Report Filters

  • Added comprehensive unit mix filtering capabilities to regional reports
  • Filter by unit count, square footage, rent, and rent per square foot for:
    • Overall property metrics
    • Individual unit types (studio, 1BR, 2BR, 3BR, 4BR)
  • Each filter supports:
    • Minimum and maximum values
    • Optional inclusion of properties with null values
  • Example: Filter for properties where 2BR units average between 800-1000 sqft and rent for $2000-2500 per month

Example Payloads:

{
"filters": {
"unit_mix": {
"overall": {
"rent_per_sqft": {
"min": 2.5,
"max": 3.5,
}
},
}
}
}

You can also filter by specific unit types:

{
"filters": {
"unit_mix": {
"studio": {
"number_units": {
"min": 10
},
"rent": {
"max": 1500
}
},
"one_bedroom": {
"number_units": {
"min": 10
},
"sqft": {
"min": 600
}
}
}
}
}