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

    Interface SitemapArticleInfo

    Article info extracted for sitemap HTML display.

    slug is the article slug excluding the YYYY-MM-DD- prefix and the _<lang> suffix — used only for editorial-category detection. When absent, filename is used as the fallback signal.

    interface SitemapArticleInfo {
        filename: string;
        date: string;
        title: string;
        description: string;
        slug?: string;
    }
    Index

    Properties

    filename: string

    Filename within the news/ directory (e.g. 2026-04-27-foo.en.html)

    date: string

    ISO date (YYYY-MM-DD) parsed from the filename

    title: string

    Article title (already-decoded plain text, NOT yet HTML-escaped)

    description: string

    Article description (already-decoded plain text, NOT yet HTML-escaped)

    slug?: string

    Original slug (excluding date and language suffix), used for category detection