Saxonberg Server API
    Preparing search index...

    Interface AddressTrace

    Provenance bundle for analyze address. Superset of the resolution.

    interface AddressTrace {
        address: string | null;
        ancestorChain: string[];
        coverageChain: { address: string; templatePath: string }[];
        locality: default | null;
        source: AddressSource;
        sourcePath: string | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    address: string | null

    The resolved address string that was matched, or null when none.

    ancestorChain: string[]

    templatePaths walked containment-outward (innermost → outermost).

    coverageChain: { address: string; templatePath: string }[]

    The covering Localities from most- to least-specific (the winner plus its ancestors). Empty when no Locality covers; the head, when present, equals locality.

    locality: default | null

    The most-specific covering Locality, or null (global / no cover).

    Which step supplied address; 'none' when nothing did.

    sourcePath: string | null

    The path of the host (or zone) that supplied the address, if any.