blob: 1838b47ca9fb1aaeade6965f4b050ca5c93bd103 [file] [log] [blame]
puthuparambil.adityaf9c5e6c2022-05-12 16:31:00 +01001{
2 "stores:bookstore": {
3 "categories": [
4 {
5 "code": "02",
6 "books": [
7 {
8 "title": "A Horror book",
9 "price": "2000",
10 "pub_year": 2003,
11 "lang": "English",
12 "authors": [
13 "Joe"
14 ]
15 },
16 {
17 "title": "Another Horror Book",
18 "price": "2000",
19 "pub_year": 2003,
20 "lang": "English",
21 "authors": [
22 "Joe"
23 ]
24 }
25 ],
26 "name": "Horror"
27 },
28 {
29 "code": "100",
30 "books": [
31 {
32 "title": "A Cook book",
33 "price": "2011",
34 "pub_year": 2019,
35 "lang": "English",
36 "authors": [
37 "Rahul"
38 ]
39 }
40 ],
41 "name": "Cooking Books"
42 }
43 ]
44 }
45}