{
entities: {
photos: {
1: {
id: 1,
title: "sun",
desc: "bright light",
userID: 11,
img_url: "sample.org"
},
2: {
id: 2,
title: "moon",
desc: "wax and wane",
authorId: 25,
img_url: "sample.org"
},
3: {
id: 3,
title: "star",
desc: "shining so far",
userID: 11,
img_url: "sample.org"
}
},
users: {
11: {
id: 11,
username: "Dr.Cheese",
photos: [1, 3],
albums: [43, 35],
first_name: "Dr",
last_name: "Cheese"
},
25: {
id: 25,
username: "LemmenyWinks",
photos: [2],
albums: [54, 31],
first_name: "Lemmeny",
last_name: "Winks"
}
},
comments: {
10: {
userId: 11,
photoId: 1,
body: "Nice."
},
11: {
userId: 25,
photoId: 1,
body: "Nice."
},
12: {
userId: 25,
photoId: 3,
body: "Nice."
},
},
albums: {
2: {
userId: 11,
photos: [4, 5, 20]
title: "Nature",
description: "is killer"
},
4: {
userId: 25,
photos: [66, 64, 20],
title: "Safeway",
description: "is filler"
},
6: {
userId: 25,
photos: [23, 8],
title: "Ben",
description: "is stiller"
},
}
},
ui: {
loading: true/false
},
errors: {
login: ["Incorrect username/password combination"],
photo: ["Title needed"],
album: ["Title needed"]
},
session: { currentUserId: 25 }
}