Member Junction
    Preparing search index...

    One dimension's resolved value together with the provenance that makes it auditable.

    interface DimensionExplanation {
        InheritanceMode?: "cascading" | "strict";
        Name: string;
        Note?: string;
        Provenance: DimensionProvenance;
        Restricts: boolean;
        Value: SecondaryScopeValue;
    }
    Index

    Properties

    InheritanceMode?: "cascading" | "strict"

    The inheritance mode actually ENFORCED, after defaulting. A restricting dimension with no explicit mode resolves to strict; a non-restricting one to cascading.

    Name: string
    Note?: string

    Extra human-readable detail — what was discarded, which query derived it, and so on.

    Restricts: boolean

    True when this dimension narrows what the search may reach (an access bound).

    The resolved value, or null when the dimension came out Absent.