EU Parliament Monitor — API Documentation - v0.8.45
    Preparing search index...

    Interface PendingDocumentsStore

    Root store format persisted to data/pending-documents.json. Documents are keyed by docId for O(1) lookup.

    interface PendingDocumentsStore {
        version: string;
        lastUpdatedAt: string;
        documents: Record<string, PendingDocument>;
    }
    Index

    Properties

    version: string

    Schema version for forward-compatibility

    lastUpdatedAt: string

    ISO timestamp of the last write

    documents: Record<string, PendingDocument>

    Map keyed by docId (e.g., "TA-10-2026-0104") to the pending document record — O(1) lookup