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