Used in: Catalyst Property Event via property.parcel
Fields
| Field | Type | Description |
|---|
apn | string | Assessor Parcel Number |
countyFips | string | County FIPS code |
legalDescription | string | Legal description of the parcel |
lotSqFt | number | Lot size in square feet |
lotAcres | number | Lot size in acres |
zoningCode | string | Zoning designation |
Example
{
"apn": "000-FAKE-APN",
"countyFips": "00000",
"legalDescription": "LOT 1, BLOCK 1, FAKE SUBDIVISION",
"lotSqFt": 6500,
"lotAcres": 0.15,
"zoningCode": "FAKE-R1"
}
Notes
legalDescription is a free-text string sourced directly from county recorder data. The format varies significantly by county — do not rely on parsing it programmatically.
apn format also varies by county. Some counties use dashes or spaces; others return a plain digit string. Normalize before storing or comparing.