Drop temp table when transaction finishes
[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             "pub_year": 1988,
14             "price": 10
15           },
16           {
17             "title": "The Gruffalo",
18             "lang": "English",
19             "authors": ["Julia Donaldson"],
20             "pub_year": 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             "pub_year": 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             "pub_year": 2006,
47             "price": 13
48           }
49         ]
50       }
51
52     ]
53   }
54 }