Interface Artist

This interface represents an artist, including their name, an optional description, and an optional array of linked releases.

interface Artist {
    name: string;
    description?: string;
    releases?: Linked<Release>[];
}

Properties

name: string

The name of the artist

description?: string

An optional description of the artist

releases?: Linked<Release>[]

An optional array of linked releases, otherwise assumed to be child inscriptions implementing Release