> ## 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.

# Property

> The full enriched property object tied to a Goliath webhook event.

Used in: [Catalyst Property Event](/catalyst-event)

## Fields

| Field              | Type                                            | Description                                 |
| ------------------ | ----------------------------------------------- | ------------------------------------------- |
| `url`              | string                                          | Direct link to view the property in Goliath |
| `address`          | string                                          | Full property address                       |
| `metrics`          | [PropertyMetrics](/types/property-metrics)      | Valuation and physical details              |
| `parcel`           | [Parcel](/types/parcel)                         | Legal and assessor data                     |
| `owners`           | [Owner\[\]](/types/owner)                       | Known owners with contact data              |
| `skipTraceResults` | [SkipTraceResult\[\]](/types/skip-trace-result) | Expanded people graph (owners + relatives)  |

## Example

```json theme={null}
{
  "url": "https://app.example.com/properties/123-main-st",
  "address": "123 MAIN ST, SPRINGFIELD, USA 00000",
  "metrics": { "...": "..." },
  "parcel": { "...": "..." },
  "owners": [],
  "skipTraceResults": []
}
```

## Notes

<Note>
  `owners` and `skipTraceResults` serve different purposes. `owners` contains the property's known owners with contact data attached. `skipTraceResults` is a broader people graph that may also include relatives. See [Owner](/types/owner) and [SkipTraceResult](/types/skip-trace-result) for details.
</Note>
