interface ActorData {
    _id: null | string;
    _stats: DocumentStats;
    effects: ActiveEffectData[];
    flags: DocumentFlags;
    folder: null | string;
    img?: string;
    items: ItemData[];
    name: string;
    ownership: object;
    prototypeToken: PrototypeTokenData;
    sort: number;
    system: object;
    type: string;
}

Properties

_id: null | string

The _id which uniquely identifies this Actor document

An object of creation and access information

effects: ActiveEffectData[]

A Collection of ActiveEffect embedded Documents

An object of optional key/value flags

folder: null | string

The _id of a Folder which contains this Actor

img?: string

An image file path which provides the artwork for this Actor

items: ItemData[]

A Collection of Item embedded Documents

name: string

The name of this Actor

ownership: object

An object which configures ownership of this Actor

prototypeToken: PrototypeTokenData

Default Token settings which are used for Tokens created from this Actor

sort: number

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

system: object

Data for an Actor subtype, defined by a System or Module

type: string

An Actor subtype which configures the system data model applied