/** * Row of the mv_ded_building_search materialized view - one building GID with everything the DeD * search endpoint needs: the weighted search vector, the normalised columns backing the trigram * match, the consumption point identifiers used for exact matching and the building geometry * (already stored in EPSG:4326). */ export interface IDedBuildingSearchView { gid: string; nazev: string | null; oznaceni: string | null; ej_id: number | null; ej_kod: string | null; ej_nazev: string | null; ej_typ: string | null; address_main: string | null; addresses: string[]; ean: string[]; eic: string[]; om: string[]; active_points_count: number; has_building_record: boolean; name_norm: string; address_norm: string; }