RSS/Atom/JSON feed discovered for a publication and used for story research.

interface PrFeed {
    canonical_url?: null | string;
    content_type?: null | string;
    created_at?: null | string;
    description?: null | string;
    etag?: null | string;
    feed_type: PrFeedType;
    feed_url: string;
    http_status?: null | number;
    id: string;
    item_count_last_fetch: number;
    language?: null | string;
    last_error?: null | string;
    last_fetched_at?: null | string;
    last_modified_at?: null | string;
    metadata?: Record<string, any>;
    next_fetch_at?: null | string;
    pr_link_id?: null | string;
    publication?: null | PrPublication;
    publication_id: string;
    raw_feed_content?: null | string;
    raw_feed_hash?: null | string;
    raw_feed_size?: number;
    source?: null | string;
    status: PrFeedStatus;
    stories?: PrStory[];
    stories_count?: number;
    title?: null | string;
    updated_at?: null | string;
}

Properties

canonical_url?: null | string
content_type?: null | string
created_at?: null | string
description?: null | string
etag?: null | string
feed_type: PrFeedType
feed_url: string
http_status?: null | number
id: string
item_count_last_fetch: number
language?: null | string
last_error?: null | string
last_fetched_at?: null | string
last_modified_at?: null | string
metadata?: Record<string, any>
next_fetch_at?: null | string
pr_link_id?: null | string
publication?: null | PrPublication
publication_id: string
raw_feed_content?: null | string
raw_feed_hash?: null | string
raw_feed_size?: number
source?: null | string
status: PrFeedStatus
stories?: PrStory[]
stories_count?: number
title?: null | string
updated_at?: null | string

Generated using TypeDoc