@ssh/audiosalad-xml - v1.0.1
    Preparing search index...

    Interface AssetInput

    asset_type — an audio recording, artwork image, or arbitrary file.

    interface AssetInput {
        attr?: AttrInput[];
        fileName: string;
        format?: string;
        md5Checksum?: string;
        mimeType?: string;
        name?: string;
        notes?: string;
        subtype?: string;
        type: string & {} | "audio" | "image" | "asset";
    }
    Index
    attr?: AttrInput[]

    Maps to attr.

    fileName: string

    Maps to file_name — filename with extension, no folder structure. Required.

    format?: string

    Maps to format, generally the file extension.

    md5Checksum?: string

    Maps to md5_checksum. Optional as of schema v3.4.

    mimeType?: string

    Maps to mime_type, e.g. audio/flac.

    name?: string

    Maps to name.

    notes?: string

    Maps to notes.

    subtype?: string

    Maps to sub_type — the AudioSalad media type, e.g. wav, Front.

    type: string & {} | "audio" | "image" | "asset"

    Maps to type, e.g. audio, image, asset. Required.