interface AdventureData {
    _id: string;
    name: string;
    img: string;
    caption: string;
    description: string;
    actors: BaseActor[];
    combats: BaseCombat[];
    items: BaseItem[];
    scenes: BaseScene[];
    journal: BaseJournalEntry[];
    tables: BaseRollTable[];
    macros: BaseMacro[];
    cards: BaseCards[];
    playlists: BasePlaylist[];
    folders: BaseFolder[];
    sort: number;
    flags: object;
    _stats: DocumentStats;
}

Properties

_id: string

The _id which uniquely identifies this Adventure document

name: string

The human-readable name of the Adventure

img: string

The file path for the primary image of the adventure

caption: string

A string caption displayed under the primary image banner

description: string

An HTML text description for the adventure

actors: BaseActor[]

An array of included Actor documents

combats: BaseCombat[]

An array of included Combat documents

items: BaseItem[]

An array of included Item documents

scenes: BaseScene[]

An array of included Scene documents

journal: BaseJournalEntry[]

An array of included JournalEntry documents

tables: BaseRollTable[]

An array of included RollTable documents

macros: BaseMacro[]

An array of included Macro documents

cards: BaseCards[]

An array of included Cards documents

playlists: BasePlaylist[]

An array of included Playlist documents

folders: BaseFolder[]

An array of included Folder documents

sort: number

The sort order of this adventure relative to its siblings

flags: object

An object of optional key/value flags

_stats: DocumentStats

An object of creation and access information