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

    Represents raw artifact content read from an analysis run directory. Carries the original Markdown body along with its provenance metadata.

    interface ArtifactContent {
        path: string;
        body: string;
        byteLength: number;
    }
    Index

    Properties

    Properties

    path: string

    Run-relative path of the artifact (e.g. intelligence/synthesis-summary.md).

    body: string

    Raw Markdown body as read from disk.

    byteLength: number

    Byte length of the raw content (before cleaning).