g3-toolkit API Reference
    Preparing search index...

    Interface ProvenanceHop

    One node in a provenance trail.

    interface ProvenanceHop {
        absence?: boolean;
        depth: number;
        detail?: string;
        id: string;
        label: string;
        leaf?: boolean;
        parentId?: string;
        tier: string;
    }
    Index

    Properties

    absence?: boolean

    True when this leaf represents MISSING evidence (an exposure/gap): the trace bottoms out in the absence of proof, not in proof.

    depth: number

    Depth from the root (0 = the thing being explained).

    detail?: string

    Optional secondary line (a rating, a driver, a relevance).

    id: string

    Graph node / action id this hop refers to.

    label: string

    Short title shown on the hop.

    leaf?: boolean

    True when this hop is a leaf (raw evidence or documented absence).

    parentId?: string

    Parent hop id (for tree reconstruction); absent on the root.

    tier: string

    Tier label, e.g. "action" | "analytic" | "meaning" | "raw". Free text so the component is not tied to a fixed tier vocabulary.