summaryrefslogtreecommitdiffstats
path: root/integration-test/src/test/resources/data/bookstore/bookstoreData.json
blob: 12df20e55b06bcbb4d42c8059c1cddc86ab5dfdf (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
  "bookstore": {
    "bookstore-name": "Easons",
    "premises": {
      "addresses": [
        {
          "house-number": 2,
          "street": "Main Street",
          "town": "Maynooth",
          "county": "Kildare"
        },
        {
          "house-number": 24,
          "street": "Grafton Street",
          "town": "Dublin",
          "county": "Dublin"
        }
      ]
    },
    "categories": [
      {
        "code": 1,
        "name": "Children",
        "books" : [
          {
            "title": "Matilda",
            "lang": "English",
            "authors": ["Roald Dahl"],
            "editions": [1988, 2000],
            "price": 10
          },
          {
            "title": "The Gruffalo",
            "lang": "English",
            "authors": ["Julia Donaldson"],
            "editions": [1999],
            "price": 15
          }
        ]
      },
      {
        "code": 2,
        "name": "Thriller",
        "books" : [
          {
            "title": "Annihilation",
            "lang": "English",
            "authors": ["Jeff VanderMeer"],
            "editions": [2014],
            "price": 15
          }
        ]
      },
      {
        "code": 3,
        "name": "Comedy",
        "books" : [
          {
            "title": "Good Omens",
            "lang": "English",
            "authors": ["Neil Gaiman", "Terry Pratchett"],
            "editions": [2006],
            "price": 13
          },
          {
            "title": "The Colour of Magic",
            "lang": "English",
            "authors": ["Terry Pratchett"],
            "editions": [1983],
            "price": 12
          },
          {
            "title": "The Light Fantastic",
            "lang": "English",
            "authors": ["Terry Pratchett"],
            "editions": [1986],
            "price": 14
          },
          {
            "title": "A Book with No Language",
            "lang": "",
            "authors": ["Joe Bloggs"],
            "editions": [2023],
            "price": 20
          }
        ]
      },
      {
        "code": 4,
        "name": "Computing",
        "books" : [
          {
            "title": "Debian GNU/Linux",
            "lang": "German",
            "authors": ["Peter H. Ganten", "Wulf Alex"],
            "editions": [2007, 2013, 2021],
            "price": 39
          },
          {
            "title": "Logarithm tables",
            "lang": "N/A",
            "authors": ["Joe Bloggs"],
            "editions": [2009],
            "price": 11
          }
        ]
      }
    ]
  }
}