interface JournalEntryData {
    _id: null | string;
    _stats: DocumentStats;
    categories: JournalEntryCategoryData[];
    flags: DocumentFlags;
    folder: null | string;
    name: string;
    ownership?: object;
    pages: JournalEntryPageData[];
    sort?: number;
}

Properties

_id: null | string

The _id which uniquely identifies this JournalEntry document

An object of creation and access information

The categories contained within this JournalEntry.

An object of optional key/value flags

folder: null | string

The _id of a Folder which contains this JournalEntry

name: string

The name of this JournalEntry

ownership?: object

An object which configures ownership of this JournalEntry

The pages contained within this JournalEntry document

sort?: number

The numeric sort value which orders this JournalEntry relative to its siblings