Saxonberg Server API
    Preparing search index...

    Interface TagTableLoadResult

    Result of a load / reload run. Surfaces actionable counts for boot logs and the future tags reload admin command.

    Granularity is per (unit, scaleName) — a single unit with two scales contributes two entries.

    interface TagTableLoadResult {
        path: string;
        registered: { scaleName: string; unit: Unit }[];
        removed: { scaleName: string; unit: Unit }[];
    }
    Index

    Properties

    path: string

    Resolved YAML path used for this run.

    registered: { scaleName: string; unit: Unit }[]

    (unit, scale) pairs freshly registered (added or replaced).

    removed: { scaleName: string; unit: Unit }[]

    (unit, scale) pairs removed because they disappeared from the YAML.