interface ItemData {
    _id: string;
    name: string;
    type: string;
    img: string;
    system: any;
    effects: Collection<BaseActiveEffect>;
    folder: string;
    sort: number;
    ownership: any;
    flags: any;
    _stats: DocumentStats;
}

Properties

_id: string

The _id which uniquely identifies this Item document

name: string

The name of this Item

type: string

An Item subtype which configures the system data model applied

img: string

An image file path which provides the artwork for this Item

system: any

The system data object which is defined by the system template.json model

effects: Collection<BaseActiveEffect>

A collection of ActiveEffect embedded Documents

folder: string

The _id of a Folder which contains this Item

sort: number

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

ownership: any

An object which configures ownership of this Item

flags: any

An object of optional key/value flags

_stats: DocumentStats

An object of creation and access information