> ## Documentation Index
> Fetch the complete documentation index at: https://docs.goliathdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Parcel

> Legal and assessor-level data about a land parcel.

Used in: [Catalyst Property Event](/catalyst-event-webhooks) 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

```json theme={null}
{
  "apn": "000-FAKE-APN",
  "countyFips": "00000",
  "legalDescription": "LOT 1, BLOCK 1, FAKE SUBDIVISION",
  "lotSqFt": 6500,
  "lotAcres": 0.15,
  "zoningCode": "FAKE-R1"
}
```

## Notes

<Note>
  `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.
</Note>

<Note>
  `apn` format also varies by county. Some counties use dashes or spaces; others return a plain digit string. Normalize before storing or comparing.
</Note>
