Page entry that includes the full content of the page.

interface PageEntry {
    id: string;
    published: string;
    updated: string;
    title: string;
    link: RawEntryLink[];
    author: Author[];
    content: string;
}

Hierarchy (view full)

Properties

id: string

The id of the entry.

published: string

RFC 3339 date-time when the entry was published.

updated: string

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

title: string

The title of the entry.

link: RawEntryLink[]

The links of the entry.

author: Author[]

The authors who published or updated the entry.

content: string

The content of the entry. Can contain HTML markup.