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

Properties

_id: null | string

The _id which uniquely identifies this JournalEntryPage embedded document.

An object of creation and access information

category?: string

An optional category that this page belongs to.

An object of optional key/value flags

Data particular to image journal entry pages.

name: string

The text name of this page.

ownership?: object

An object which configures the ownership of this page.

sort: number

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

src?: string

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

system: object

System-specific data.

Data particular to text journal entry pages.

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

type: string

The type of this page.

Data particular to video journal entry pages.