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

    Interface TrackInput

    track_type — a single audio track within a release.

    interface TrackInput {
        advisory?: "none" | "clean" | "explicit" | "None" | "Clean" | "Explicit";
        assets?: AssetInput[];
        attr?: AttrInput[];
        audioLanguage?: string;
        bpm?: number;
        cInfo?: string;
        cYear?: number;
        discNumber?: number;
        displayArtist: string;
        genres?: GenreInput[];
        isrc?: string;
        iswc?: string;
        notes?: string;
        participants?: ParticipantInput[];
        permissions?: PermissionInput[];
        pInfo?: string;
        previewDuration?: number;
        previewStart?: number;
        priceTiers?: PriceTierInput[];
        pYear?: number;
        rightsHolders?: string;
        tags?: string[];
        territories?: TerritoryInput[];
        texts?: TextInput[];
        title: string;
        titleVersion?: string;
        trackLength?: number;
        trackNumber: number;
        vendorTrackID?: string;
        work?: string;
    }
    Index
    advisory?: "none" | "clean" | "explicit" | "None" | "Clean" | "Explicit"

    Maps to advisory.

    assets?: AssetInput[]

    Maps to asset — crucially including the recording itself.

    attr?: AttrInput[]

    Maps to attr.

    audioLanguage?: string

    Maps to audio_language. Overrides the release-level value.

    bpm?: number

    Maps to bpm.

    cInfo?: string

    Maps to c_info.

    cYear?: number

    Maps to c_year.

    discNumber?: number

    Maps to disc_number.

    displayArtist: string

    Maps to display_artist. Required.

    genres?: GenreInput[]

    Maps to genre.

    isrc?: string

    Maps to isrc — 12 characters, [A-Za-z0-9]{5}[0-9]{2}[A-Za-z0-9]{5}.

    iswc?: string

    Maps to iswc — 11 characters, a letter then ten digits.

    notes?: string

    Maps to notes — shown only inside AudioSalad.

    participants?: ParticipantInput[]

    Maps to participant.

    permissions?: PermissionInput[]

    Maps to permission.

    pInfo?: string

    Maps to p_info.

    previewDuration?: number

    Maps to preview_duration, in seconds.

    previewStart?: number

    Maps to preview_start, in seconds. 0 is a valid, emitted value.

    priceTiers?: PriceTierInput[]

    Maps to price_tier. Currently unsupported by AudioSalad.

    pYear?: number

    Maps to p_year.

    rightsHolders?: string

    Maps to rights_holders.

    tags?: string[]

    Maps to tag.

    territories?: TerritoryInput[]

    Maps to territory.

    texts?: TextInput[]

    Maps to text — generally lyrics.

    title: string

    Maps to title. Required.

    titleVersion?: string

    Maps to title_version, e.g. Radio Edit.

    trackLength?: number

    Maps to track_length, in seconds.

    trackNumber: number

    Maps to track_number. Required.

    vendorTrackID?: string

    Maps to vendor_track_id.

    work?: string

    Maps to work — classical content only.