Include artists in get_release

This commit is contained in:
Claudio Ortolina
2025-05-04 21:34:55 +01:00
parent 4b0e11823d
commit fba621db10
3 changed files with 662 additions and 167 deletions
+1 -1
View File
@@ -289,7 +289,7 @@ defmodule MusicBrainz.API do
url: "/release/#{id}",
params: [
fmt: "json",
inc: "release-groups+recordings"
inc: "release-groups+recordings+artists"
]
)
|> get_request()
+18 -2
View File
@@ -2,14 +2,19 @@ defmodule MusicBrainz.Release do
@enforce_keys [:id, :date, :barcode, :media]
defstruct [:id, :date, :barcode, :media]
defmodule Artist do
@enforce_keys [:id, :name, :sort_name]
defstruct [:id, :name, :sort_name]
end
defmodule Medium do
@enforce_keys [:format, :number, :track_count, :tracks]
defstruct [:format, :number, :track_count, :tracks]
end
defmodule Track do
@enforce_keys [:id, :title, :length, :number, :position]
defstruct [:id, :title, :length, :number, :position]
@enforce_keys [:id, :title, :artists, :length, :number, :position]
defstruct [:id, :title, :artists, :length, :number, :position]
end
def media_count(release) do
@@ -41,10 +46,21 @@ defmodule MusicBrainz.Release do
%Track{
id: t["id"],
title: t["title"],
artists: parse_artists(t["recording"]["artist-credit"]),
length: t["length"],
number: t["number"],
position: t["position"]
}
end)
end
defp parse_artists(artists) do
Enum.map(artists, fn a ->
%Artist{
id: a["artist"]["id"],
name: a["artist"]["name"],
sort_name: a["artist"]["sort-name"]
}
end)
end
end
@@ -1,298 +1,777 @@
{
"release-events": [
{
"area": {
"type": null,
"sort-name": "Europe",
"id": "89a675c2-3e37-3518-b83c-418bad59a85a",
"iso-3166-1-codes": [
"XE"
],
"disambiguation": "",
"type-id": null,
"name": "Europe"
},
"date": "2004-05-03"
}
],
"id": "d3f9b9e2-73f5-4b47-a2a7-2c2199aad608",
"status-id": "4e304316-386d-3409-af2e-78857eec5cfe",
"media": [
{
"format": "CD",
"format-id": "9712d52a-4509-3d4b-a1a2-67c88c643e31",
"track-offset": 0,
"position": 1,
"tracks": [
{
"title": "The Invisible Man",
"recording": {
"length": 817613,
"artist-credit": [
{
"joinphrase": "",
"artist": {
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"country": "GB",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band",
"type": "Group"
},
"name": "Marillion"
}
],
"video": false,
"disambiguation": "",
"first-release-date": "2004-05-03",
"video": false,
"title": "The Invisible Man",
"length": 817613,
"id": "03c612c6-5a13-455f-ab2f-0fe40906250a"
},
"number": "1",
"id": "ea424146-3f1f-4651-b873-50e678a0fc7a",
"position": 1,
"length": 817613,
"title": "The Invisible Man"
"id": "ea424146-3f1f-4651-b873-50e678a0fc7a",
"number": "1",
"artist-credit": [
{
"artist": {
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"country": "GB",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band",
"type": "Group"
},
"name": "Marillion",
"joinphrase": ""
}
],
"length": 817613
},
{
"number": "2",
"artist-credit": [
{
"name": "Marillion",
"artist": {
"country": "GB",
"type": "Group",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion"
},
"joinphrase": ""
}
],
"length": 102746,
"recording": {
"id": "40a23122-cd24-466c-be01-187f6f3c9acf",
"length": 102746,
"title": "Marbles I",
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"country": "GB",
"type": "Group",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"sort-name": "Marillion"
},
"name": "Marillion"
}
],
"video": false,
"disambiguation": "",
"first-release-date": "2004-05-03",
"disambiguation": ""
"title": "Marbles I",
"id": "40a23122-cd24-466c-be01-187f6f3c9acf"
},
"position": 2,
"length": 102746,
"id": "76e900f8-0156-4306-b490-1945ae96d240",
"title": "Marbles I"
"title": "Marbles I",
"number": "2",
"id": "76e900f8-0156-4306-b490-1945ae96d240"
},
{
"position": 3,
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"type": "Group",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"sort-name": "Marillion",
"country": "GB"
},
"name": "Marillion"
}
],
"length": 294293,
"id": "86187f02-6779-4ded-b84e-9d21d8abb8ca",
"number": "3",
"title": "Genie",
"position": 3,
"recording": {
"id": "f633fea4-8f29-4fda-a15f-86627f9048da",
"artist-credit": [
{
"artist": {
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"country": "GB",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"type": "Group"
},
"name": "Marillion",
"joinphrase": ""
}
],
"length": 294293,
"video": false,
"title": "Genie",
"first-release-date": "2004-05-03",
"disambiguation": ""
},
"title": "Genie"
"disambiguation": "",
"title": "Genie",
"id": "f633fea4-8f29-4fda-a15f-86627f9048da"
}
},
{
"title": "Fantastic Place",
"recording": {
"id": "f703b00d-0216-4e08-88cd-875c183d1e3c",
"length": 372520,
"title": "Fantastic Place",
"video": false,
"disambiguation": "",
"first-release-date": "2004-05-03",
"disambiguation": ""
"artist-credit": [
{
"joinphrase": "",
"artist": {
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band",
"type": "Group",
"country": "GB"
},
"name": "Marillion"
}
],
"length": 372520,
"id": "f703b00d-0216-4e08-88cd-875c183d1e3c",
"title": "Fantastic Place"
},
"number": "4",
"position": 4,
"id": "71c3f5aa-54c2-4af4-a7b8-e269879a8ba5",
"length": 372520
"number": "4",
"length": 372520,
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"country": "GB",
"type": "Group",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band"
},
"name": "Marillion"
}
]
},
{
"title": "The Only Unforgivable Thing",
"length": 433293,
"position": 5,
"id": "0ecee1da-d20e-4d9e-9899-d5c1c15b0588",
"number": "5",
"title": "The Only Unforgivable Thing",
"position": 5,
"recording": {
"title": "The Only Unforgivable Thing",
"video": false,
"length": 433293,
"id": "af263b9a-d21c-4210-b61e-bff2be7c3424",
"artist-credit": [
{
"artist": {
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band",
"type": "Group",
"country": "GB",
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b"
},
"name": "Marillion",
"joinphrase": ""
}
],
"video": false,
"disambiguation": "",
"first-release-date": "2004-05-03"
"first-release-date": "2004-05-03",
"title": "The Only Unforgivable Thing",
"id": "af263b9a-d21c-4210-b61e-bff2be7c3424"
},
"number": "5"
"artist-credit": [
{
"artist": {
"type": "Group",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"country": "GB",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion"
},
"name": "Marillion",
"joinphrase": ""
}
],
"length": 433293
},
{
"title": "Marbles II",
"position": 6,
"length": 122880,
"artist-credit": [
{
"artist": {
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"country": "GB",
"disambiguation": "British progressive rock band",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"type": "Group"
},
"name": "Marillion",
"joinphrase": ""
}
],
"number": "6",
"id": "b71db64f-4eee-4f44-a478-2d20e52b6adf",
"recording": {
"video": false,
"title": "Marbles II",
"id": "0b20b4eb-60ac-4c19-b4ba-8ac2ace07136",
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"type": "Group",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"sort-name": "Marillion",
"country": "GB"
},
"name": "Marillion"
}
],
"length": 122880,
"disambiguation": "",
"video": false,
"first-release-date": "2004-05-03"
},
"number": "6"
"position": 6,
"title": "Marbles II"
},
{
"recording": {
"first-release-date": "2004-05-03",
"disambiguation": "",
"length": 1078253,
"id": "08864ce2-20fd-49d4-8ef4-d916cec4f5c9",
"title": "Ocean Cloud",
"video": false
},
"number": "7",
"position": 7,
"length": 1078253,
"id": "0d3a4853-22f9-46c9-a8ee-354e62c6db87",
"title": "Ocean Cloud"
"recording": {
"title": "Ocean Cloud",
"id": "08864ce2-20fd-49d4-8ef4-d916cec4f5c9",
"artist-credit": [
{
"joinphrase": "",
"name": "Marillion",
"artist": {
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"country": "GB",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band",
"type": "Group"
}
}
],
"length": 1078253,
"disambiguation": "",
"video": false,
"first-release-date": "2004-05-03"
},
"position": 7,
"title": "Ocean Cloud",
"length": 1078253,
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"type": "Group",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band",
"country": "GB"
},
"name": "Marillion"
}
]
}
],
"title": "",
"track-count": 7
"track-count": 7,
"format": "CD",
"position": 1,
"format-id": "9712d52a-4509-3d4b-a1a2-67c88c643e31",
"title": ""
},
{
"format": "CD",
"format-id": "9712d52a-4509-3d4b-a1a2-67c88c643e31",
"track-offset": 0,
"title": "",
"track-count": 8,
"format-id": "9712d52a-4509-3d4b-a1a2-67c88c643e31",
"position": 2,
"track-count": 8,
"format": "CD",
"track-offset": 0,
"tracks": [
{
"title": "Marbles III",
"recording": {
"first-release-date": "2004-05-03",
"disambiguation": "",
"id": "d576eda2-5f8c-4f8b-b741-c1ccc5aa1216",
"video": false,
"length": 111866,
"title": "Marbles III",
"video": false
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"type": "Group",
"disambiguation": "British progressive rock band",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"country": "GB"
},
"name": "Marillion"
}
],
"id": "d576eda2-5f8c-4f8b-b741-c1ccc5aa1216",
"title": "Marbles III"
},
"number": "1",
"position": 1,
"id": "683cae13-1de9-43f5-bb80-d72a50ffd539",
"length": 111866
"number": "1",
"length": 111866,
"artist-credit": [
{
"joinphrase": "",
"name": "Marillion",
"artist": {
"country": "GB",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"type": "Group",
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b"
}
}
]
},
{
"title": "The Damage",
"position": 2,
"artist-credit": [
{
"joinphrase": "",
"artist": {
"country": "GB",
"type": "Group",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion"
},
"name": "Marillion"
}
],
"length": 275186,
"id": "435ce489-3766-4b0c-be24-7a9506fc9e90",
"number": "2",
"recording": {
"length": 275186,
"id": "24e40cd4-1be3-4a41-a78f-8290a4a4b983",
"title": "The Damage",
"disambiguation": "",
"video": false,
"first-release-date": "2004-04-19",
"disambiguation": ""
}
"length": 275186,
"artist-credit": [
{
"artist": {
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band",
"type": "Group",
"country": "GB",
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b"
},
"name": "Marillion",
"joinphrase": ""
}
],
"id": "24e40cd4-1be3-4a41-a78f-8290a4a4b983",
"title": "The Damage"
},
"position": 2,
"title": "The Damage",
"number": "2",
"id": "435ce489-3766-4b0c-be24-7a9506fc9e90"
},
{
"id": "5548e295-5db5-4894-aa75-985255820362",
"number": "3",
"title": "Dont Hurt Yourself",
"position": 3,
"recording": {
"first-release-date": "2004-05-03",
"disambiguation": "",
"length": 348746,
"id": "c9ada0dc-548f-4f06-86e2-ac4a4c55b1c6",
"title": "Dont Hurt Yourself",
"video": false
"first-release-date": "2004-05-03",
"disambiguation": "",
"video": false,
"length": 348746,
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"type": "Group",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"country": "GB"
},
"name": "Marillion"
}
]
},
"number": "3",
"position": 3,
"id": "5548e295-5db5-4894-aa75-985255820362",
"length": 348746
"length": 348746,
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"country": "GB",
"type": "Group",
"disambiguation": "British progressive rock band",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion"
},
"name": "Marillion"
}
]
},
{
"title": "Youre Gone",
"recording": {
"id": "9eac6df4-b14d-492c-b142-3aa081d842a9",
"length": 385720,
"video": false,
"title": "Youre Gone",
"first-release-date": "2004-04-19",
"disambiguation": ""
"disambiguation": "",
"video": false,
"artist-credit": [
{
"name": "Marillion",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"type": "Group",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"country": "GB"
},
"joinphrase": ""
}
],
"length": 385720,
"id": "9eac6df4-b14d-492c-b142-3aa081d842a9",
"title": "Youre Gone"
},
"position": 4,
"id": "dd0f6929-cc08-416a-982d-454e34809aaf",
"number": "4",
"length": 385720,
"position": 4,
"id": "dd0f6929-cc08-416a-982d-454e34809aaf"
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"type": "Group",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"country": "GB"
},
"name": "Marillion"
}
]
},
{
"title": "Angelina",
"id": "df6bd598-8333-4e3a-870a-63893dd87c01",
"position": 5,
"length": 462613,
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type": "Group",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"sort-name": "Marillion",
"country": "GB",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion"
},
"name": "Marillion"
}
],
"id": "df6bd598-8333-4e3a-870a-63893dd87c01",
"number": "5",
"title": "Angelina",
"recording": {
"first-release-date": "2004-05-03",
"disambiguation": "",
"length": 462613,
"id": "d718635b-8fd3-4d94-9fe3-68465737fed5",
"title": "Angelina",
"video": false
}
"id": "d718635b-8fd3-4d94-9fe3-68465737fed5",
"length": 462613,
"artist-credit": [
{
"name": "Marillion",
"artist": {
"country": "GB",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"type": "Group",
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b"
},
"joinphrase": ""
}
],
"disambiguation": "",
"video": false,
"first-release-date": "2004-05-03"
},
"position": 5
},
{
"title": "Drilling Holes",
"recording": {
"video": false,
"title": "Drilling Holes",
"length": 311666,
"id": "969d518d-5528-46c6-ac2b-ac2de5e78ba1",
"disambiguation": "",
"first-release-date": "2004-05-03"
},
"number": "6",
"position": 6,
"id": "d17e2d73-1365-4473-bf6a-b3250115f8ef",
"length": 311666
},
{
"recording": {
"video": false,
"title": "Marbles IV",
"id": "5f5c3acf-5701-4ddf-b1c8-173608cdbb7b",
"length": 86146,
"id": "969d518d-5528-46c6-ac2b-ac2de5e78ba1",
"title": "Drilling Holes",
"disambiguation": "",
"first-release-date": "2004-05-03"
"video": false,
"first-release-date": "2004-05-03",
"artist-credit": [
{
"name": "Marillion",
"artist": {
"country": "GB",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"type": "Group",
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b"
},
"joinphrase": ""
}
],
"length": 311666
},
"number": "7",
"position": 7,
"length": 86146,
"id": "acafcabd-c91a-4aa3-80fa-4f2c4b64a962",
"title": "Marbles IV"
"id": "d17e2d73-1365-4473-bf6a-b3250115f8ef",
"number": "6",
"length": 311666,
"artist-credit": [
{
"name": "Marillion",
"artist": {
"type": "Group",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band",
"country": "GB",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion"
},
"joinphrase": ""
}
]
},
{
"number": "8",
"number": "7",
"id": "acafcabd-c91a-4aa3-80fa-4f2c4b64a962",
"recording": {
"first-release-date": "2004-05-03",
"video": false,
"disambiguation": "",
"artist-credit": [
{
"joinphrase": "",
"name": "Marillion",
"artist": {
"country": "GB",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"type": "Group",
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b"
}
}
],
"length": 86146,
"id": "5f5c3acf-5701-4ddf-b1c8-173608cdbb7b",
"title": "Marbles IV"
},
"position": 7,
"title": "Marbles IV",
"length": 86146,
"artist-credit": [
{
"name": "Marillion",
"artist": {
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"country": "GB",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"sort-name": "Marillion",
"type": "Group"
},
"joinphrase": ""
}
]
},
{
"artist-credit": [
{
"joinphrase": "",
"artist": {
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"type": "Group",
"country": "GB",
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b"
},
"name": "Marillion"
}
],
"length": 730054,
"number": "8",
"id": "635021dd-a956-4830-af47-c7b9a5540deb",
"recording": {
"title": "Neverland",
"id": "18b32261-ef00-46a1-a573-7c910cd68fb9",
"length": 730054,
"artist-credit": [
{
"name": "Marillion",
"artist": {
"country": "GB",
"type": "Group",
"disambiguation": "British progressive rock band",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion"
},
"joinphrase": ""
}
],
"video": false,
"title": "Neverland"
"disambiguation": "",
"first-release-date": "2004-05-03"
},
"length": 730054,
"position": 8,
"id": "635021dd-a956-4830-af47-c7b9a5540deb",
"title": "Neverland"
}
]
}
],
"country": "XE",
"status": "Official",
"packaging-id": "ec27701a-4a22-37f4-bfac-6616e0f9750a",
"release-group": {
"first-release-date": "2004-05-03",
"primary-type": "Album",
"secondary-types": [],
"disambiguation": "",
"id": "20790e26-98e4-3ad3-a67f-b674758b942d",
"secondary-type-ids": [],
"title": "Marbles",
"primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc"
},
"disambiguation": "nondeluxe double CD with ocard",
"cover-art-archive": {
"count": 0,
"front": false,
"back": false,
"darkened": false,
"artwork": false
},
"barcode": "",
"asin": null,
"quality": "normal",
"country": "XE",
"packaging": "Jewel Case",
"asin": null,
"date": "2004-05-03",
"disambiguation": "nondeluxe double CD with ocard",
"packaging-id": "ec27701a-4a22-37f4-bfac-6616e0f9750a",
"title": "Marbles",
"release-group": {
"secondary-types": [],
"title": "Marbles",
"id": "20790e26-98e4-3ad3-a67f-b674758b942d",
"artist-credit": [
{
"joinphrase": "",
"name": "Marillion",
"artist": {
"name": "Marillion",
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"country": "GB",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"sort-name": "Marillion",
"disambiguation": "British progressive rock band",
"type": "Group"
}
}
],
"secondary-type-ids": [],
"primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc",
"primary-type": "Album",
"disambiguation": "",
"first-release-date": "2004-05-03"
},
"release-events": [
{
"date": "2004-05-03",
"area": {
"name": "Europe",
"type-id": null,
"iso-3166-1-codes": ["XE"],
"sort-name": "Europe",
"id": "89a675c2-3e37-3518-b83c-418bad59a85a",
"disambiguation": "",
"type": null
}
}
],
"text-representation": {
"script": "Latn",
"language": "eng"
},
"packaging": "Jewel Case",
"id": "d3f9b9e2-73f5-4b47-a2a7-2c2199aad608",
"status-id": "4e304316-386d-3409-af2e-78857eec5cfe"
"artist-credit": [
{
"joinphrase": "",
"artist": {
"type-id": "e431f5f6-b5d2-343d-8b36-72607fffb74b",
"name": "Marillion",
"type": "Group",
"sort-name": "Marillion",
"id": "1932f5b6-0b7b-4050-b1df-833ca89e5f44",
"disambiguation": "British progressive rock band",
"country": "GB"
},
"name": "Marillion"
}
],
"barcode": "",
"status": "Official",
"cover-art-archive": {
"count": 0,
"front": false,
"darkened": false,
"artwork": false,
"back": false
}
}