/ examples / book_store.json
book_store.json
 1  {
 2    "books": [
 3      {
 4        "id": 12344,
 5        "title": "When we were very young",
 6        "published": "1924",
 7        "author_id": 1
 8      },
 9      {
10        "id": 12345,
11        "title": "Winnie the Pooh",
12        "published": "1926",
13        "author_id": 1
14      },
15      {
16        "id": 12346,
17        "title": "The Art of War",
18        "published": "5th C. BCE",
19        "author_id": 2
20      }
21    ],
22    "authors": [
23      {
24        "id": 1,
25        "name": "A. A. Milne"
26      },
27      {
28        "id": 2,
29        "name": "Sun Tzu"
30      }
31    ]
32  }