Fix compile issue after facade introduction
[cps.git] / integration-test / src / test / resources / data / bookstore / bookstoreData.json
1 {
2   "bookstore-address": [
3     {
4       "bookstore-name": "Easons",
5       "address": "Dublin,Ireland",
6       "postal-code": "D02HA21"
7     }
8   ],
9   "bookstore": {
10     "bookstore-name": "Easons",
11     "premises": {
12       "addresses": [
13         {
14           "house-number": 2,
15           "street": "Main Street",
16           "town": "Maynooth",
17           "county": "Kildare"
18         },
19         {
20           "house-number": 24,
21           "street": "Grafton Street",
22           "town": "Dublin",
23           "county": "Dublin"
24         }
25       ]
26     },
27     "categories": [
28       {
29         "code": 1,
30         "name": "Children",
31         "books" : [
32           {
33             "title": "Matilda",
34             "lang": "English",
35             "authors": ["Roald Dahl"],
36             "editions": [1988, 2000],
37             "price": 20
38           },
39           {
40             "title": "The Gruffalo",
41             "lang": "English",
42             "authors": ["Julia Donaldson"],
43             "editions": [1999],
44             "price": 15
45           }
46         ]
47       },
48       {
49         "code": 2,
50         "name": "Thriller",
51         "books" : [
52           {
53             "title": "Annihilation",
54             "lang": "English",
55             "authors": ["Jeff VanderMeer"],
56             "editions": [2014],
57             "price": 15
58           }
59         ]
60       },
61       {
62         "code": 3,
63         "name": "Comedy",
64         "books" : [
65           {
66             "title": "Good Omens",
67             "lang": "English",
68             "authors": ["Neil Gaiman", "Terry Pratchett"],
69             "editions": [2006],
70             "price": 13
71           },
72           {
73             "title": "The Colour of Magic",
74             "lang": "English",
75             "authors": ["Terry Pratchett"],
76             "editions": [1983],
77             "price": 12
78           },
79           {
80             "title": "The Light Fantastic",
81             "lang": "English",
82             "authors": ["Terry Pratchett"],
83             "editions": [1986],
84             "price": 14
85           },
86           {
87             "title": "A Book with No Language",
88             "lang": "",
89             "authors": ["Joe Bloggs"],
90             "editions": [2023],
91             "price": 20
92           }
93         ]
94       },
95       {
96         "code": 4,
97         "name": "Computing",
98         "books" : [
99           {
100             "title": "Debian GNU/Linux",
101             "lang": "German",
102             "authors": ["Peter H. Ganten", "Wulf Alex"],
103             "editions": [2007, 2013, 2021],
104             "price": 39
105           },
106           {
107             "title": "Logarithm tables",
108             "lang": "N/A",
109             "authors": ["Joe Bloggs"],
110             "editions": [2009],
111             "price": 11
112           }
113         ]
114       },
115       {
116         "code": 5,
117         "name": "Discount books",
118         "books" : [
119           {
120             "title": "Book 1",
121             "lang": "blah",
122             "authors": [],
123             "editions": [],
124             "price": 1
125           },
126           {
127             "title": "Book 2",
128             "lang": "blah",
129             "authors": [],
130             "editions": [],
131             "price": 2
132           },
133           {
134             "title": "Book 3",
135             "lang": "blah",
136             "authors": [],
137             "editions": [],
138             "price": 3
139           },
140           {
141             "title": "Book 4",
142             "lang": "blah",
143             "authors": [],
144             "editions": [],
145             "price": 4
146           },
147           {
148             "title": "Book 5",
149             "lang": "blah",
150             "authors": [],
151             "editions": [],
152             "price": 5
153           },
154           {
155             "title": "Book 6",
156             "lang": "blah",
157             "authors": [],
158             "editions": [],
159             "price": 6
160           },
161           {
162             "title": "Book 7",
163             "lang": "blah",
164             "authors": [],
165             "editions": [],
166             "price": 7
167           },
168           {
169             "title": "Book 8",
170             "lang": "blah",
171             "authors": [],
172             "editions": [],
173             "price": 8
174           },
175           {
176             "title": "Book 9",
177             "lang": "blah",
178             "authors": [],
179             "editions": [],
180             "price": 9
181           },
182           {
183             "title": "Book 10",
184             "lang": "blah",
185             "authors": [],
186             "editions": [],
187             "price": 10
188           }
189         ]
190       }
191     ]
192   }
193 }