For documentation purposes, I’m looking for a canonical or standard name for this simple data structure. It seems like there should be one, but Google and my memory are failing me.
Here’s an example in JSON-style notation:
{
drummers: ['Ringo Starr', 'Danny Carey', 'Keith Moon'],
singers: ['Chris Cornell', 'Peter Gabriel'],
guitarists: ['Stevie Ray Vaughan', 'Slash'],
cowbell_players: [],
bassists: ['Flea']
}
A multimap, perhaps?