Raw feed containing a collection of comment summaries.

interface RawCommentsFeedSummary {
    id: RawText;
    updated: RawText;
    title: RawTextTitle;
    link: RawLink[];
    author: RawAuthor[];
    openSearch$totalResults: RawText;
    openSearch$startIndex: RawText;
    openSearch$itemsPerPage: RawText;
    entry: RawCommentEntrySummary[];
}

Hierarchy (view full)

Properties

The blog id.

updated: RawText

RFC 3339 date-time when the blog was last updated.

The name of the feed. Can include HTML markup.

link: RawLink[]

The links of the blog.

author: RawAuthor[]

The author of the blog.

openSearch$totalResults: RawText

The total number of entries.

In a request with a query (q parameter), this value is usually equals to the number of entries retrieved.

openSearch$startIndex: RawText

The 1-based index of the first retrieved entry.

openSearch$itemsPerPage: RawText

The maximum number of items that appear on one page.

Commonly is the max-results parameter.

The retrieved entries.