-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata.json
341 lines (341 loc) · 27.5 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
{
"authors": [
{ "id": 1, "name": "J. R. R. Tolkien", "date_of_birth": "1892-01-03", "date_of_death": "1973-09-02" },
{ "id": 2, "name": "J. K. Rowling", "date_of_birth": "1965-07-31", "date_of_death": null }
],
"series": [
{ "id": 1, "title": "The Lord of the Rings", "photo_id": 16 },
{ "id": 2, "title": "Harry Potter", "photo_id": 17 }
],
"books": [
{ "id": 1, "series_id": 1, "author_id": 1, "title": "The Fellowship of the Ring", "date_published": "1954-07-29" },
{ "id": 2, "series_id": 1, "author_id": 1, "title": "The Two Towers", "date_published": "1954-11-11" },
{ "id": 3, "series_id": 1, "author_id": 1, "title": "Return of the King", "date_published": "1955-10-20" },
{ "id": 4, "series_id": 2, "author_id": 2, "title": "Harry Potter and the Philosopher's Stone", "date_published": "1997-06-26" },
{ "id": 5, "series_id": 2, "author_id": 2, "title": "Harry Potter and the Chamber of Secrets", "date_published": "1998-07-02" },
{ "id": 6, "series_id": 2, "author_id": 2, "title": "Harry Potter and the Prisoner of Azkaban", "date_published": "1999-07-08" },
{ "id": 7, "series_id": 2, "author_id": 2, "title": "Harry Potter and the Goblet of Fire", "date_published": "2000-07-08" },
{ "id": 8, "series_id": 2, "author_id": 2, "title": "Harry Potter and the Order of the Phoenix", "date_published": "2003-06-21" },
{ "id": 9, "series_id": 2, "author_id": 2, "title": "Harry Potter and the Half-Blood Prince", "date_published": "2005-07-16" },
{ "id": 10, "series_id": 2, "author_id": 2, "title": "Harry Potter and the Deathly Hallows", "date_published": "2007-07-21" },
{ "id": 11, "series_id": null, "author_id": 1, "title": "The Hobbit", "date_published": "1937-09-21" }
],
"chapters": [
{ "id": 1, "title": "A Long-expected Party", "book_id": 1, "ordering": 1 },
{ "id": 2, "title": "The Shadow of the Past", "book_id": 1, "ordering": 2 },
{ "id": 3, "title": "Three is Company", "book_id": 1, "ordering": 3 },
{ "id": 4, "title": "A Short Cut to Mushrooms", "book_id": 1, "ordering": 4 },
{ "id": 5, "title": "A Conspiracy Unmasked", "book_id": 1, "ordering": 5 },
{ "id": 6, "title": "The Old Forest", "book_id": 1, "ordering": 6 },
{ "id": 7, "title": "In the House of Tom Bombadil", "book_id": 1, "ordering": 7 },
{ "id": 8, "title": "Fog on the Barrow-downs", "book_id": 1, "ordering": 8 },
{ "id": 9, "title": "At the Sign of the Prancing Pony", "book_id": 1, "ordering": 9 },
{ "id": 10, "title": "Strider", "book_id": 1, "ordering": 10 },
{ "id": 11, "title": "A Knife in the Dark", "book_id": 1, "ordering": 11 },
{ "id": 12, "title": "Flight to the Ford", "book_id": 1, "ordering": 12 },
{ "id": 13, "title": "Many Meetings", "book_id": 1, "ordering": 13 },
{ "id": 14, "title": "The Council of Elrond", "book_id": 1, "ordering": 14 },
{ "id": 15, "title": "The Ring goes South", "book_id": 1, "ordering": 15 },
{ "id": 16, "title": "A Journey in the Dark", "book_id": 1, "ordering": 16 },
{ "id": 17, "title": "The Bridge of Khazad-dûm", "book_id": 1, "ordering": 17 },
{ "id": 18, "title": "Lothlórien", "book_id": 1, "ordering": 18 },
{ "id": 19, "title": "The Mirror of Galadriel", "book_id": 1, "ordering": 19 },
{ "id": 20, "title": "Farewell to Lórien", "book_id": 1, "ordering": 20 },
{ "id": 21, "title": "The Great River", "book_id": 1, "ordering": 21 },
{ "id": 22, "title": "The Breaking of the Fellowship", "book_id": 1, "ordering": 22 },
{ "id": 23, "title": "The Departure of Boromir", "book_id": 2, "ordering": 1 },
{ "id": 24, "title": "The Riders of Rohan", "book_id": 2, "ordering": 2 },
{ "id": 25, "title": "The Uruk-hai", "book_id": 2, "ordering": 3 },
{ "id": 26, "title": "Treebeard", "book_id": 2, "ordering": 4 },
{ "id": 27, "title": "The White Rider", "book_id": 2, "ordering": 5 },
{ "id": 28, "title": "The King of the Golden Hall", "book_id": 2, "ordering": 6 },
{ "id": 29, "title": "Helm's Deep", "book_id": 2, "ordering": 7 },
{ "id": 30, "title": "The Road to Isengard", "book_id": 2, "ordering": 8 },
{ "id": 31, "title": "Flotsam and Jetsam", "book_id": 2, "ordering": 9 },
{ "id": 32, "title": "The Voice of Saruman", "book_id": 2, "ordering": 10 },
{ "id": 33, "title": "The Palantír", "book_id": 2, "ordering": 11 },
{ "id": 34, "title": "The Taming of Smeagol", "book_id": 2, "ordering": 12 },
{ "id": 35, "title": "The Passage of the Marshes", "book_id": 2, "ordering": 13 },
{ "id": 36, "title": "The Black Gate is Closed", "book_id": 2, "ordering": 14 },
{ "id": 37, "title": "Of Herbs and Stewed Rabbit", "book_id": 2, "ordering": 15 },
{ "id": 38, "title": "The Window on the West", "book_id": 2, "ordering": 16 },
{ "id": 39, "title": "The Forbidden Pool", "book_id": 2, "ordering": 17 },
{ "id": 40, "title": "Journey to the Cross-roads", "book_id": 2, "ordering": 18 },
{ "id": 41, "title": "The Stairs of Cirith Ungol", "book_id": 2, "ordering": 19 },
{ "id": 42, "title": "Shelob's Lair", "book_id": 2, "ordering": 20 },
{ "id": 43, "title": "The Choices of Master Samwise", "book_id": 2, "ordering": 21 },
{ "id": 44, "title": "Minas Tirith", "book_id": 3, "ordering": 1 },
{ "id": 45, "title": "The Passing of the Grey Company", "book_id": 3, "ordering": 2 },
{ "id": 46, "title": "The Muster of Rohan", "book_id": 3, "ordering": 3 },
{ "id": 47, "title": "The Siege of Gondor", "book_id": 3, "ordering": 4 },
{ "id": 48, "title": "The Ride of the Rohirrim", "book_id": 3, "ordering": 5 },
{ "id": 49, "title": "The Battle of the Pelennor Fields", "book_id": 3, "ordering": 6 },
{ "id": 50, "title": "The Pyre of Denethor", "book_id": 3, "ordering": 7 },
{ "id": 51, "title": "The Houses of Healing", "book_id": 3, "ordering": 8 },
{ "id": 52, "title": "The Last Debate", "book_id": 3, "ordering": 9 },
{ "id": 53, "title": "The Black Gate Opens", "book_id": 3, "ordering": 10 },
{ "id": 54, "title": "The Tower of Cirith Ungol", "book_id": 3, "ordering": 11 },
{ "id": 55, "title": "The Land of Shadow", "book_id": 3, "ordering": 12 },
{ "id": 56, "title": "Mount Doom", "book_id": 3, "ordering": 13 },
{ "id": 57, "title": "The Field of Cormallen", "book_id": 3, "ordering": 14 },
{ "id": 58, "title": "The Steward and the King", "book_id": 3, "ordering": 15 },
{ "id": 59, "title": "Many Partings", "book_id": 3, "ordering": 16 },
{ "id": 60, "title": "Homeward Bound", "book_id": 3, "ordering": 17 },
{ "id": 61, "title": "The Scouring of the Shire", "book_id": 3, "ordering": 18 },
{ "id": 62, "title": "The Grey Havens", "book_id": 3, "ordering": 19 },
{ "id": 63, "title": "The Boy Who Lived", "book_id": 4, "ordering": 1 },
{ "id": 64, "title": "The Vanishing Glass", "book_id": 4, "ordering": 2 },
{ "id": 65, "title": "The Letters from No One", "book_id": 4, "ordering": 3 },
{ "id": 66, "title": "The Keeper of the Keys", "book_id": 4, "ordering": 4 },
{ "id": 67, "title": "Diagon Alley", "book_id": 4, "ordering": 5 },
{ "id": 68, "title": "The Journey from Platform Nine and Three Quarters", "book_id": 4, "ordering": 6 },
{ "id": 69, "title": "The Sorting Hat", "book_id": 4, "ordering": 7 },
{ "id": 70, "title": "The Potions Teacher", "book_id": 4, "ordering": 8 },
{ "id": 71, "title": "The Midnight Duel", "book_id": 4, "ordering": 9 },
{ "id": 72, "title": "Hallowe'en", "book_id": 4, "ordering": 10 },
{ "id": 73, "title": "Quidditch", "book_id": 4, "ordering": 11 },
{ "id": 74, "title": "The Mirror of Erised", "book_id": 4, "ordering": 12 },
{ "id": 75, "title": "Nicolas", "book_id": 4, "ordering": 13 },
{ "id": 76, "title": "Norbert the Norwegian Ridgeback", "book_id": 4, "ordering": 14 },
{ "id": 77, "title": "The Forbidden Forest", "book_id": 4, "ordering": 15 },
{ "id": 78, "title": "Through the Trapdoor", "book_id": 4, "ordering": 16 },
{ "id": 79, "title": "The Man with Two Faces", "book_id": 4, "ordering": 17 },
{ "id": 80, "title": "The Worst Birthday", "book_id": 5, "ordering": 1 },
{ "id": 81, "title": "Dobby's Warning", "book_id": 5, "ordering": 2 },
{ "id": 82, "title": "The Burrow", "book_id": 5, "ordering": 3 },
{ "id": 83, "title": "At Flourish and Blotts", "book_id": 5, "ordering": 4 },
{ "id": 84, "title": "The Whomping Willow", "book_id": 5, "ordering": 5 },
{ "id": 85, "title": "Gilderoy Lockhart", "book_id": 5, "ordering": 6 },
{ "id": 86, "title": "Mudbloods and Murmurs", "book_id": 5, "ordering": 7 },
{ "id": 87, "title": "The Deathday Party", "book_id": 5, "ordering": 8 },
{ "id": 88, "title": "The Writing on the Wall", "book_id": 5, "ordering": 9 },
{ "id": 89, "title": "The Rogue Bludger", "book_id": 5, "ordering": 10 },
{ "id": 90, "title": "The Duelling Club", "book_id": 5, "ordering": 11 },
{ "id": 91, "title": "The Polyjuice Potion", "book_id": 5, "ordering": 12 },
{ "id": 92, "title": "The Very Secret Diary", "book_id": 5, "ordering": 13 },
{ "id": 93, "title": "Cornelius Fudge", "book_id": 5, "ordering": 14 },
{ "id": 94, "title": "Aragog", "book_id": 5, "ordering": 15 },
{ "id": 95, "title": "The Chamber of Secrets", "book_id": 5, "ordering": 16 },
{ "id": 96, "title": "The Heir of Slytherin", "book_id": 5, "ordering": 17 },
{ "id": 97, "title": "Dobby's Reward", "book_id": 5, "ordering": 18 },
{ "id": 98, "title": "Owl Post", "book_id": 6, "ordering": 1 },
{ "id": 99, "title": "Aunt Marge's Big Mistake", "book_id": 6, "ordering": 2 },
{ "id": 100, "title": "The Knight Bus", "book_id": 6, "ordering": 3 },
{ "id": 101, "title": "The Leaky Cauldron", "book_id": 6, "ordering": 4 },
{ "id": 102, "title": "The Dementor", "book_id": 6, "ordering": 5 },
{ "id": 103, "title": "Talons and Tea Leaves", "book_id": 6, "ordering": 6 },
{ "id": 104, "title": "The Boggart in the Wardrobe", "book_id": 6, "ordering": 7 },
{ "id": 105, "title": "Flight of the Fat Lady", "book_id": 6, "ordering": 8 },
{ "id": 106, "title": "Grim Defeat", "book_id": 6, "ordering": 9 },
{ "id": 107, "title": "The Marauder's Map", "book_id": 6, "ordering": 10 },
{ "id": 108, "title": "The Firebolt", "book_id": 6, "ordering": 11 },
{ "id": 109, "title": "The Patronus", "book_id": 6, "ordering": 12 },
{ "id": 110, "title": "Gryffindor vs Ravenclaw", "book_id": 6, "ordering": 13 },
{ "id": 111, "title": "Snape's Grudge", "book_id": 6, "ordering": 14 },
{ "id": 112, "title": "The Quidditch Final", "book_id": 6, "ordering": 15 },
{ "id": 113, "title": "Professor Trelawney's Prediction", "book_id": 6, "ordering": 16 },
{ "id": 114, "title": "Cat, Rat and Dog", "book_id": 6, "ordering": 17 },
{ "id": 115, "title": "Moony, Wormtail, Padfoot and Prongs", "book_id": 6, "ordering": 18 },
{ "id": 116, "title": "The Servant of Lord Voldemort", "book_id": 6, "ordering": 19 },
{ "id": 117, "title": "The Dementors' Kiss", "book_id": 6, "ordering": 20 },
{ "id": 118, "title": "Hermione's Secret", "book_id": 6, "ordering": 21 },
{ "id": 119, "title": "Owl Post Again", "book_id": 6, "ordering": 22 },
{ "id": 120, "title": "The Riddle House", "book_id": 7, "ordering": 1 },
{ "id": 121, "title": "The Scar", "book_id": 7, "ordering": 2 },
{ "id": 122, "title": "The Invitation", "book_id": 7, "ordering": 3 },
{ "id": 123, "title": "Back to the Burrow", "book_id": 7, "ordering": 4 },
{ "id": 124, "title": "Weasleys' Wizard Wheezes", "book_id": 7, "ordering": 5 },
{ "id": 125, "title": "The Portkey", "book_id": 7, "ordering": 6 },
{ "id": 126, "title": "Bagman and Crouch", "book_id": 7, "ordering": 7 },
{ "id": 127, "title": "The Quidditch World Cup", "book_id": 7, "ordering": 8 },
{ "id": 128, "title": "The Dark Mark", "book_id": 7, "ordering": 9 },
{ "id": 129, "title": "Mayhem at the Ministry", "book_id": 7, "ordering": 10 },
{ "id": 130, "title": "Aboard the Hogwarts Express", "book_id": 7, "ordering": 11 },
{ "id": 131, "title": "The Triwizard Tournament", "book_id": 7, "ordering": 12 },
{ "id": 132, "title": "Mad-Eye Moody", "book_id": 7, "ordering": 13 },
{ "id": 133, "title": "The Unforgivable Curses", "book_id": 7, "ordering": 14 },
{ "id": 134, "title": "Beauxbatons and Durmstrang", "book_id": 7, "ordering": 15 },
{ "id": 135, "title": "The Goblet of Fire", "book_id": 7, "ordering": 16 },
{ "id": 136, "title": "The Four Champions", "book_id": 7, "ordering": 17 },
{ "id": 137, "title": "The Weighing of the Wands", "book_id": 7, "ordering": 18 },
{ "id": 138, "title": "The Hungarian Horntail", "book_id": 7, "ordering": 19 },
{ "id": 139, "title": "The First Task", "book_id": 7, "ordering": 20 },
{ "id": 140, "title": "The House-Elf Liberation Front", "book_id": 7, "ordering": 21 },
{ "id": 141, "title": "The Unexpected Task", "book_id": 7, "ordering": 22 },
{ "id": 142, "title": "The Yule Ball", "book_id": 7, "ordering": 23 },
{ "id": 143, "title": "Rita Skeeter's Scoop", "book_id": 7, "ordering": 24 },
{ "id": 144, "title": "The Egg and the Eye", "book_id": 7, "ordering": 25 },
{ "id": 145, "title": "The Second Task", "book_id": 7, "ordering": 26 },
{ "id": 146, "title": "Padfoot Returns", "book_id": 7, "ordering": 27 },
{ "id": 147, "title": "The Madness of Mr Crouch", "book_id": 7, "ordering": 28 },
{ "id": 148, "title": "The Dream", "book_id": 7, "ordering": 29 },
{ "id": 149, "title": "The Pensieve", "book_id": 7, "ordering": 30 },
{ "id": 150, "title": "The Third Task", "book_id": 7, "ordering": 31 },
{ "id": 151, "title": "Flesh, Blood and Bone", "book_id": 7, "ordering": 32 },
{ "id": 152, "title": "The Death Eaters", "book_id": 7, "ordering": 33 },
{ "id": 153, "title": "Priori Incantatem", "book_id": 7, "ordering": 34 },
{ "id": 154, "title": "Veritaserum", "book_id": 7, "ordering": 35 },
{ "id": 155, "title": "The Parting of the Ways", "book_id": 7, "ordering": 36 },
{ "id": 156, "title": "The Beginning", "book_id": 7, "ordering": 37 },
{ "id": 157, "title": "Dudley Demented", "book_id": 8, "ordering": 1 },
{ "id": 158, "title": "A Peck of Owls", "book_id": 8, "ordering": 2 },
{ "id": 159, "title": "The Advance Guard", "book_id": 8, "ordering": 3 },
{ "id": 160, "title": "Number Twelve, Grimmauld Place", "book_id": 8, "ordering": 4 },
{ "id": 161, "title": "The Order of the Phoenix", "book_id": 8, "ordering": 5 },
{ "id": 162, "title": "The Noble and Most Ancient House of Black", "book_id": 8, "ordering": 6 },
{ "id": 163, "title": "Ministry of Magic", "book_id": 8, "ordering": 7 },
{ "id": 164, "title": "The Hearing", "book_id": 8, "ordering": 8 },
{ "id": 165, "title": "The Woes of Mrs Weasley", "book_id": 8, "ordering": 9 },
{ "id": 166, "title": "Luna Lovegood", "book_id": 8, "ordering": 10 },
{ "id": 167, "title": "The Sorting Hat's New Song", "book_id": 8, "ordering": 11 },
{ "id": 168, "title": "Professor Umbridge", "book_id": 8, "ordering": 12 },
{ "id": 169, "title": "Detention with Dolores", "book_id": 8, "ordering": 13 },
{ "id": 170, "title": "Percy and Padfoot", "book_id": 8, "ordering": 14 },
{ "id": 171, "title": "The Hogwarts High Inquisitor", "book_id": 8, "ordering": 15 },
{ "id": 172, "title": "In the Hog's Head", "book_id": 8, "ordering": 16 },
{ "id": 173, "title": "Educational Decree Number Twenty-four", "book_id": 8, "ordering": 17 },
{ "id": 174, "title": "Dumbledore's Army", "book_id": 8, "ordering": 18 },
{ "id": 175, "title": "The Lion and the Serpent", "book_id": 8, "ordering": 19 },
{ "id": 176, "title": "Hagrid's Tale", "book_id": 8, "ordering": 20 },
{ "id": 177, "title": "The Eye of the Snake", "book_id": 8, "ordering": 21 },
{ "id": 178, "title": "St Mungo's Hospital for Magical Maladies and Injuries", "book_id": 8, "ordering": 22 },
{ "id": 179, "title": "Christmas on the Closed Ward", "book_id": 8, "ordering": 23 },
{ "id": 180, "title": "Occlumency", "book_id": 8, "ordering": 24 },
{ "id": 181, "title": "The Beetle at Bay", "book_id": 8, "ordering": 25 },
{ "id": 182, "title": "Seen and Unforeseen", "book_id": 8, "ordering": 26 },
{ "id": 183, "title": "The Centaur and the Sneak", "book_id": 8, "ordering": 27 },
{ "id": 184, "title": "Snape's Worst Memory", "book_id": 8, "ordering": 28 },
{ "id": 185, "title": "Careers Advice", "book_id": 8, "ordering": 29 },
{ "id": 186, "title": "Grawp", "book_id": 8, "ordering": 30 },
{ "id": 187, "title": "OWLs", "book_id": 8, "ordering": 31 },
{ "id": 188, "title": "Out of the Fire", "book_id": 8, "ordering": 32 },
{ "id": 189, "title": "Fight and Flight", "book_id": 8, "ordering": 33 },
{ "id": 190, "title": "The Department of Mysteries", "book_id": 8, "ordering": 34 },
{ "id": 191, "title": "Beyond the Veil", "book_id": 8, "ordering": 35 },
{ "id": 192, "title": "The Only One He Ever Feared", "book_id": 8, "ordering": 36 },
{ "id": 193, "title": "The Lost Prophecy", "book_id": 8, "ordering": 37 },
{ "id": 194, "title": "The Second War Begins", "book_id": 8, "ordering": 38 },
{ "id": 195, "title": "The Other Minister", "book_id": 9, "ordering": 1 },
{ "id": 196, "title": "Spinner's End", "book_id": 9, "ordering": 2 },
{ "id": 197, "title": "Will and Won't", "book_id": 9, "ordering": 3 },
{ "id": 198, "title": "Horace Slughorn", "book_id": 9, "ordering": 4 },
{ "id": 199, "title": "An Excess of Phlegm", "book_id": 9, "ordering": 5 },
{ "id": 200, "title": "Draco's Detour", "book_id": 9, "ordering": 6 },
{ "id": 201, "title": "The Slug Club", "book_id": 9, "ordering": 7 },
{ "id": 202, "title": "Snape Victorious", "book_id": 9, "ordering": 8 },
{ "id": 203, "title": "The Half-Blood Prince", "book_id": 9, "ordering": 9 },
{ "id": 204, "title": "The House of Gaunt", "book_id": 9, "ordering": 10 },
{ "id": 205, "title": "Hermione's Helping Hand", "book_id": 9, "ordering": 11 },
{ "id": 206, "title": "Silver and Opals", "book_id": 9, "ordering": 12 },
{ "id": 207, "title": "The Secret Riddle", "book_id": 9, "ordering": 13 },
{ "id": 208, "title": "Felix Felicis", "book_id": 9, "ordering": 14 },
{ "id": 209, "title": "The Unbreakable Vow", "book_id": 9, "ordering": 15 },
{ "id": 210, "title": "A Very Frosty Christmas", "book_id": 9, "ordering": 16 },
{ "id": 211, "title": "A Sluggish Memory", "book_id": 9, "ordering": 17 },
{ "id": 212, "title": "Birthday Surprises", "book_id": 9, "ordering": 18 },
{ "id": 213, "title": "Elf Tails", "book_id": 9, "ordering": 19 },
{ "id": 214, "title": "Lord Voldemort's Request", "book_id": 9, "ordering": 20 },
{ "id": 215, "title": "The Unknowable Room", "book_id": 9, "ordering": 21 },
{ "id": 216, "title": "After the Burial", "book_id": 9, "ordering": 22 },
{ "id": 217, "title": "Horcruxes", "book_id": 9, "ordering": 23 },
{ "id": 218, "title": "Sectumsempra", "book_id": 9, "ordering": 24 },
{ "id": 219, "title": "The Seer Overheard", "book_id": 9, "ordering": 25 },
{ "id": 220, "title": "The Cave", "book_id": 9, "ordering": 26 },
{ "id": 221, "title": "The Lightning-Struck Tower", "book_id": 9, "ordering": 27 },
{ "id": 222, "title": "The Flight of the Prince", "book_id": 9, "ordering": 28 },
{ "id": 223, "title": "The Phoenix Lament", "book_id": 9, "ordering": 29 },
{ "id": 224, "title": "The White Tomb", "book_id": 9, "ordering": 30 },
{ "id": 225, "title": "The Dark Lord Ascending", "book_id": 10, "ordering": 1 },
{ "id": 226, "title": "In Memoriam", "book_id": 10, "ordering": 2 },
{ "id": 227, "title": "The Dursleys Departing", "book_id": 10, "ordering": 3 },
{ "id": 228, "title": "The Seven Potters", "book_id": 10, "ordering": 4 },
{ "id": 229, "title": "Fallen Warrior", "book_id": 10, "ordering": 5 },
{ "id": 230, "title": "The Ghoul in Pyjamas", "book_id": 10, "ordering": 6 },
{ "id": 231, "title": "The Will of Albus Dumbledore", "book_id": 10, "ordering": 7 },
{ "id": 232, "title": "The Wedding", "book_id": 10, "ordering": 8 },
{ "id": 233, "title": "A Place to Hide", "book_id": 10, "ordering": 9 },
{ "id": 234, "title": "Kreacher's Tale", "book_id": 10, "ordering": 10 },
{ "id": 235, "title": "The Bribe", "book_id": 10, "ordering": 11 },
{ "id": 236, "title": "Magic is Might", "book_id": 10, "ordering": 12 },
{ "id": 237, "title": "The Muggle-Born Registration Commission", "book_id": 10, "ordering": 13 },
{ "id": 238, "title": "The Thief", "book_id": 10, "ordering": 14 },
{ "id": 239, "title": "The Goblin's Revenge", "book_id": 10, "ordering": 15 },
{ "id": 240, "title": "Godric's Hollow", "book_id": 10, "ordering": 16 },
{ "id": 241, "title": "Bathilda's Secret", "book_id": 10, "ordering": 17 },
{ "id": 242, "title": "The Life and Lies of Albus Dumbledore", "book_id": 10, "ordering": 18 },
{ "id": 243, "title": "The Silver Doe", "book_id": 10, "ordering": 19 },
{ "id": 244, "title": "Xenophilius Lovegood", "book_id": 10, "ordering": 20 },
{ "id": 245, "title": "The Tale of the Three Brothers", "book_id": 10, "ordering": 21 },
{ "id": 246, "title": "The Deathly Hallows", "book_id": 10, "ordering": 22 },
{ "id": 247, "title": "Malfoy Manor", "book_id": 10, "ordering": 23 },
{ "id": 248, "title": "The Wandmaker", "book_id": 10, "ordering": 24 },
{ "id": 249, "title": "Shell Cottage", "book_id": 10, "ordering": 25 },
{ "id": 250, "title": "Gringotts", "book_id": 10, "ordering": 26 },
{ "id": 251, "title": "The Final Hiding Place", "book_id": 10, "ordering": 27 },
{ "id": 252, "title": "The Missing Mirror", "book_id": 10, "ordering": 28 },
{ "id": 253, "title": "The Lost Diadem", "book_id": 10, "ordering": 29 },
{ "id": 254, "title": "The Sacking of Severus Snape", "book_id": 10, "ordering": 30 },
{ "id": 255, "title": "The Battle of Hogwarts", "book_id": 10, "ordering": 31 },
{ "id": 256, "title": "The Elder Wand", "book_id": 10, "ordering": 32 },
{ "id": 257, "title": "The Prince's Tale", "book_id": 10, "ordering": 33 },
{ "id": 258, "title": "The Forest Again", "book_id": 10, "ordering": 34 },
{ "id": 259, "title": "King's Cross", "book_id": 10, "ordering": 35 },
{ "id": 260, "title": "The Flaw in the Plan", "book_id": 10, "ordering": 36 },
{ "id": 271, "title": "An Unexpected Party", "book_id": 11, "ordering": 1 },
{ "id": 272, "title": "Roast Mutton", "book_id": 11, "ordering": 2 },
{ "id": 273, "title": "A Short Rest", "book_id": 11, "ordering": 3 },
{ "id": 274, "title": "Over Hill And Under Hill", "book_id": 11, "ordering": 4 },
{ "id": 275, "title": "Riddles In The Dark", "book_id": 11, "ordering": 5 },
{ "id": 276, "title": "Out Of The Frying-Pan Into The Fire", "book_id": 11, "ordering": 6 },
{ "id": 277, "title": "Queer Lodgings", "book_id": 11, "ordering": 7 },
{ "id": 278, "title": "Flies And Spiders", "book_id": 11, "ordering": 8 },
{ "id": 279, "title": "Barrels Out Of Bond", "book_id": 11, "ordering": 9 },
{ "id": 280, "title": "A Warm Welcome", "book_id": 11, "ordering": 10 },
{ "id": 281, "title": "On The Doorstep", "book_id": 11, "ordering": 11 },
{ "id": 282, "title": "Inside Information", "book_id": 11, "ordering": 12 },
{ "id": 283, "title": "Not At Home", "book_id": 11, "ordering": 13 },
{ "id": 284, "title": "Fire And Water", "book_id": 11, "ordering": 14 },
{ "id": 285, "title": "The Gathering Of The Clouds", "book_id": 11, "ordering": 15 },
{ "id": 286, "title": "A Thief In The Night", "book_id": 11, "ordering": 16 },
{ "id": 287, "title": "The Clouds Burst", "book_id": 11, "ordering": 17 },
{ "id": 288, "title": "The Return Journey", "book_id": 11, "ordering": 18 },
{ "id": 289, "title": "The Last Stage", "book_id": 11, "ordering": 19 }
],
"stores": [
{ "id": 1, "name": "empty store" },
{ "id": 2, "name": "full store" }
],
"books_stores": [
{ "store_id": 2, "book_id": 1 },
{ "store_id": 2, "book_id": 2 },
{ "store_id": 2, "book_id": 3 },
{ "store_id": 2, "book_id": 4 },
{ "store_id": 2, "book_id": 5 },
{ "store_id": 2, "book_id": 5 },
{ "store_id": 2, "book_id": 6 },
{ "store_id": 2, "book_id": 7 },
{ "store_id": 2, "book_id": 8 },
{ "store_id": 2, "book_id": 9 },
{ "store_id": 2, "book_id": 10 },
{ "store_id": 2, "book_id": 11 }
],
"photos": [
{ "id": 1, "imageable_id": 1, "imageable_type": "authors", "title": "J. R. R. Tolkein", "uri": "http://upload.wikimedia.org/wikipedia/commons/b/b4/Tolkien_1916.jpg" },
{ "id": 2, "imageable_id": 1, "imageable_type": "authors", "title": "Family Postcard of J. R. R. Tolkein", "uri": "http://upload.wikimedia.org/wikipedia/commons/5/5b/Mabel_Suffield_Christmas_Card.jpg" },
{ "id": 3, "imageable_id": 2, "imageable_type": "authors", "title": "J. K. Rowling", "uri": "http://upload.wikimedia.org/wikipedia/commons/5/5d/J._K._Rowling_2010.jpg" },
{ "id": 4, "imageable_id": 2, "imageable_type": "authors", "title": "J. K. Rowling's Childhood Home", "uri": "http://upload.wikimedia.org/wikipedia/commons/e/e7/Church_Cottage%2C_Tutshill.jpg" },
{ "id": 5, "imageable_id": 1, "imageable_type": "books", "title": "The Fellowship of the Ring", "uri": "http://upload.wikimedia.org/wikipedia/en/7/7e/FellowshipOfTheRing.JPG" },
{ "id": 6, "imageable_id": 2, "imageable_type": "books", "title": "The Two Towers", "uri": "http://upload.wikimedia.org/wikipedia/en/2/2f/The_Two_Towers_%28novel%29_-1st_edition_cover.JPG" },
{ "id": 7, "imageable_id": 3, "imageable_type": "books", "title": "Return of the King", "uri": "http://upload.wikimedia.org/wikipedia/en/8/89/ReturnOfTheKing.JPG" },
{ "id": 8, "imageable_id": 4, "imageable_type": "books", "title": "Harry Potter and the Philosopher's Stone", "uri": "http://upload.wikimedia.org/wikipedia/en/6/6b/Harry_Potter_and_the_Philosopher%27s_Stone_Book_Cover.jpg" },
{ "id": 9, "imageable_id": 5, "imageable_type": "books", "title": "Harry Potter and the Chamber of Secrets", "uri": "http://upload.wikimedia.org/wikipedia/en/5/5c/Harry_Potter_and_the_Chamber_of_Secrets.jpg" },
{ "id": 10, "imageable_id": 6, "imageable_type": "books", "title": "Harry Potter and the Prisoner of Azkaban", "uri": "http://upload.wikimedia.org/wikipedia/en/a/a0/Harry_Potter_and_the_Prisoner_of_Azkaban.jpg" },
{ "id": 11, "imageable_id": 7, "imageable_type": "books", "title": "Harry Potter and the Goblet of Fire", "uri": "http://upload.wikimedia.org/wikipedia/en/c/c7/Harry_Potter_and_the_Goblet_of_Fire.jpg" },
{ "id": 12, "imageable_id": 8, "imageable_type": "books", "title": "Harry Potter and the Order of the Phoenix", "uri": "http://upload.wikimedia.org/wikipedia/en/7/70/Harry_Potter_and_the_Order_of_the_Phoenix.jpg" },
{ "id": 13, "imageable_id": 9, "imageable_type": "books", "title": "Harry Potter and the Half-Blood Prince", "uri": "http://upload.wikimedia.org/wikipedia/en/f/f0/Harry_Potter_and_the_Half-Blood_Prince.jpg" },
{ "id": 14, "imageable_id": 10, "imageable_type": "books", "title": "Harry Potter and the Deathly Hallows", "uri": "http://upload.wikimedia.org/wikipedia/en/a/a9/Harry_Potter_and_the_Deathly_Hallows.jpg" },
{ "id": 15, "imageable_id": 11, "imageable_type": "books", "title": "The Hobbit", "uri": "http://upload.wikimedia.org/wikipedia/en/4/4a/TheHobbit_FirstEdition.jpg" },
{ "id": 16, "imageable_id": 1, "imageable_type": "series", "title": "Lord of the Rings", "uri": "http://img2.wikia.nocookie.net/__cb20130619012726/lotr/images/1/11/The_Lord_of_the_Rings_First_Copies.jpg" },
{ "id": 17, "imageable_id": 2, "imageable_type": "series", "title": "Harry Potter", "uri": "http://upload.wikimedia.org/wikipedia/commons/6/6e/Harry_Potter_wordmark.svg" }
]
}