aboutsummaryrefslogtreecommitdiffstats
path: root/cps-service/src/test/resources/bookstore.json
blob: 44d5d424cd2cc0c02fd770fc7ea8e771866941e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
   "test:bookstore":{
      "categories":[
         {
            "name":"web",
            "books":[
               {
                  "authors":[
                     "Toine Siebelink","David Lang"
                  ],
                  "lang":"en",
                  "price":"123456",
                  "pub_year":"2020",
                  "title":"My first book"
               }
            ]
         },
         {
            "name":"art",
            "books":[
               {
                  "authors":[
                     "Test"
                  ],
                  "lang":"en",
                  "price":"1234",
                  "pub_year":"2020",
                  "title":"My 2nd book"
               }
            ]
         }
      ]
   }
}