Building Condition

Possible values for "building_condition": POOR, FAIR, GOOD,
EXCELLENT, UNSOUND, AVERAGE

{
  "city": "Richmond",
  "state": "VA",
  "building_condition": "GOOD"
}

If you want to bring back properties with any of building condition statuses you specify out of a list, you can use compound queries to accomplish this:

{
  "city": "Richmond",
  "state": "VA",
  "and": [
    { "or": [ { "building_condition": "GOOD" }, { "building_condition": "EXCELLENT" } ] }
  ]
}