Artist skip pattern data structure

interface ArtistData {
    id: string;
    name: string;
    skipCount: number;
    trackCount: number;
    skipPercentage: number;
}

Properties

id: string

Unique identifier for the artist

name: string

Artist or group name

skipCount: number

Total number of tracks skipped for this artist

trackCount: number

Total number of tracks played for this artist

skipPercentage: number

Percentage of tracks skipped (0-100)