Foundry Virtual Tabletop - API Documentation - Version 14
    Preparing search index...

    Interface _DataModelConstructionOptions

    interface _DataModelConstructionOptions {
        clean?: boolean | Omit<DataModelCleaningOptions, "partial">;
        parent?: DataModel<object, DataModelConstructionContext> | null;
        schema?: any;
    }
    Index

    Properties

    clean?: boolean | Omit<DataModelCleaningOptions, "partial">

    Configuration of data cleaning steps applied to user input data. This can be explicitly passed as false to skip preprocessing when using data that is known to already be fully cleaned.

    parent?: DataModel<object, DataModelConstructionContext> | null

    A parent DataModel instance to which this DataModel belongs

    schema?: any

    If we are constructing an embedded model, it may be provided by the constructing DataModelSchemaField with an instance-specific schema to use