Riksdagsmonitor Intelligence Platform โ€” API Documentation - v0.8.35
    Preparing search index...

    Interface OrchestratorResult

    Aggregate result produced by the orchestrator after running all pipelines.

    interface OrchestratorResult {
    ย ย ย ย allSucceeded: boolean;
    ย ย ย ย totalFiles: number;
    ย ย ย ย results: Record<string, PipelineResult>;
    ย ย ย ย warnings: string[];
    ย ย ย ย durationMs: number;
    }
    Index

    Properties

    allSucceeded: boolean

    true when every pipeline in the run reported success.

    totalFiles: number

    Total number of files written across all pipelines.

    results: Record<string, PipelineResult>

    Individual results keyed by pipeline name.

    warnings: string[]

    Warnings collected across all pipelines.

    durationMs: number

    Total wall-clock time for the orchestrator run (ms).