Immutable data about a place contact, including the full records of the parent place lineage and the primary contact for the place.

interface PlaceWithLineage {
    _id: string;
    _rev: string;
    contact?: NormalizedParent | PersonWithLineage;
    contact_type?: string;
    name?: string;
    parent?: NormalizedParent | PlaceWithLineage;
    place_id?: string;
    reported_date?: Date;
    type: string;
}

Hierarchy (view full)

Properties

_id: string
_rev: string
contact?: NormalizedParent | PersonWithLineage
contact_type?: string
name?: string
parent?: NormalizedParent | PlaceWithLineage
place_id?: string
reported_date?: Date
type: string