Ticket #10881: srtest_dump.json

File srtest_dump.json, 1.4 KB (added by gordyt, 15 years ago)

very small sample JSON file to try and load that illustrates the problem

Line 
1[
2 {
3 "pk": "e86da84c-2e7e-11de-be8a-0019dbb65276",
4 "model": "srtest.author",
5 "fields": {
6 "name": "Jeff Forcier"
7 }
8 },
9 {
10 "pk": "f0ee1196-2e7e-11de-be8a-0019dbb65276",
11 "model": "srtest.author",
12 "fields": {
13 "name": "Paul Bissex"
14 }
15 },
16 {
17 "pk": "f44354d2-2e7e-11de-be8a-0019dbb65276",
18 "model": "srtest.author",
19 "fields": {
20 "name": "Wesley Chun"
21 }
22 },
23 {
24 "pk": "fbf8d4fe-2e7e-11de-be8a-0019dbb65276",
25 "model": "srtest.book",
26 "fields": {
27 "title": "Python Web Development with Django"
28 }
29 },
30 {
31 "pk": "3cd9ec7e-2e7f-11de-be8a-0019dbb65276",
32 "model": "srtest.bookauthors",
33 "fields": {
34 "book": "fbf8d4fe-2e7e-11de-be8a-0019dbb65276",
35 "author": "e86da84c-2e7e-11de-be8a-0019dbb65276"
36 }
37 },
38 {
39 "pk": "3f01db06-2e7f-11de-be8a-0019dbb65276",
40 "model": "srtest.bookauthors",
41 "fields": {
42 "book": "fbf8d4fe-2e7e-11de-be8a-0019dbb65276",
43 "author": "f0ee1196-2e7e-11de-be8a-0019dbb65276"
44 }
45 },
46 {
47 "pk": "41c95f1c-2e7f-11de-be8a-0019dbb65276",
48 "model": "srtest.bookauthors",
49 "fields": {
50 "book": "fbf8d4fe-2e7e-11de-be8a-0019dbb65276",
51 "author": "f44354d2-2e7e-11de-be8a-0019dbb65276"
52 }
53 }
54]
Back to Top