initial_data.json 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. [
  2. {
  3. "pk": 1,
  4. "model": "aggregation_regress.publisher",
  5. "fields": {
  6. "name": "Apress",
  7. "num_awards": 3
  8. }
  9. },
  10. {
  11. "pk": 2,
  12. "model": "aggregation_regress.publisher",
  13. "fields": {
  14. "name": "Sams",
  15. "num_awards": 1
  16. }
  17. },
  18. {
  19. "pk": 3,
  20. "model": "aggregation_regress.publisher",
  21. "fields": {
  22. "name": "Prentice Hall",
  23. "num_awards": 7
  24. }
  25. },
  26. {
  27. "pk": 4,
  28. "model": "aggregation_regress.publisher",
  29. "fields": {
  30. "name": "Morgan Kaufmann",
  31. "num_awards": 9
  32. }
  33. },
  34. {
  35. "pk": 1,
  36. "model": "aggregation_regress.book",
  37. "fields": {
  38. "publisher": 1,
  39. "isbn": "159059725",
  40. "name": "The Definitive Guide to Django: Web Development Done Right",
  41. "price": "30.00",
  42. "rating": 4.5,
  43. "authors": [1, 2],
  44. "pages": 447,
  45. "pubdate": "2007-12-6"
  46. }
  47. },
  48. {
  49. "pk": 2,
  50. "model": "aggregation_regress.book",
  51. "fields": {
  52. "publisher": 2,
  53. "isbn": "067232959",
  54. "name": "Sams Teach Yourself Django in 24 Hours",
  55. "price": "23.09",
  56. "rating": 3.0,
  57. "authors": [3],
  58. "pages": 528,
  59. "pubdate": "2008-3-3"
  60. }
  61. },
  62. {
  63. "pk": 3,
  64. "model": "aggregation_regress.book",
  65. "fields": {
  66. "publisher": 1,
  67. "isbn": "159059996",
  68. "name": "Practical Django Projects",
  69. "price": "29.69",
  70. "rating": 4.0,
  71. "authors": [4],
  72. "pages": 300,
  73. "pubdate": "2008-6-23"
  74. }
  75. },
  76. {
  77. "pk": 4,
  78. "model": "aggregation_regress.book",
  79. "fields": {
  80. "publisher": 3,
  81. "isbn": "013235613",
  82. "name": "Python Web Development with Django",
  83. "price": "29.69",
  84. "rating": 4.0,
  85. "authors": [5, 6, 7],
  86. "pages": 350,
  87. "pubdate": "2008-11-3"
  88. }
  89. },
  90. {
  91. "pk": 5,
  92. "model": "aggregation_regress.book",
  93. "fields": {
  94. "publisher": 3,
  95. "isbn": "013790395",
  96. "name": "Artificial Intelligence: A Modern Approach",
  97. "price": "82.80",
  98. "rating": 4.0,
  99. "authors": [8, 9],
  100. "pages": 1132,
  101. "pubdate": "1995-1-15"
  102. }
  103. },
  104. {
  105. "pk": 6,
  106. "model": "aggregation_regress.book",
  107. "fields": {
  108. "publisher": 4,
  109. "isbn": "155860191",
  110. "name": "Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp",
  111. "price": "75.00",
  112. "rating": 5.0,
  113. "authors": [8],
  114. "pages": 946,
  115. "pubdate": "1991-10-15"
  116. }
  117. },
  118. {
  119. "pk": 1,
  120. "model": "aggregation_regress.store",
  121. "fields": {
  122. "books": [1, 2, 3, 4, 5, 6],
  123. "name": "Amazon.com",
  124. "original_opening": "1994-4-23 9:17:42",
  125. "friday_night_closing": "23:59:59"
  126. }
  127. },
  128. {
  129. "pk": 2,
  130. "model": "aggregation_regress.store",
  131. "fields": {
  132. "books": [1, 3, 5, 6],
  133. "name": "Books.com",
  134. "original_opening": "2001-3-15 11:23:37",
  135. "friday_night_closing": "23:59:59"
  136. }
  137. },
  138. {
  139. "pk": 3,
  140. "model": "aggregation_regress.store",
  141. "fields": {
  142. "books": [3, 4, 6],
  143. "name": "Mamma and Pappa's Books",
  144. "original_opening": "1945-4-25 16:24:14",
  145. "friday_night_closing": "21:30:00"
  146. }
  147. },
  148. {
  149. "pk": 1,
  150. "model": "aggregation_regress.author",
  151. "fields": {
  152. "age": 34,
  153. "friends": [2, 4],
  154. "name": "Adrian Holovaty"
  155. }
  156. },
  157. {
  158. "pk": 2,
  159. "model": "aggregation_regress.author",
  160. "fields": {
  161. "age": 35,
  162. "friends": [1, 7],
  163. "name": "Jacob Kaplan-Moss"
  164. }
  165. },
  166. {
  167. "pk": 3,
  168. "model": "aggregation_regress.author",
  169. "fields": {
  170. "age": 45,
  171. "friends": [],
  172. "name": "Brad Dayley"
  173. }
  174. },
  175. {
  176. "pk": 4,
  177. "model": "aggregation_regress.author",
  178. "fields": {
  179. "age": 29,
  180. "friends": [1],
  181. "name": "James Bennett"
  182. }
  183. },
  184. {
  185. "pk": 5,
  186. "model": "aggregation_regress.author",
  187. "fields": {
  188. "age": 37,
  189. "friends": [6, 7],
  190. "name": "Jeffrey Forcier "
  191. }
  192. },
  193. {
  194. "pk": 6,
  195. "model": "aggregation_regress.author",
  196. "fields": {
  197. "age": 29,
  198. "friends": [5, 7],
  199. "name": "Paul Bissex"
  200. }
  201. },
  202. {
  203. "pk": 7,
  204. "model": "aggregation_regress.author",
  205. "fields": {
  206. "age": 25,
  207. "friends": [2, 5, 6],
  208. "name": "Wesley J. Chun"
  209. }
  210. },
  211. {
  212. "pk": 8,
  213. "model": "aggregation_regress.author",
  214. "fields": {
  215. "age": 57,
  216. "friends": [9],
  217. "name": "Peter Norvig"
  218. }
  219. },
  220. {
  221. "pk": 9,
  222. "model": "aggregation_regress.author",
  223. "fields": {
  224. "age": 46,
  225. "friends": [8],
  226. "name": "Stuart Russell"
  227. }
  228. }
  229. ]