interface JournalEntryPageData {
    _id: string;
    name: string;
    type: string;
    title: JournalEntryPageTitleData;
    image: JournalEntryPageImageData;
    text: JournalEntryPageTextData;
    video: JournalEntryPageVideoData;
    src: string;
    system: object;
    sort: number;
    ownership: object;
    flags: object;
    _stats: DocumentStats;
}

Properties

_id: string

The _id which uniquely identifies this JournalEntryPage embedded document.

name: string

The text name of this page.

type: string

The type of this page.

Data that control's the display of this page's title.

Data particular to image journal entry pages.

Data particular to text journal entry pages.

Data particular to video journal entry pages.

src: string

The URI of the image or other external media to be used for this page.

system: object

System-specific data.

sort: number

The numeric sort value which orders this page relative to its siblings.

ownership: object

An object which configures the ownership of this page.

flags: object

An object of optional key/value flags

_stats: DocumentStats

An object of creation and access information