Interface ImportDataSetFile

One file expected by an ImportDataSet.

interface ImportDataSetFile {
    accept: string;
    key: string;
    label: string;
    loadFormat: string;
    required: boolean;
}

Properties

accept: string

Native <input type="file"> accept attribute.

key: string

Stable key — distinguishes files when a data set has more than one.

label: string

User-facing label, e.g. "SceneModel JSON".

loadFormat: string

format string passed to Studio.loadModel for this file.

required: boolean

When false, the file can be left empty and is skipped on Load.