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