Migrate query tests to integration-test module #2
[cps.git] / integration-test / src / test / resources / data / bookstore / bookstoreData.json
1 {
2   "bookstore": {
3     "bookstore-name": "Easons",
4     "categories": [
5       {
6         "code": 1,
7         "name": "Children",
8         "books" : [
9           {
10             "title": "Matilda",
11             "lang": "English",
12             "authors": ["Roald Dahl"],
13             "editions": [1988, 2000],
14             "price": 10
15           },
16           {
17             "title": "The Gruffalo",
18             "lang": "English",
19             "authors": ["Julia Donaldson"],
20             "editions": [1999],
21             "price": 15
22           }
23         ]
24       },
25       {
26         "code": 2,
27         "name": "Thriller",
28         "books" : [
29           {
30             "title": "Annihilation",
31             "lang": "English",
32             "authors": ["Jeff VanderMeer"],
33             "editions": [2014],
34             "price": 15
35           }
36         ]
37       },
38       {
39         "code": 3,
40         "name": "Comedy",
41         "books" : [
42           {
43             "title": "Good Omens",
44             "lang": "English",
45             "authors": ["Neil Gaiman", "Terry Pratchett"],
46             "editions": [2006],
47             "price": 13
48           },
49           {
50             "title": "A Book with No Language",
51             "lang": "",
52             "authors": ["Joe Bloggs"],
53             "editions": [2023],
54             "price": 20
55           }
56         ]
57       },
58       {
59         "code": 4,
60         "name": "Computing",
61         "books" : [
62           {
63             "title": "Debian GNU/Linux",
64             "lang": "German",
65             "authors": ["Peter H. Ganten", "Wulf Alex"],
66             "editions": [2007, 2013, 2021],
67             "price": 39
68           },
69           {
70             "title": "Logarithm tables",
71             "lang": "N/A",
72             "authors": ["Joe Bloggs"],
73             "editions": [2009],
74             "price": 11
75           }
76         ]
77       }
78     ]
79   }
80 }