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:

1{
2 "filters": {
3 "unit_mix": {
4 "overall": {
5 "rent_per_sqft": {
6 "min": 2.5,
7 "max": 3.5,
8 }
9 },
10 }
11 }
12}

You can also filter by specific unit types:

1{
2 "filters": {
3 "unit_mix": {
4 "studio": {
5 "number_units": {
6 "min": 10
7 },
8 "rent": {
9 "max": 1500
10 }
11 },
12 "one_bedroom": {
13 "number_units": {
14 "min": 10
15 },
16 "sqft": {
17 "min": 600
18 }
19 }
20 }
21 }
22}