The propertyCategory filter is used to return property attributes which matches
classification derived from standardized land use code. Available values are:
| Input | Definition |
|---|---|
| C | COMMERCIAL |
| R | RESIDENTIAL |
| V | VACANT |
| X | OTHER |
Below is a sample query showing usage of the propertyCategory in propertyAttributes filter:
{
getById(id: "P00000I7PO0A", queryType: PRECISELY_ID) {
propertyAttributes(propertyCategory: "C") {
data {
propertyCategory {
value
description
}
}
}
}
}