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;
    readonly [key: string]: DataValue;
}

Hierarchy (View Summary)

Indexable

  • readonly [key: string]: DataValue

Properties

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