Sample State - robmroy/bandvamp GitHub Wiki
{
entities: {
bands: {
9: {
id: 9,
username: "polish_ambad",
band_name: "The Polish Ambassador",
band_description: "The Polish Ambassador is raising the bar for what it means to be...",
email: "[email protected]",
photoUrl: "...jpg",
bannerUrl: "...png",
albums: [
{id: 17,
name: "Pushing Through The Pavement",
photoUrl: "...", songs: [...]},
{id: 18, name: "Land Of The Lush", ...}
],
background_color: "black"
}
},
users: {
16: {
id: 16,
username: "VocalVamp123",
user_description: "I love music and counting.",
band_name: null,
photoUrl: "...jpeg",
email: "[email protected]",
followed_bands: [{
band_name: "Kimiko Ishizaka",
id: 15,
photoUrl: "..."},...],
purchased_albums: [{
name: "Bach: Well-Tempered Clavier, Book 1",
id: 24,
band_id: 15,
band_name: "Kimiko Ishizaka",
photoUrl: "..."}]
}
},
albums: []
},
searchResults: [{
type: "album",
id: 11,
name: "...Plays Guitar",
band_name: "Gillicuddy",
band_id: 6,
description: null,
photoUrl: "..."}
],
session: {
id: 16
},
ui: {
modal: null
}
}