Skip to main content
Used in: Catalyst Property Event via property.owners[]

Fields

FieldTypeDescription
typestringperson or entity
namestringOwner name (lowercased)
nameOnDeedbooleanWhether this person is listed on the deed
skipTraceSkipTraceDirect contact data for this owner

Example

{
  "type": "person",
  "name": "john doe",
  "nameOnDeed": true,
  "skipTrace": {
    "phones": [
      { "number": "5550000001", "type": "Mobile", "ranking": 1 },
      { "number": "5550000002", "type": "Residential", "ranking": 2 }
    ],
    "emails": [
      { "email": "john.doe@example.com", "ranking": 1 },
      { "email": "jd@example.com", "ranking": 2 }
    ]
  }
}

Notes

name is returned in lowercase. Normalize it before displaying in a UI or writing to a CRM:
const display = owner.name.replace(/\b\w/g, c => c.toUpperCase());
// "john doe" → "John Doe"
For a broader people graph that includes relatives, see SkipTraceResult. The owners array contains only the known property owners.