interface JournalEntryData {
    _id: string;
    name: string;
    pages: JournalEntryPageData[];
    folder: string;
    sort: number;
    ownership: object;
    flags: object;
    _stats: DocumentStats;
}

Properties

_id: string

The _id which uniquely identifies this JournalEntry document

name: string

The name of this JournalEntry

The pages contained within this JournalEntry document

folder: string

The _id of a Folder which contains this JournalEntry

sort: number

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

ownership: object

An object which configures ownership of this JournalEntry

flags: object

An object of optional key/value flags

_stats: DocumentStats

An object of creation and access information