Band
This is a sub-object that represents a band. The structure includes information about the band's influences, awards, tours, genres, and albums.
Data structure
| Property | Type | Description |
|---|---|---|
| genres | array of strings | Musical genres associated with the band |
| influences | array of strings | Musical influences that inspired the band's sound |
| albums | array of objects | Albums released by the band |
| awards | array of objects | Awards won by the band. |
| tours | array of objects | Band's past tours. |
Example
"record":{
"actor":{
"name":"The Best Band",
"shortName":"BestBand",
"headline":"The best rock bank ever",
"resources":[],
"group": {
"type": "band",
"location": "Los Angeles, California",
"founded": "1992-01-01",
"disbanded": "2001-12-31",
"reunion": "2010-12-31",
"members": [
{
"member": "",
"role": "vocal"
},
{
"member": "",
"role": "guitar"
},
],
"band": {
"genres": [],
"influences": [],
"albums": [],
"awards": [],
"tours": [],
}
}
}
}