Migrate query tests to integration-test module #3
[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": "The Colour of Magic",
51             "lang": "English",
52             "authors": ["Terry Pratchett"],
53             "editions": [1983],
54             "price": 12
55           },
56           {
57             "title": "The Light Fantastic",
58             "lang": "English",
59             "authors": ["Terry Pratchett"],
60             "editions": [1986],
61             "price": 14
62           },
63           {
64             "title": "A Book with No Language",
65             "lang": "",
66             "authors": ["Joe Bloggs"],
67             "editions": [2023],
68             "price": 20
69           }
70         ]
71       },
72       {
73         "code": 4,
74         "name": "Computing",
75         "books" : [
76           {
77             "title": "Debian GNU/Linux",
78             "lang": "German",
79             "authors": ["Peter H. Ganten", "Wulf Alex"],
80             "editions": [2007, 2013, 2021],
81             "price": 39
82           },
83           {
84             "title": "Logarithm tables",
85             "lang": "N/A",
86             "authors": ["Joe Bloggs"],
87             "editions": [2009],
88             "price": 11
89           }
90         ]
91       }
92     ]
93   }
94 }