12df20e55b06bcbb4d42c8059c1cddc86ab5dfdf
[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": 10
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   }
110 }