mirror of
https://github.com/gabehf/music-importer.git
synced 2026-04-22 11:31:52 -07:00
text representation and disambiguation to releases
This commit is contained in:
parent
a937f4a38e
commit
b910e32d6c
3 changed files with 552 additions and 391 deletions
12
discover.go
12
discover.go
|
|
@ -26,10 +26,14 @@ type mbMedia struct {
|
|||
}
|
||||
|
||||
type mbRelease struct {
|
||||
ID string `json:"id"`
|
||||
Title string `json:"title"`
|
||||
Date string `json:"date"`
|
||||
Country string `json:"country"`
|
||||
ID string `json:"id"`
|
||||
Title string `json:"title"`
|
||||
Date string `json:"date"`
|
||||
Country string `json:"country"`
|
||||
Disambiguation string `json:"disambiguation"`
|
||||
TextRepresentation struct {
|
||||
Language string `json:"language"`
|
||||
} `json:"text-representation"`
|
||||
Media []mbMedia `json:"media"`
|
||||
ArtistCredit []mbArtistCredit `json:"artist-credit"`
|
||||
ReleaseGroup struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue