feat(subsonic): expose track/album displayArtist/displayAlbumArtist
closes #406
This commit is contained in:
@@ -17,6 +17,7 @@ func NewAlbumByTags(a *db.Album, artists []*db.Artist) *Album {
|
|||||||
Year: a.TagYear,
|
Year: a.TagYear,
|
||||||
TrackCount: a.ChildCount,
|
TrackCount: a.ChildCount,
|
||||||
Duration: a.Duration,
|
Duration: a.Duration,
|
||||||
|
DisplayArtist: a.TagAlbumArtist,
|
||||||
AverageRating: formatRating(a.AverageRating),
|
AverageRating: formatRating(a.AverageRating),
|
||||||
}
|
}
|
||||||
if a.Cover != "" {
|
if a.Cover != "" {
|
||||||
@@ -60,6 +61,8 @@ func NewTrackByTags(t *db.Track, album *db.Album) *TrackChild {
|
|||||||
Size: t.Size,
|
Size: t.Size,
|
||||||
Title: t.TagTitle,
|
Title: t.TagTitle,
|
||||||
Artist: t.TagTrackArtist,
|
Artist: t.TagTrackArtist,
|
||||||
|
DisplayArtist: t.TagTrackArtist,
|
||||||
|
AlbumDisplayArtist: album.TagAlbumArtist,
|
||||||
TrackNumber: t.TagTrackNumber,
|
TrackNumber: t.TagTrackNumber,
|
||||||
DiscNumber: t.TagDiscNumber,
|
DiscNumber: t.TagDiscNumber,
|
||||||
Path: filepath.Join(
|
Path: filepath.Join(
|
||||||
@@ -99,6 +102,9 @@ func NewTrackByTags(t *db.Track, album *db.Album) *TrackChild {
|
|||||||
for _, a := range t.Artists {
|
for _, a := range t.Artists {
|
||||||
ret.Artists = append(ret.Artists, &ArtistRef{ID: a.SID(), Name: a.Name})
|
ret.Artists = append(ret.Artists, &ArtistRef{ID: a.SID(), Name: a.Name})
|
||||||
}
|
}
|
||||||
|
for _, a := range album.Artists {
|
||||||
|
ret.AlbumArtists = append(ret.AlbumArtists, &ArtistRef{ID: a.SID(), Name: a.Name})
|
||||||
|
}
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -120,20 +120,25 @@ type GenreRef struct {
|
|||||||
Name string `xml:"name,attr" json:"name"`
|
Name string `xml:"name,attr" json:"name"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://opensubsonic.netlify.app/docs/responses/albumid3/
|
||||||
type Album struct {
|
type Album struct {
|
||||||
// common
|
|
||||||
ID *specid.ID `xml:"id,attr,omitempty" json:"id"`
|
ID *specid.ID `xml:"id,attr,omitempty" json:"id"`
|
||||||
CoverID *specid.ID `xml:"coverArt,attr,omitempty" json:"coverArt,omitempty"`
|
Created time.Time `xml:"created,attr,omitempty" json:"created,omitempty"`
|
||||||
|
|
||||||
|
// legacy or single tag mode
|
||||||
ArtistID *specid.ID `xml:"artistId,attr,omitempty" json:"artistId,omitempty"`
|
ArtistID *specid.ID `xml:"artistId,attr,omitempty" json:"artistId,omitempty"`
|
||||||
Artist string `xml:"artist,attr,omitempty" json:"artist,omitempty"`
|
Artist string `xml:"artist,attr,omitempty" json:"artist,omitempty"`
|
||||||
|
|
||||||
Artists []*ArtistRef `xml:"artists,omitempty" json:"artists,omitempty"`
|
Artists []*ArtistRef `xml:"artists,omitempty" json:"artists,omitempty"`
|
||||||
Created time.Time `xml:"created,attr,omitempty" json:"created,omitempty"`
|
DisplayArtist string `xml:"diplayArtist,attr,omitempty" json:"displayArtist,omitempty"`
|
||||||
// browsing by folder (eg. getAlbumList)
|
|
||||||
|
// folder stuff
|
||||||
Title string `xml:"title,attr,omitempty" json:"title"`
|
Title string `xml:"title,attr,omitempty" json:"title"`
|
||||||
Album string `xml:"album,attr,omitempty" json:"album"`
|
Album string `xml:"album,attr,omitempty" json:"album"`
|
||||||
ParentID *specid.ID `xml:"parent,attr,omitempty" json:"parent,omitempty"`
|
ParentID *specid.ID `xml:"parent,attr,omitempty" json:"parent,omitempty"`
|
||||||
IsDir bool `xml:"isDir,attr,omitempty" json:"isDir,omitempty"`
|
IsDir bool `xml:"isDir,attr,omitempty" json:"isDir,omitempty"`
|
||||||
// browsing by tags (eg. getAlbumList2)
|
CoverID *specid.ID `xml:"coverArt,attr,omitempty" json:"coverArt,omitempty"`
|
||||||
|
|
||||||
Name string `xml:"name,attr" json:"name"`
|
Name string `xml:"name,attr" json:"name"`
|
||||||
TrackCount int `xml:"songCount,attr" json:"songCount"`
|
TrackCount int `xml:"songCount,attr" json:"songCount"`
|
||||||
Duration int `xml:"duration,attr" json:"duration"`
|
Duration int `xml:"duration,attr" json:"duration"`
|
||||||
@@ -141,6 +146,7 @@ type Album struct {
|
|||||||
Genres []*GenreRef `xml:"genres,omitempty" json:"genres,omitempty"`
|
Genres []*GenreRef `xml:"genres,omitempty" json:"genres,omitempty"`
|
||||||
Year int `xml:"year,attr,omitempty" json:"year,omitempty"`
|
Year int `xml:"year,attr,omitempty" json:"year,omitempty"`
|
||||||
Tracks []*TrackChild `xml:"song,omitempty" json:"song,omitempty"`
|
Tracks []*TrackChild `xml:"song,omitempty" json:"song,omitempty"`
|
||||||
|
|
||||||
// star / rating
|
// star / rating
|
||||||
Starred *time.Time `xml:"starred,attr,omitempty" json:"starred,omitempty"`
|
Starred *time.Time `xml:"starred,attr,omitempty" json:"starred,omitempty"`
|
||||||
UserRating int `xml:"userRating,attr,omitempty" json:"userRating,omitempty"`
|
UserRating int `xml:"userRating,attr,omitempty" json:"userRating,omitempty"`
|
||||||
@@ -160,13 +166,22 @@ type TranscodeMeta struct {
|
|||||||
TranscodedSuffix string `xml:"transcodedSuffix,attr,omitempty" json:"transcodedSuffix,omitempty"`
|
TranscodedSuffix string `xml:"transcodedSuffix,attr,omitempty" json:"transcodedSuffix,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://opensubsonic.netlify.app/docs/responses/child/
|
||||||
type TrackChild struct {
|
type TrackChild struct {
|
||||||
ID *specid.ID `xml:"id,attr,omitempty" json:"id,omitempty"`
|
ID *specid.ID `xml:"id,attr,omitempty" json:"id,omitempty"`
|
||||||
Album string `xml:"album,attr,omitempty" json:"album,omitempty"`
|
Album string `xml:"album,attr,omitempty" json:"album,omitempty"`
|
||||||
AlbumID *specid.ID `xml:"albumId,attr,omitempty" json:"albumId,omitempty"`
|
AlbumID *specid.ID `xml:"albumId,attr,omitempty" json:"albumId,omitempty"`
|
||||||
|
|
||||||
|
// legacy or single tag mode
|
||||||
Artist string `xml:"artist,attr,omitempty" json:"artist,omitempty"`
|
Artist string `xml:"artist,attr,omitempty" json:"artist,omitempty"`
|
||||||
ArtistID *specid.ID `xml:"artistId,attr,omitempty" json:"artistId,omitempty"`
|
ArtistID *specid.ID `xml:"artistId,attr,omitempty" json:"artistId,omitempty"`
|
||||||
|
|
||||||
Artists []*ArtistRef `xml:"artists,omitempty" json:"artists,omitempty"`
|
Artists []*ArtistRef `xml:"artists,omitempty" json:"artists,omitempty"`
|
||||||
|
DisplayArtist string `xml:"diplayArtist,attr,omitempty" json:"displayArtist,omitempty"`
|
||||||
|
|
||||||
|
AlbumArtists []*ArtistRef `xml:"albumArtists,omitempty" json:"albumArtists,omitempty"`
|
||||||
|
AlbumDisplayArtist string `xml:"diplayAlbumArtist,attr,omitempty" json:"displayAlbumArtist,omitempty"`
|
||||||
|
|
||||||
Bitrate int `xml:"bitRate,attr,omitempty" json:"bitRate,omitempty"`
|
Bitrate int `xml:"bitRate,attr,omitempty" json:"bitRate,omitempty"`
|
||||||
ContentType string `xml:"contentType,attr,omitempty" json:"contentType,omitempty"`
|
ContentType string `xml:"contentType,attr,omitempty" json:"contentType,omitempty"`
|
||||||
CoverID *specid.ID `xml:"coverArt,attr,omitempty" json:"coverArt,omitempty"`
|
CoverID *specid.ID `xml:"coverArt,attr,omitempty" json:"coverArt,omitempty"`
|
||||||
|
|||||||
@@ -9,117 +9,117 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-3",
|
||||||
"coverArt": "al-3",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-3",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-4",
|
||||||
"coverArt": "al-4",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-4",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-5",
|
"id": "al-5",
|
||||||
"coverArt": "al-5",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-5",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-8",
|
"id": "al-8",
|
||||||
"coverArt": "al-8",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-8",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-9",
|
"id": "al-9",
|
||||||
"coverArt": "al-9",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-9",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-11",
|
||||||
"coverArt": "al-11",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-11",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-12",
|
"id": "al-12",
|
||||||
"coverArt": "al-12",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-12",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-13",
|
||||||
"coverArt": "al-13",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-13",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
|
|||||||
@@ -9,117 +9,117 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-3",
|
||||||
"coverArt": "al-3",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-3",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-11",
|
||||||
"coverArt": "al-11",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-11",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-4",
|
||||||
"coverArt": "al-4",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-4",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-8",
|
"id": "al-8",
|
||||||
"coverArt": "al-8",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-8",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-12",
|
"id": "al-12",
|
||||||
"coverArt": "al-12",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-12",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-5",
|
"id": "al-5",
|
||||||
"coverArt": "al-5",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-5",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-9",
|
"id": "al-9",
|
||||||
"coverArt": "al-9",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-9",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-13",
|
||||||
"coverArt": "al-13",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-13",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
|
|||||||
@@ -9,117 +9,117 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-3",
|
||||||
"coverArt": "al-3",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-3",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-4",
|
||||||
"coverArt": "al-4",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-4",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-5",
|
"id": "al-5",
|
||||||
"coverArt": "al-5",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-5",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-8",
|
"id": "al-8",
|
||||||
"coverArt": "al-8",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-8",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-9",
|
"id": "al-9",
|
||||||
"coverArt": "al-9",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-9",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-11",
|
||||||
"coverArt": "al-11",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-11",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-12",
|
"id": "al-12",
|
||||||
"coverArt": "al-12",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-12",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-13",
|
||||||
"coverArt": "al-13",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-13",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
|
|||||||
@@ -8,121 +8,121 @@
|
|||||||
"albumList": {
|
"albumList": {
|
||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-4",
|
||||||
"coverArt": "al-13",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-2",
|
|
||||||
"album": "album-2",
|
|
||||||
"parent": "al-10",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "album-2",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-8",
|
|
||||||
"coverArt": "al-8",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
"parent": "al-6",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "album-1",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-9",
|
|
||||||
"coverArt": "al-9",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-2",
|
|
||||||
"album": "album-2",
|
|
||||||
"parent": "al-6",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "album-2",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-3",
|
|
||||||
"coverArt": "al-3",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-0",
|
|
||||||
"album": "album-0",
|
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "album-0",
|
"coverArt": "al-4",
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-12",
|
|
||||||
"coverArt": "al-12",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-1",
|
|
||||||
"album": "album-1",
|
|
||||||
"parent": "al-10",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-11",
|
||||||
"coverArt": "al-11",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-11",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"id": "al-4",
|
|
||||||
"coverArt": "al-4",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-1",
|
|
||||||
"album": "album-1",
|
|
||||||
"parent": "al-2",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "album-1",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-5",
|
|
||||||
"coverArt": "al-5",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-2",
|
|
||||||
"album": "album-2",
|
|
||||||
"parent": "al-2",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "album-2",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-8",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
|
"title": "album-1",
|
||||||
|
"album": "album-1",
|
||||||
|
"parent": "al-6",
|
||||||
|
"isDir": true,
|
||||||
|
"coverArt": "al-8",
|
||||||
|
"name": "album-1",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-9",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-1",
|
||||||
|
"title": "album-2",
|
||||||
|
"album": "album-2",
|
||||||
|
"parent": "al-6",
|
||||||
|
"isDir": true,
|
||||||
|
"coverArt": "al-9",
|
||||||
|
"name": "album-2",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-13",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
|
"title": "album-2",
|
||||||
|
"album": "album-2",
|
||||||
|
"parent": "al-10",
|
||||||
|
"isDir": true,
|
||||||
|
"coverArt": "al-13",
|
||||||
|
"name": "album-2",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-3",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
|
"title": "album-0",
|
||||||
|
"album": "album-0",
|
||||||
|
"parent": "al-2",
|
||||||
|
"isDir": true,
|
||||||
|
"coverArt": "al-3",
|
||||||
|
"name": "album-0",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-5",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-0",
|
||||||
|
"title": "album-2",
|
||||||
|
"album": "album-2",
|
||||||
|
"parent": "al-2",
|
||||||
|
"isDir": true,
|
||||||
|
"coverArt": "al-5",
|
||||||
|
"name": "album-2",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-12",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artist": "artist-2",
|
||||||
|
"title": "album-1",
|
||||||
|
"album": "album-1",
|
||||||
|
"parent": "al-10",
|
||||||
|
"isDir": true,
|
||||||
|
"coverArt": "al-12",
|
||||||
|
"name": "album-1",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,13 +9,14 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-3",
|
||||||
"coverArt": "al-3",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-3",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -23,13 +24,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-4",
|
||||||
"coverArt": "al-4",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-4",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -37,13 +39,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-5",
|
"id": "al-5",
|
||||||
"coverArt": "al-5",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-5",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -51,13 +54,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -65,13 +69,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-8",
|
"id": "al-8",
|
||||||
"coverArt": "al-8",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-8",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -79,13 +84,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-9",
|
"id": "al-9",
|
||||||
"coverArt": "al-9",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-9",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -93,13 +99,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-11",
|
||||||
"coverArt": "al-11",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-11",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -107,13 +114,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-12",
|
"id": "al-12",
|
||||||
"coverArt": "al-12",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-12",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -121,13 +129,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-13",
|
||||||
"coverArt": "al-13",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-13",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -9,13 +9,14 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-3",
|
||||||
"coverArt": "al-3",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-3",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -23,13 +24,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -37,13 +39,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-11",
|
||||||
"coverArt": "al-11",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-11",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -51,13 +54,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-4",
|
||||||
"coverArt": "al-4",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-4",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -65,13 +69,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-8",
|
"id": "al-8",
|
||||||
"coverArt": "al-8",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-8",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -79,13 +84,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-12",
|
"id": "al-12",
|
||||||
"coverArt": "al-12",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-12",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -93,13 +99,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-5",
|
"id": "al-5",
|
||||||
"coverArt": "al-5",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-5",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -107,13 +114,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-9",
|
"id": "al-9",
|
||||||
"coverArt": "al-9",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-9",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -121,13 +129,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-13",
|
||||||
"coverArt": "al-13",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-13",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -9,13 +9,14 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-3",
|
||||||
"coverArt": "al-3",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-3",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -23,13 +24,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-4",
|
||||||
"coverArt": "al-4",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-4",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -37,13 +39,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-5",
|
"id": "al-5",
|
||||||
"coverArt": "al-5",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-5",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -51,13 +54,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -65,13 +69,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-8",
|
"id": "al-8",
|
||||||
"coverArt": "al-8",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-8",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -79,13 +84,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-9",
|
"id": "al-9",
|
||||||
"coverArt": "al-9",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-9",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -93,13 +99,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-11",
|
||||||
"coverArt": "al-11",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-11",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -107,13 +114,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-12",
|
"id": "al-12",
|
||||||
"coverArt": "al-12",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-12",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -121,13 +129,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-13",
|
||||||
"coverArt": "al-13",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-13",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -8,42 +8,30 @@
|
|||||||
"albumList2": {
|
"albumList2": {
|
||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-5",
|
||||||
"coverArt": "al-11",
|
|
||||||
"artistId": "ar-3",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-0",
|
|
||||||
"album": "album-0",
|
|
||||||
"name": "album-0",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300,
|
|
||||||
"year": 2021
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-9",
|
|
||||||
"coverArt": "al-9",
|
|
||||||
"artistId": "ar-2",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artistId": "ar-1",
|
||||||
|
"artist": "artist-0",
|
||||||
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-5",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
"year": 2021
|
"year": 2021
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-12",
|
"id": "al-4",
|
||||||
"coverArt": "al-12",
|
|
||||||
"artistId": "ar-3",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artistId": "ar-1",
|
||||||
|
"artist": "artist-0",
|
||||||
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-4",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -51,69 +39,44 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
"year": 2021
|
"year": 2021
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-12",
|
||||||
"coverArt": "al-4",
|
|
||||||
"artistId": "ar-1",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artistId": "ar-3",
|
||||||
|
"artist": "artist-2",
|
||||||
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
|
"displayArtist": "artist-2",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-12",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
"year": 2021
|
"year": 2021
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-9",
|
||||||
"coverArt": "al-3",
|
|
||||||
"artistId": "ar-1",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-0",
|
|
||||||
"album": "album-0",
|
|
||||||
"name": "album-0",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300,
|
|
||||||
"year": 2021
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-13",
|
|
||||||
"coverArt": "al-13",
|
|
||||||
"artistId": "ar-3",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-2",
|
|
||||||
"album": "album-2",
|
|
||||||
"name": "album-2",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300,
|
|
||||||
"year": 2021
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-5",
|
|
||||||
"coverArt": "al-5",
|
|
||||||
"artistId": "ar-1",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artistId": "ar-2",
|
||||||
|
"artist": "artist-1",
|
||||||
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-9",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -121,17 +84,63 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-8",
|
"id": "al-8",
|
||||||
"coverArt": "al-8",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-8",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
"year": 2021
|
"year": 2021
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-11",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artistId": "ar-3",
|
||||||
|
"artist": "artist-2",
|
||||||
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
|
"displayArtist": "artist-2",
|
||||||
|
"title": "album-0",
|
||||||
|
"album": "album-0",
|
||||||
|
"coverArt": "al-11",
|
||||||
|
"name": "album-0",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300,
|
||||||
|
"year": 2021
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-3",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artistId": "ar-1",
|
||||||
|
"artist": "artist-0",
|
||||||
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"title": "album-0",
|
||||||
|
"album": "album-0",
|
||||||
|
"coverArt": "al-3",
|
||||||
|
"name": "album-0",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300,
|
||||||
|
"year": 2021
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-13",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"artistId": "ar-3",
|
||||||
|
"artist": "artist-2",
|
||||||
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
|
"displayArtist": "artist-2",
|
||||||
|
"title": "album-2",
|
||||||
|
"album": "album-2",
|
||||||
|
"coverArt": "al-13",
|
||||||
|
"name": "album-2",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300,
|
||||||
|
"year": 2021
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,13 +7,14 @@
|
|||||||
"openSubsonic": true,
|
"openSubsonic": true,
|
||||||
"album": {
|
"album": {
|
||||||
"id": "al-3",
|
"id": "al-3",
|
||||||
"coverArt": "al-3",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-3",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -28,6 +29,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-3",
|
"coverArt": "al-3",
|
||||||
@@ -51,6 +55,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-3",
|
"coverArt": "al-3",
|
||||||
@@ -74,6 +81,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-3",
|
"coverArt": "al-3",
|
||||||
|
|||||||
@@ -12,13 +12,14 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-3",
|
||||||
"coverArt": "al-3",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-3",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -28,13 +29,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-4",
|
||||||
"coverArt": "al-4",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-4",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -44,13 +46,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-5",
|
"id": "al-5",
|
||||||
"coverArt": "al-5",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-5",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -12,13 +12,14 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-11",
|
||||||
"coverArt": "al-11",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-11",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -28,13 +29,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-12",
|
"id": "al-12",
|
||||||
"coverArt": "al-12",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-12",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -44,13 +46,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-13",
|
||||||
"coverArt": "al-13",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-13",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -12,13 +12,14 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -28,13 +29,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-8",
|
"id": "al-8",
|
||||||
"coverArt": "al-8",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-8",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -44,13 +46,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-9",
|
"id": "al-9",
|
||||||
"coverArt": "al-9",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-9",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -9,13 +9,14 @@
|
|||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-3",
|
||||||
"coverArt": "al-3",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-3",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -25,13 +26,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-4",
|
||||||
"coverArt": "al-4",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-4",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -41,13 +43,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-5",
|
"id": "al-5",
|
||||||
"coverArt": "al-5",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-0",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-5",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -57,13 +60,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-7",
|
"id": "al-7",
|
||||||
"coverArt": "al-7",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-7",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -73,13 +77,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-8",
|
"id": "al-8",
|
||||||
"coverArt": "al-8",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-8",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -89,13 +94,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-9",
|
"id": "al-9",
|
||||||
"coverArt": "al-9",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-1",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-9",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -105,13 +111,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-11",
|
||||||
"coverArt": "al-11",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "album-0",
|
"album": "album-0",
|
||||||
|
"coverArt": "al-11",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -121,13 +128,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-12",
|
"id": "al-12",
|
||||||
"coverArt": "al-12",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "album-1",
|
"album": "album-1",
|
||||||
|
"coverArt": "al-12",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -137,13 +145,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-13",
|
||||||
"coverArt": "al-13",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"displayArtist": "artist-2",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "album-2",
|
"album": "album-2",
|
||||||
|
"coverArt": "al-13",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
|
|||||||
@@ -14,6 +14,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-3",
|
"coverArt": "al-3",
|
||||||
@@ -39,6 +42,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-3",
|
"coverArt": "al-3",
|
||||||
@@ -64,6 +70,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-3",
|
"coverArt": "al-3",
|
||||||
@@ -89,6 +98,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-4",
|
"coverArt": "al-4",
|
||||||
@@ -114,6 +126,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-4",
|
"coverArt": "al-4",
|
||||||
@@ -139,6 +154,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-4",
|
"coverArt": "al-4",
|
||||||
@@ -164,6 +182,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-5",
|
"coverArt": "al-5",
|
||||||
@@ -189,6 +210,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-5",
|
"coverArt": "al-5",
|
||||||
@@ -214,6 +238,9 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artistId": "ar-1",
|
"artistId": "ar-1",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayArtist": "artist-0",
|
||||||
|
"albumArtists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"displayAlbumArtist": "artist-0",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-5",
|
"coverArt": "al-5",
|
||||||
@@ -239,6 +266,9 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
|
"albumArtists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayAlbumArtist": "artist-1",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-7",
|
"coverArt": "al-7",
|
||||||
@@ -264,6 +294,9 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
|
"albumArtists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayAlbumArtist": "artist-1",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-7",
|
"coverArt": "al-7",
|
||||||
@@ -289,6 +322,9 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
|
"albumArtists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayAlbumArtist": "artist-1",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-7",
|
"coverArt": "al-7",
|
||||||
@@ -314,6 +350,9 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
|
"albumArtists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayAlbumArtist": "artist-1",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-8",
|
"coverArt": "al-8",
|
||||||
@@ -339,6 +378,9 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
|
"albumArtists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayAlbumArtist": "artist-1",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-8",
|
"coverArt": "al-8",
|
||||||
@@ -364,6 +406,9 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
|
"albumArtists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayAlbumArtist": "artist-1",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-8",
|
"coverArt": "al-8",
|
||||||
@@ -389,6 +434,9 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
|
"albumArtists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayAlbumArtist": "artist-1",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-9",
|
"coverArt": "al-9",
|
||||||
@@ -414,6 +462,9 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
|
"albumArtists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayAlbumArtist": "artist-1",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-9",
|
"coverArt": "al-9",
|
||||||
@@ -439,6 +490,9 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artistId": "ar-2",
|
"artistId": "ar-2",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayArtist": "artist-1",
|
||||||
|
"albumArtists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"displayAlbumArtist": "artist-1",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-9",
|
"coverArt": "al-9",
|
||||||
@@ -464,6 +518,9 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
|
"displayArtist": "artist-2",
|
||||||
|
"albumArtists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
|
"displayAlbumArtist": "artist-2",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-11",
|
"coverArt": "al-11",
|
||||||
@@ -489,6 +546,9 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
|
"displayArtist": "artist-2",
|
||||||
|
"albumArtists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
|
"displayAlbumArtist": "artist-2",
|
||||||
"bitRate": 100,
|
"bitRate": 100,
|
||||||
"contentType": "audio/flac",
|
"contentType": "audio/flac",
|
||||||
"coverArt": "al-11",
|
"coverArt": "al-11",
|
||||||
|
|||||||
Reference in New Issue
Block a user