4b8ed3dab1940e947e637563bda2a9e511082fab
[cps.git] / cps-service / src / test / resources / bookstore.json
1 {
2    "multiple-data-tree:invoice": [
3       {
4          "ProductID": "1",
5          "ProductName": "Apple",
6          "price": "100",
7          "stock": false
8       }
9    ],
10    "test:bookstore":{
11       "bookstore-name": "Chapters/Easons",
12       "categories": [
13          {
14             "code": "01/1",
15             "name": "SciFi",
16             "books": [
17                {
18                   "authors": [
19                      "Iain M. Banks"
20                   ],
21                   "lang": "en/it",
22                   "price": "895",
23                   "pub_year": "1994",
24                   "title": "Feersum Endjinn/Endjinn Feersum"
25                },
26                {
27                   "authors": [
28                      "Ursula K. Le Guin",
29                      "Joe Haldeman",
30                      "Orson Scott Card",
31                      "david Brin",
32                      "Rober Silverberg",
33                      "Dan Simmons",
34                      "Greg Bear"
35                   ],
36                   "lang": "en",
37                   "price": "1099",
38                   "pub_year": "1999",
39                   "title": "Far Horizons"
40                }
41             ]
42          },
43          {
44             "name": "kids",
45             "code": "02",
46             "books": [
47                {
48                   "authors": [
49                      "Philip Pullman"
50                   ],
51                   "lang": "en",
52                   "price": "699",
53                   "pub_year": "1995",
54                   "title": "The Golden Compass"
55                }
56             ]
57          }
58       ]
59    }
60 }