Magpie HTML - v0.1.3
    Preparing search index...

    Interface Feed

    Normalized feed data.

    The main feed object containing metadata and items. This is the recommended interface for working with feeds as it provides a consistent structure regardless of the original format.

    interface Feed {
        format: "rss" | "atom" | "json-feed";
        title: string;
        description?: string;
        url?: string;
        feedUrl?: string;
        language?: string;
        image?: string;
        authors?: FeedAuthor[];
        updated?: string;
        items: FeedItem[];
    }
    Index

    Properties

    format: "rss" | "atom" | "json-feed"

    Original feed format

    title: string

    Feed title (required)

    description?: string

    Feed description or subtitle

    url?: string

    Feed's home page URL

    feedUrl?: string

    Feed's own URL (self-reference)

    language?: string

    Feed language code (e.g., 'en', 'de')

    image?: string

    Feed icon or logo URL

    authors?: FeedAuthor[]

    Feed-level authors

    updated?: string

    Last update date in ISO 8601 format

    items: FeedItem[]

    Feed items (entries/articles/posts)