summaryrefslogtreecommitdiffstats
path: root/integration-test/src/test/resources/data/BookstoreDataNodes.json
blob: 1c6cb88f982788bc7318ec859aa3caa35c219ba7 (plain)
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
{
  "bookstore": {
    "bookstore-name": "Easons",
    "categories": [
      {
        "code": 1,
        "name": "Children",
        "books" : [
          {
            "title": "Matilda",
            "lang": "English",
            "authors": ["Roald Dahl"],
            "pub_year": 1988,
            "price": 10
          },
          {
            "title": "The Gruffalo",
            "lang": "English",
            "authors": ["Julia Donaldson"],
            "pub_year": 1999,
            "price": 15
          }
        ]
      },
      {
        "code": 2,
        "name": "Thriller",
        "books" : [
          {
            "title": "Annihilation",
            "lang": "English",
            "authors": ["Jeff VanderMeer"],
            "pub_year": 2014,
            "price": 15
          }
        ]
      },
      {
        "code": 3,
        "name": "Comedy",
        "books" : [
          {
            "title": "Good Omens",
            "lang": "English",
            "authors": ["Neil Gaiman", "Terry Pratchett"],
            "pub_year": 2006,
            "price": 13
          }
        ]
      }

    ]
  }
}