@progress/kendo-angular-schematics 13.5.0-develop.3 → 13.5.0-develop.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. package/collection.json +9 -27
  2. package/e2e/utils.d.ts +17 -0
  3. package/e2e/utils.js +71 -0
  4. package/e2e/utils.js.map +1 -0
  5. package/package.json +5 -2
  6. package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.__style__.template +6 -0
  7. package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.html.template +1 -0
  8. package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +21 -0
  9. package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +34 -0
  10. package/src/chart/files/chart.html.include +103 -0
  11. package/src/{charts/circular → chart}/index.d.ts +2 -2
  12. package/src/chart/index.js +238 -0
  13. package/src/chart/index.js.map +1 -0
  14. package/src/chart/schema.d.ts +230 -0
  15. package/src/chart/schema.js +72 -0
  16. package/src/chart/schema.js.map +1 -0
  17. package/src/chart/schema.json +235 -0
  18. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.__style__.template +6 -0
  19. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.html.template +1 -0
  20. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +21 -0
  21. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +37 -0
  22. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.sample-data.ts.template +1233 -0
  23. package/src/grid/files/{html/__name@dasherize__/__name@dasherize__.component.html → grid.html.include} +4 -9
  24. package/src/grid/index.d.ts +2 -2
  25. package/src/grid/index.js +77 -61
  26. package/src/grid/index.js.map +1 -1
  27. package/src/grid/schema.d.ts +12 -11
  28. package/src/grid/schema.js +16 -5
  29. package/src/grid/schema.js.map +1 -1
  30. package/src/grid/schema.json +82 -37
  31. package/src/ngAdd/index.js +2 -1
  32. package/src/ngAdd/index.js.map +1 -1
  33. package/src/rules/index.js +2 -1
  34. package/src/rules/index.js.map +1 -1
  35. package/src/scheduler/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.__style__.template +6 -0
  36. package/src/scheduler/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.html.template +1 -0
  37. package/src/scheduler/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +21 -0
  38. package/src/scheduler/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +26 -0
  39. package/src/scheduler/files/{events-utc.ts → __name@dasherize@if-flat__/__name@dasherize__.sample-data.ts.template} +0 -6
  40. package/src/scheduler/files/scheduler.html.include +7 -0
  41. package/src/scheduler/index.d.ts +2 -2
  42. package/src/scheduler/index.js +54 -32
  43. package/src/scheduler/index.js.map +1 -1
  44. package/src/scheduler/schema.d.ts +10 -2
  45. package/src/scheduler/schema.json +78 -2
  46. package/src/third_party/d3fc/d3fc-rebind/rebindAll.js +32 -0
  47. package/src/third_party/d3fc/day.js +61 -0
  48. package/src/third_party/d3fc/duration.js +34 -0
  49. package/src/third_party/d3fc/filter/skipWeekends.js +32 -0
  50. package/src/third_party/d3fc/financial.js +184 -0
  51. package/src/third_party/d3fc/fn.js +31 -0
  52. package/src/third_party/d3fc/geometricBrownianMotion.js +94 -0
  53. package/src/third_party/d3fc/interval.js +89 -0
  54. package/src/third_party/d3fc/randomNormal.js +49 -0
  55. package/src/third_party/d3fc/year.js +71 -0
  56. package/src/third_party/index.d.ts +28 -0
  57. package/src/third_party/index.js +40 -0
  58. package/src/third_party/index.js.map +1 -0
  59. package/src/third_party/index.v13.d.ts +13 -0
  60. package/src/third_party/index.v13.js +67 -0
  61. package/src/third_party/index.v13.js.map +1 -0
  62. package/src/utils/ast-utils.js +2 -1
  63. package/src/utils/ast-utils.js.map +1 -1
  64. package/src/utils/bootstrap-module.js +2 -1
  65. package/src/utils/bootstrap-module.js.map +1 -1
  66. package/src/{charts/scatter/schema.js → utils/parse-complex-options.d.ts} +1 -3
  67. package/src/utils/parse-complex-options.js +32 -0
  68. package/src/utils/parse-complex-options.js.map +1 -0
  69. package/src/charts/categorical/files/data.d.ts +0 -5
  70. package/src/charts/categorical/files/data.js +0 -29
  71. package/src/charts/categorical/files/data.js.map +0 -1
  72. package/src/charts/categorical/files/data.ts +0 -25
  73. package/src/charts/categorical/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -46
  74. package/src/charts/categorical/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -25
  75. package/src/charts/categorical/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -69
  76. package/src/charts/categorical/index.d.ts +0 -7
  77. package/src/charts/categorical/index.js +0 -124
  78. package/src/charts/categorical/index.js.map +0 -1
  79. package/src/charts/categorical/schema.d.ts +0 -92
  80. package/src/charts/categorical/schema.js +0 -54
  81. package/src/charts/categorical/schema.js.map +0 -1
  82. package/src/charts/categorical/schema.json +0 -253
  83. package/src/charts/circular/files/data.d.ts +0 -5
  84. package/src/charts/circular/files/data.js +0 -15
  85. package/src/charts/circular/files/data.js.map +0 -1
  86. package/src/charts/circular/files/data.ts +0 -11
  87. package/src/charts/circular/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -27
  88. package/src/charts/circular/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -23
  89. package/src/charts/circular/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -52
  90. package/src/charts/circular/index.js +0 -50
  91. package/src/charts/circular/index.js.map +0 -1
  92. package/src/charts/circular/schema.d.ts +0 -31
  93. package/src/charts/circular/schema.js +0 -7
  94. package/src/charts/circular/schema.js.map +0 -1
  95. package/src/charts/circular/schema.json +0 -175
  96. package/src/charts/scatter/files/data.d.ts +0 -5
  97. package/src/charts/scatter/files/data.js +0 -25
  98. package/src/charts/scatter/files/data.js.map +0 -1
  99. package/src/charts/scatter/files/data.ts +0 -21
  100. package/src/charts/scatter/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -35
  101. package/src/charts/scatter/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -21
  102. package/src/charts/scatter/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -58
  103. package/src/charts/scatter/index.d.ts +0 -7
  104. package/src/charts/scatter/index.js +0 -50
  105. package/src/charts/scatter/index.js.map +0 -1
  106. package/src/charts/scatter/schema.d.ts +0 -32
  107. package/src/charts/scatter/schema.js.map +0 -1
  108. package/src/charts/scatter/schema.json +0 -209
  109. package/src/charts/stock/files/data.d.ts +0 -5
  110. package/src/charts/stock/files/data.js +0 -418
  111. package/src/charts/stock/files/data.js.map +0 -1
  112. package/src/charts/stock/files/data.ts +0 -414
  113. package/src/charts/stock/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -57
  114. package/src/charts/stock/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -23
  115. package/src/charts/stock/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -83
  116. package/src/charts/stock/index.d.ts +0 -7
  117. package/src/charts/stock/index.js +0 -50
  118. package/src/charts/stock/index.js.map +0 -1
  119. package/src/charts/stock/schema.d.ts +0 -36
  120. package/src/charts/stock/schema.js +0 -7
  121. package/src/charts/stock/schema.js.map +0 -1
  122. package/src/charts/stock/schema.json +0 -285
  123. package/src/grid/files/data.d.ts +0 -5
  124. package/src/grid/files/data.js +0 -1241
  125. package/src/grid/files/data.js.map +0 -1
  126. package/src/grid/files/data.ts +0 -1237
  127. package/src/grid/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -29
  128. package/src/grid/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -79
  129. package/src/scheduler/files/events-utc.d.ts +0 -5
  130. package/src/scheduler/files/events-utc.js +0 -846
  131. package/src/scheduler/files/events-utc.js.map +0 -1
  132. package/src/scheduler/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -29
  133. package/src/scheduler/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -17
  134. package/src/scheduler/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -48
@@ -0,0 +1,1233 @@
1
+ export const products = [{
2
+ productID: 1,
3
+ productName: 'Chai',
4
+ supplierID: 1,
5
+ categoryID: 1,
6
+ quantityPerUnit: '10 boxes x 20 bags',
7
+ unitPrice: 18.0000,
8
+ unitsInStock: 39,
9
+ unitsOnOrder: 0,
10
+ reorderLevel: 10,
11
+ discontinued: false,
12
+ category: {
13
+ categoryID: 1,
14
+ categoryName: 'Beverages',
15
+ description: 'Soft drinks, coffees, teas, beers, and ales'
16
+ }
17
+ }, {
18
+ productID: 2,
19
+ productName: 'Chang',
20
+ supplierID: 1,
21
+ categoryID: 1,
22
+ quantityPerUnit: '24 - 12 oz bottles',
23
+ unitPrice: 19.0000,
24
+ unitsInStock: 17,
25
+ unitsOnOrder: 40,
26
+ reorderLevel: 25,
27
+ discontinued: false,
28
+ category: {
29
+ categoryID: 1,
30
+ categoryName: 'Beverages',
31
+ description: 'Soft drinks, coffees, teas, beers, and ales'
32
+ }
33
+ }, {
34
+ productID: 3,
35
+ productName: 'Aniseed Syrup',
36
+ supplierID: 1,
37
+ categoryID: 2,
38
+ quantityPerUnit: '12 - 550 ml bottles',
39
+ unitPrice: 10.0000,
40
+ unitsInStock: 13,
41
+ unitsOnOrder: 70,
42
+ reorderLevel: 25,
43
+ discontinued: false,
44
+ category: {
45
+ categoryID: 2,
46
+ categoryName: 'Condiments',
47
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
48
+ }
49
+ }, {
50
+ productID: 4,
51
+ productName: 'Chef Antons Cajun Seasoning',
52
+ supplierID: 2,
53
+ categoryID: 2,
54
+ quantityPerUnit: '48 - 6 oz jars',
55
+ unitPrice: 22.0000,
56
+ unitsInStock: 53,
57
+ unitsOnOrder: 0,
58
+ reorderLevel: 0,
59
+ discontinued: false,
60
+ category: {
61
+ categoryID: 2,
62
+ categoryName: 'Condiments',
63
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
64
+ }
65
+ }, {
66
+ productID: 5,
67
+ productName: 'Chef Antons Gumbo Mix',
68
+ supplierID: 2,
69
+ categoryID: 2,
70
+ quantityPerUnit: '36 boxes',
71
+ unitPrice: 21.3500,
72
+ unitsInStock: 0,
73
+ unitsOnOrder: 0,
74
+ reorderLevel: 0,
75
+ discontinued: true,
76
+ category: {
77
+ categoryID: 2,
78
+ categoryName: 'Condiments',
79
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
80
+ }
81
+ }, {
82
+ productID: 6,
83
+ productName: 'Grandmas Boysenberry Spread',
84
+ supplierID: 3,
85
+ categoryID: 2,
86
+ quantityPerUnit: '12 - 8 oz jars',
87
+ unitPrice: 25.0000,
88
+ unitsInStock: 120,
89
+ unitsOnOrder: 0,
90
+ reorderLevel: 25,
91
+ discontinued: false,
92
+ category: {
93
+ categoryID: 2,
94
+ categoryName: 'Condiments',
95
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
96
+ }
97
+ }, {
98
+ productID: 7,
99
+ productName: 'Uncle Bobs Organic Dried Pears',
100
+ supplierID: 3,
101
+ categoryID: 7,
102
+ quantityPerUnit: '12 - 1 lb pkgs.',
103
+ unitPrice: 30.0000,
104
+ unitsInStock: 15,
105
+ unitsOnOrder: 0,
106
+ reorderLevel: 10,
107
+ discontinued: false,
108
+ category: {
109
+ categoryID: 7,
110
+ categoryName: 'Produce',
111
+ description: 'Dried fruit and bean curd'
112
+ }
113
+ }, {
114
+ productID: 8,
115
+ productName: 'Northwoods Cranberry Sauce',
116
+ supplierID: 3,
117
+ categoryID: 2,
118
+ quantityPerUnit: '12 - 12 oz jars',
119
+ unitPrice: 40.0000,
120
+ unitsInStock: 6,
121
+ unitsOnOrder: 0,
122
+ reorderLevel: 0,
123
+ discontinued: false,
124
+ category: {
125
+ categoryID: 2,
126
+ categoryName: 'Condiments',
127
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
128
+ }
129
+ }, {
130
+ productID: 9,
131
+ productName: 'Mishi Kobe Niku',
132
+ supplierID: 4,
133
+ categoryID: 6,
134
+ quantityPerUnit: '18 - 500 g pkgs.',
135
+ unitPrice: 97.0000,
136
+ unitsInStock: 29,
137
+ unitsOnOrder: 0,
138
+ reorderLevel: 0,
139
+ discontinued: true,
140
+ category: {
141
+ categoryID: 6,
142
+ categoryName: 'Meat/Poultry',
143
+ description: 'Prepared meats'
144
+ }
145
+ }, {
146
+ productID: 10,
147
+ productName: 'Ikura',
148
+ supplierID: 4,
149
+ categoryID: 8,
150
+ quantityPerUnit: '12 - 200 ml jars',
151
+ unitPrice: 31.0000,
152
+ unitsInStock: 31,
153
+ unitsOnOrder: 0,
154
+ reorderLevel: 0,
155
+ discontinued: false,
156
+ category: {
157
+ categoryID: 8,
158
+ categoryName: 'Seafood',
159
+ description: 'Seaweed and fish'
160
+ }
161
+ }, {
162
+ productID: 11,
163
+ productName: 'Queso Cabrales',
164
+ supplierID: 5,
165
+ categoryID: 4,
166
+ quantityPerUnit: '1 kg pkg.',
167
+ unitPrice: 21.0000,
168
+ unitsInStock: 22,
169
+ unitsOnOrder: 30,
170
+ reorderLevel: 30,
171
+ discontinued: false,
172
+ category: {
173
+ categoryID: 4,
174
+ categoryName: 'Dairy Products',
175
+ description: 'Cheeses'
176
+ }
177
+ }, {
178
+ productID: 12,
179
+ productName: 'Queso Manchego La Pastora',
180
+ supplierID: 5,
181
+ categoryID: 4,
182
+ quantityPerUnit: '10 - 500 g pkgs.',
183
+ unitPrice: 38.0000,
184
+ unitsInStock: 86,
185
+ unitsOnOrder: 0,
186
+ reorderLevel: 0,
187
+ discontinued: false,
188
+ category: {
189
+ categoryID: 4,
190
+ categoryName: 'Dairy Products',
191
+ description: 'Cheeses'
192
+ }
193
+ }, {
194
+ productID: 13,
195
+ productName: 'Konbu',
196
+ supplierID: 6,
197
+ categoryID: 8,
198
+ quantityPerUnit: '2 kg box',
199
+ unitPrice: 6.0000,
200
+ unitsInStock: 24,
201
+ unitsOnOrder: 0,
202
+ reorderLevel: 5,
203
+ discontinued: false,
204
+ category: {
205
+ categoryID: 8,
206
+ categoryName: 'Seafood',
207
+ description: 'Seaweed and fish'
208
+ }
209
+ }, {
210
+ productID: 14,
211
+ productName: 'Tofu',
212
+ supplierID: 6,
213
+ categoryID: 7,
214
+ quantityPerUnit: '40 - 100 g pkgs.',
215
+ unitPrice: 23.2500,
216
+ unitsInStock: 35,
217
+ unitsOnOrder: 0,
218
+ reorderLevel: 0,
219
+ discontinued: false,
220
+ category: {
221
+ categoryID: 7,
222
+ categoryName: 'Produce',
223
+ description: 'Dried fruit and bean curd'
224
+ }
225
+ }, {
226
+ productID: 15,
227
+ productName: 'Genen Shouyu',
228
+ supplierID: 6,
229
+ categoryID: 2,
230
+ quantityPerUnit: '24 - 250 ml bottles',
231
+ unitPrice: 15.5000,
232
+ unitsInStock: 39,
233
+ unitsOnOrder: 0,
234
+ reorderLevel: 5,
235
+ discontinued: false,
236
+ category: {
237
+ categoryID: 2,
238
+ categoryName: 'Condiments',
239
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
240
+ }
241
+ }, {
242
+ productID: 16,
243
+ productName: 'Pavlova',
244
+ supplierID: 7,
245
+ categoryID: 3,
246
+ quantityPerUnit: '32 - 500 g boxes',
247
+ unitPrice: 17.4500,
248
+ unitsInStock: 29,
249
+ unitsOnOrder: 0,
250
+ reorderLevel: 10,
251
+ discontinued: false,
252
+ category: {
253
+ categoryID: 3,
254
+ categoryName: 'Confections',
255
+ description: 'Desserts, candies, and sweet breads'
256
+ }
257
+ }, {
258
+ productID: 17,
259
+ productName: 'Alice Mutton',
260
+ supplierID: 7,
261
+ categoryID: 6,
262
+ quantityPerUnit: '20 - 1 kg tins',
263
+ unitPrice: 39.0000,
264
+ unitsInStock: 0,
265
+ unitsOnOrder: 0,
266
+ reorderLevel: 0,
267
+ discontinued: true,
268
+ category: {
269
+ categoryID: 6,
270
+ categoryName: 'Meat/Poultry',
271
+ description: 'Prepared meats'
272
+ }
273
+ }, {
274
+ productID: 18,
275
+ productName: 'Carnarvon Tigers',
276
+ supplierID: 7,
277
+ categoryID: 8,
278
+ quantityPerUnit: '16 kg pkg.',
279
+ unitPrice: 62.5000,
280
+ unitsInStock: 42,
281
+ unitsOnOrder: 0,
282
+ reorderLevel: 0,
283
+ discontinued: false,
284
+ category: {
285
+ categoryID: 8,
286
+ categoryName: 'Seafood',
287
+ description: 'Seaweed and fish'
288
+ }
289
+ }, {
290
+ productID: 19,
291
+ productName: 'Teatime Chocolate Biscuits',
292
+ supplierID: 8,
293
+ categoryID: 3,
294
+ quantityPerUnit: '10 boxes x 12 pieces',
295
+ unitPrice: 9.2000,
296
+ unitsInStock: 25,
297
+ unitsOnOrder: 0,
298
+ reorderLevel: 5,
299
+ discontinued: false,
300
+ category: {
301
+ categoryID: 3,
302
+ categoryName: 'Confections',
303
+ description: 'Desserts, candies, and sweet breads'
304
+ }
305
+ }, {
306
+ productID: 20,
307
+ productName: 'Sir Rodneys Marmalade',
308
+ supplierID: 8,
309
+ categoryID: 3,
310
+ quantityPerUnit: '30 gift boxes',
311
+ unitPrice: 81.0000,
312
+ unitsInStock: 40,
313
+ unitsOnOrder: 0,
314
+ reorderLevel: 0,
315
+ discontinued: false,
316
+ category: {
317
+ categoryID: 3,
318
+ categoryName: 'Confections',
319
+ description: 'Desserts, candies, and sweet breads'
320
+ }
321
+ }, {
322
+ productID: 21,
323
+ productName: 'Sir Rodneys Scones',
324
+ supplierID: 8,
325
+ categoryID: 3,
326
+ quantityPerUnit: '24 pkgs. x 4 pieces',
327
+ unitPrice: 10.0000,
328
+ unitsInStock: 3,
329
+ unitsOnOrder: 40,
330
+ reorderLevel: 5,
331
+ discontinued: false,
332
+ category: {
333
+ categoryID: 3,
334
+ categoryName: 'Confections',
335
+ description: 'Desserts, candies, and sweet breads'
336
+ }
337
+ }, {
338
+ productID: 22,
339
+ productName: 'Gustafs Knäckebröd',
340
+ supplierID: 9,
341
+ categoryID: 5,
342
+ quantityPerUnit: '24 - 500 g pkgs.',
343
+ unitPrice: 21.0000,
344
+ unitsInStock: 104,
345
+ unitsOnOrder: 0,
346
+ reorderLevel: 25,
347
+ discontinued: false,
348
+ category: {
349
+ categoryID: 5,
350
+ categoryName: 'Grains/Cereals',
351
+ description: 'Breads, crackers, pasta, and cereal'
352
+ }
353
+ }, {
354
+ productID: 23,
355
+ productName: 'Tunnbröd',
356
+ supplierID: 9,
357
+ categoryID: 5,
358
+ quantityPerUnit: '12 - 250 g pkgs.',
359
+ unitPrice: 9.0000,
360
+ unitsInStock: 61,
361
+ unitsOnOrder: 0,
362
+ reorderLevel: 25,
363
+ discontinued: false,
364
+ category: {
365
+ categoryID: 5,
366
+ categoryName: 'Grains/Cereals',
367
+ description: 'Breads, crackers, pasta, and cereal'
368
+ }
369
+ }, {
370
+ productID: 24,
371
+ productName: 'Guaraná Fantástica',
372
+ supplierID: 10,
373
+ categoryID: 1,
374
+ quantityPerUnit: '12 - 355 ml cans',
375
+ unitPrice: 4.5000,
376
+ unitsInStock: 20,
377
+ unitsOnOrder: 0,
378
+ reorderLevel: 0,
379
+ discontinued: true,
380
+ category: {
381
+ categoryID: 1,
382
+ categoryName: 'Beverages',
383
+ description: 'Soft drinks, coffees, teas, beers, and ales'
384
+ }
385
+ }, {
386
+ productID: 25,
387
+ productName: 'NuNuCa Nuß-Nougat-Creme',
388
+ supplierID: 11,
389
+ categoryID: 3,
390
+ quantityPerUnit: '20 - 450 g glasses',
391
+ unitPrice: 14.0000,
392
+ unitsInStock: 76,
393
+ unitsOnOrder: 0,
394
+ reorderLevel: 30,
395
+ discontinued: false,
396
+ category: {
397
+ categoryID: 3,
398
+ categoryName: 'Confections',
399
+ description: 'Desserts, candies, and sweet breads'
400
+ }
401
+ }, {
402
+ productID: 26,
403
+ productName: 'Gumbär Gummibärchen',
404
+ supplierID: 11,
405
+ categoryID: 3,
406
+ quantityPerUnit: '100 - 250 g bags',
407
+ unitPrice: 31.2300,
408
+ unitsInStock: 15,
409
+ unitsOnOrder: 0,
410
+ reorderLevel: 0,
411
+ discontinued: false,
412
+ category: {
413
+ categoryID: 3,
414
+ categoryName: 'Confections',
415
+ description: 'Desserts, candies, and sweet breads'
416
+ }
417
+ }, {
418
+ productID: 27,
419
+ productName: 'Schoggi Schokolade',
420
+ supplierID: 11,
421
+ categoryID: 3,
422
+ quantityPerUnit: '100 - 100 g pieces',
423
+ unitPrice: 43.9000,
424
+ unitsInStock: 49,
425
+ unitsOnOrder: 0,
426
+ reorderLevel: 30,
427
+ discontinued: false,
428
+ category: {
429
+ categoryID: 3,
430
+ categoryName: 'Confections',
431
+ description: 'Desserts, candies, and sweet breads'
432
+ }
433
+ }, {
434
+ productID: 28,
435
+ productName: 'Rössle Sauerkraut',
436
+ supplierID: 12,
437
+ categoryID: 7,
438
+ quantityPerUnit: '25 - 825 g cans',
439
+ unitPrice: 45.6000,
440
+ unitsInStock: 26,
441
+ unitsOnOrder: 0,
442
+ reorderLevel: 0,
443
+ discontinued: true,
444
+ category: {
445
+ categoryID: 7,
446
+ categoryName: 'Produce',
447
+ description: 'Dried fruit and bean curd'
448
+ }
449
+ }, {
450
+ productID: 29,
451
+ productName: 'Thüringer Rostbratwurst',
452
+ supplierID: 12,
453
+ categoryID: 6,
454
+ quantityPerUnit: '50 bags x 30 sausgs.',
455
+ unitPrice: 123.7900,
456
+ unitsInStock: 0,
457
+ unitsOnOrder: 0,
458
+ reorderLevel: 0,
459
+ discontinued: true,
460
+ category: {
461
+ categoryID: 6,
462
+ categoryName: 'Meat/Poultry',
463
+ description: 'Prepared meats'
464
+ }
465
+ }, {
466
+ productID: 30,
467
+ productName: 'Nord-Ost Matjeshering',
468
+ supplierID: 13,
469
+ categoryID: 8,
470
+ quantityPerUnit: '10 - 200 g glasses',
471
+ unitPrice: 25.8900,
472
+ unitsInStock: 10,
473
+ unitsOnOrder: 0,
474
+ reorderLevel: 15,
475
+ discontinued: false,
476
+ category: {
477
+ categoryID: 8,
478
+ categoryName: 'Seafood',
479
+ description: 'Seaweed and fish'
480
+ }
481
+ }, {
482
+ productID: 31,
483
+ productName: 'Gorgonzola Telino',
484
+ supplierID: 14,
485
+ categoryID: 4,
486
+ quantityPerUnit: '12 - 100 g pkgs',
487
+ unitPrice: 12.5000,
488
+ unitsInStock: 0,
489
+ unitsOnOrder: 70,
490
+ reorderLevel: 20,
491
+ discontinued: false,
492
+ category: {
493
+ categoryID: 4,
494
+ categoryName: 'Dairy Products',
495
+ description: 'Cheeses'
496
+ }
497
+ }, {
498
+ productID: 32,
499
+ productName: 'Mascarpone Fabioli',
500
+ supplierID: 14,
501
+ categoryID: 4,
502
+ quantityPerUnit: '24 - 200 g pkgs.',
503
+ unitPrice: 32.0000,
504
+ unitsInStock: 9,
505
+ unitsOnOrder: 40,
506
+ reorderLevel: 25,
507
+ discontinued: false,
508
+ category: {
509
+ categoryID: 4,
510
+ categoryName: 'Dairy Products',
511
+ description: 'Cheeses'
512
+ }
513
+ }, {
514
+ productID: 33,
515
+ productName: 'Geitost',
516
+ supplierID: 15,
517
+ categoryID: 4,
518
+ quantityPerUnit: '500 g',
519
+ unitPrice: 2.5000,
520
+ unitsInStock: 112,
521
+ unitsOnOrder: 0,
522
+ reorderLevel: 20,
523
+ discontinued: false,
524
+ category: {
525
+ categoryID: 4,
526
+ categoryName: 'Dairy Products',
527
+ description: 'Cheeses'
528
+ }
529
+ }, {
530
+ productID: 34,
531
+ productName: 'Sasquatch Ale',
532
+ supplierID: 16,
533
+ categoryID: 1,
534
+ quantityPerUnit: '24 - 12 oz bottles',
535
+ unitPrice: 14.0000,
536
+ unitsInStock: 111,
537
+ unitsOnOrder: 0,
538
+ reorderLevel: 15,
539
+ discontinued: false,
540
+ category: {
541
+ categoryID: 1,
542
+ categoryName: 'Beverages',
543
+ description: 'Soft drinks, coffees, teas, beers, and ales'
544
+ }
545
+ }, {
546
+ productID: 35,
547
+ productName: 'Steeleye Stout',
548
+ supplierID: 16,
549
+ categoryID: 1,
550
+ quantityPerUnit: '24 - 12 oz bottles',
551
+ unitPrice: 18.0000,
552
+ unitsInStock: 20,
553
+ unitsOnOrder: 0,
554
+ reorderLevel: 15,
555
+ discontinued: false,
556
+ category: {
557
+ categoryID: 1,
558
+ categoryName: 'Beverages',
559
+ description: 'Soft drinks, coffees, teas, beers, and ales'
560
+ }
561
+ }, {
562
+ productID: 36,
563
+ productName: 'Inlagd Sill',
564
+ supplierID: 17,
565
+ categoryID: 8,
566
+ quantityPerUnit: '24 - 250 g jars',
567
+ unitPrice: 19.0000,
568
+ unitsInStock: 112,
569
+ unitsOnOrder: 0,
570
+ reorderLevel: 20,
571
+ discontinued: false,
572
+ category: {
573
+ categoryID: 8,
574
+ categoryName: 'Seafood',
575
+ description: 'Seaweed and fish'
576
+ }
577
+ }, {
578
+ productID: 37,
579
+ productName: 'Gravad lax',
580
+ supplierID: 17,
581
+ categoryID: 8,
582
+ quantityPerUnit: '12 - 500 g pkgs.',
583
+ unitPrice: 26.0000,
584
+ unitsInStock: 11,
585
+ unitsOnOrder: 50,
586
+ reorderLevel: 25,
587
+ discontinued: false,
588
+ category: {
589
+ categoryID: 8,
590
+ categoryName: 'Seafood',
591
+ description: 'Seaweed and fish'
592
+ }
593
+ }, {
594
+ productID: 38,
595
+ productName: 'Côte de Blaye',
596
+ supplierID: 18,
597
+ categoryID: 1,
598
+ quantityPerUnit: '12 - 75 cl bottles',
599
+ unitPrice: 263.5000,
600
+ unitsInStock: 17,
601
+ unitsOnOrder: 0,
602
+ reorderLevel: 15,
603
+ discontinued: false,
604
+ category: {
605
+ categoryID: 1,
606
+ categoryName: 'Beverages',
607
+ description: 'Soft drinks, coffees, teas, beers, and ales'
608
+ }
609
+ }, {
610
+ productID: 39,
611
+ productName: 'Chartreuse verte',
612
+ supplierID: 18,
613
+ categoryID: 1,
614
+ quantityPerUnit: '750 cc per bottle',
615
+ unitPrice: 18.0000,
616
+ unitsInStock: 69,
617
+ unitsOnOrder: 0,
618
+ reorderLevel: 5,
619
+ discontinued: false,
620
+ category: {
621
+ categoryID: 1,
622
+ categoryName: 'Beverages',
623
+ description: 'Soft drinks, coffees, teas, beers, and ales'
624
+ }
625
+ }, {
626
+ productID: 40,
627
+ productName: 'Boston Crab Meat',
628
+ supplierID: 19,
629
+ categoryID: 8,
630
+ quantityPerUnit: '24 - 4 oz tins',
631
+ unitPrice: 18.4000,
632
+ unitsInStock: 123,
633
+ unitsOnOrder: 0,
634
+ reorderLevel: 30,
635
+ discontinued: false,
636
+ category: {
637
+ categoryID: 8,
638
+ categoryName: 'Seafood',
639
+ description: 'Seaweed and fish'
640
+ }
641
+ }, {
642
+ productID: 41,
643
+ productName: 'Jacks New England Clam Chowder',
644
+ supplierID: 19,
645
+ categoryID: 8,
646
+ quantityPerUnit: '12 - 12 oz cans',
647
+ unitPrice: 9.6500,
648
+ unitsInStock: 85,
649
+ unitsOnOrder: 0,
650
+ reorderLevel: 10,
651
+ discontinued: false,
652
+ category: {
653
+ categoryID: 8,
654
+ categoryName: 'Seafood',
655
+ description: 'Seaweed and fish'
656
+ }
657
+ }, {
658
+ productID: 42,
659
+ productName: 'Singaporean Hokkien Fried Mee',
660
+ supplierID: 20,
661
+ categoryID: 5,
662
+ quantityPerUnit: '32 - 1 kg pkgs.',
663
+ unitPrice: 14.0000,
664
+ unitsInStock: 26,
665
+ unitsOnOrder: 0,
666
+ reorderLevel: 0,
667
+ discontinued: true,
668
+ category: {
669
+ categoryID: 5,
670
+ categoryName: 'Grains/Cereals',
671
+ description: 'Breads, crackers, pasta, and cereal'
672
+ }
673
+ }, {
674
+ productID: 43,
675
+ productName: 'Ipoh Coffee',
676
+ supplierID: 20,
677
+ categoryID: 1,
678
+ quantityPerUnit: '16 - 500 g tins',
679
+ unitPrice: 46.0000,
680
+ unitsInStock: 17,
681
+ unitsOnOrder: 10,
682
+ reorderLevel: 25,
683
+ discontinued: false,
684
+ category: {
685
+ categoryID: 1,
686
+ categoryName: 'Beverages',
687
+ description: 'Soft drinks, coffees, teas, beers, and ales'
688
+ }
689
+ }, {
690
+ productID: 44,
691
+ productName: 'Gula Malacca',
692
+ supplierID: 20,
693
+ categoryID: 2,
694
+ quantityPerUnit: '20 - 2 kg bags',
695
+ unitPrice: 19.4500,
696
+ unitsInStock: 27,
697
+ unitsOnOrder: 0,
698
+ reorderLevel: 15,
699
+ discontinued: false,
700
+ category: {
701
+ categoryID: 2,
702
+ categoryName: 'Condiments',
703
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
704
+ }
705
+ }, {
706
+ productID: 45,
707
+ productName: 'Rogede sild',
708
+ supplierID: 21,
709
+ categoryID: 8,
710
+ quantityPerUnit: '1k pkg.',
711
+ unitPrice: 9.5000,
712
+ unitsInStock: 5,
713
+ unitsOnOrder: 70,
714
+ reorderLevel: 15,
715
+ discontinued: false,
716
+ category: {
717
+ categoryID: 8,
718
+ categoryName: 'Seafood',
719
+ description: 'Seaweed and fish'
720
+ }
721
+ }, {
722
+ productID: 46,
723
+ productName: 'Spegesild',
724
+ supplierID: 21,
725
+ categoryID: 8,
726
+ quantityPerUnit: '4 - 450 g glasses',
727
+ unitPrice: 12.0000,
728
+ unitsInStock: 95,
729
+ unitsOnOrder: 0,
730
+ reorderLevel: 0,
731
+ discontinued: false,
732
+ category: {
733
+ categoryID: 8,
734
+ categoryName: 'Seafood',
735
+ description: 'Seaweed and fish'
736
+ }
737
+ }, {
738
+ productID: 47,
739
+ productName: 'Zaanse koeken',
740
+ supplierID: 22,
741
+ categoryID: 3,
742
+ quantityPerUnit: '10 - 4 oz boxes',
743
+ unitPrice: 9.5000,
744
+ unitsInStock: 36,
745
+ unitsOnOrder: 0,
746
+ reorderLevel: 0,
747
+ discontinued: false,
748
+ category: {
749
+ categoryID: 3,
750
+ categoryName: 'Confections',
751
+ description: 'Desserts, candies, and sweet breads'
752
+ }
753
+ }, {
754
+ productID: 48,
755
+ productName: 'Chocolade',
756
+ supplierID: 22,
757
+ categoryID: 3,
758
+ quantityPerUnit: '10 pkgs.',
759
+ unitPrice: 12.7500,
760
+ unitsInStock: 15,
761
+ unitsOnOrder: 70,
762
+ reorderLevel: 25,
763
+ discontinued: false,
764
+ category: {
765
+ categoryID: 3,
766
+ categoryName: 'Confections',
767
+ description: 'Desserts, candies, and sweet breads'
768
+ }
769
+ }, {
770
+ productID: 49,
771
+ productName: 'Maxilaku',
772
+ supplierID: 23,
773
+ categoryID: 3,
774
+ quantityPerUnit: '24 - 50 g pkgs.',
775
+ unitPrice: 20.0000,
776
+ unitsInStock: 10,
777
+ unitsOnOrder: 60,
778
+ reorderLevel: 15,
779
+ discontinued: false,
780
+ category: {
781
+ categoryID: 3,
782
+ categoryName: 'Confections',
783
+ description: 'Desserts, candies, and sweet breads'
784
+ }
785
+ }, {
786
+ productID: 50,
787
+ productName: 'Valkoinen suklaa',
788
+ supplierID: 23,
789
+ categoryID: 3,
790
+ quantityPerUnit: '12 - 100 g bars',
791
+ unitPrice: 16.2500,
792
+ unitsInStock: 65,
793
+ unitsOnOrder: 0,
794
+ reorderLevel: 30,
795
+ discontinued: false,
796
+ category: {
797
+ categoryID: 3,
798
+ categoryName: 'Confections',
799
+ description: 'Desserts, candies, and sweet breads'
800
+ }
801
+ }, {
802
+ productID: 51,
803
+ productName: 'Manjimup Dried Apples',
804
+ supplierID: 24,
805
+ categoryID: 7,
806
+ quantityPerUnit: '50 - 300 g pkgs.',
807
+ unitPrice: 53.0000,
808
+ unitsInStock: 20,
809
+ unitsOnOrder: 0,
810
+ reorderLevel: 10,
811
+ discontinued: false,
812
+ category: {
813
+ categoryID: 7,
814
+ categoryName: 'Produce',
815
+ description: 'Dried fruit and bean curd'
816
+ }
817
+ }, {
818
+ productID: 52,
819
+ productName: 'Filo Mix',
820
+ supplierID: 24,
821
+ categoryID: 5,
822
+ quantityPerUnit: '16 - 2 kg boxes',
823
+ unitPrice: 7.0000,
824
+ unitsInStock: 38,
825
+ unitsOnOrder: 0,
826
+ reorderLevel: 25,
827
+ discontinued: false,
828
+ category: {
829
+ categoryID: 5,
830
+ categoryName: 'Grains/Cereals',
831
+ description: 'Breads, crackers, pasta, and cereal'
832
+ }
833
+ }, {
834
+ productID: 53,
835
+ productName: 'Perth Pasties',
836
+ supplierID: 24,
837
+ categoryID: 6,
838
+ quantityPerUnit: '48 pieces',
839
+ unitPrice: 32.8000,
840
+ unitsInStock: 0,
841
+ unitsOnOrder: 0,
842
+ reorderLevel: 0,
843
+ discontinued: true,
844
+ category: {
845
+ categoryID: 6,
846
+ categoryName: 'Meat/Poultry',
847
+ description: 'Prepared meats'
848
+ }
849
+ }, {
850
+ productID: 54,
851
+ productName: 'Tourtière',
852
+ supplierID: 25,
853
+ categoryID: 6,
854
+ quantityPerUnit: '16 pies',
855
+ unitPrice: 7.4500,
856
+ unitsInStock: 21,
857
+ unitsOnOrder: 0,
858
+ reorderLevel: 10,
859
+ discontinued: false,
860
+ category: {
861
+ categoryID: 6,
862
+ categoryName: 'Meat/Poultry',
863
+ description: 'Prepared meats'
864
+ }
865
+ }, {
866
+ productID: 55,
867
+ productName: 'Pâté chinois',
868
+ supplierID: 25,
869
+ categoryID: 6,
870
+ quantityPerUnit: '24 boxes x 2 pies',
871
+ unitPrice: 24.0000,
872
+ unitsInStock: 115,
873
+ unitsOnOrder: 0,
874
+ reorderLevel: 20,
875
+ discontinued: false,
876
+ category: {
877
+ categoryID: 6,
878
+ categoryName: 'Meat/Poultry',
879
+ description: 'Prepared meats'
880
+ }
881
+ }, {
882
+ productID: 56,
883
+ productName: 'Gnocchi di nonna Alice',
884
+ supplierID: 26,
885
+ categoryID: 5,
886
+ quantityPerUnit: '24 - 250 g pkgs.',
887
+ unitPrice: 38.0000,
888
+ unitsInStock: 21,
889
+ unitsOnOrder: 10,
890
+ reorderLevel: 30,
891
+ discontinued: false,
892
+ category: {
893
+ categoryID: 5,
894
+ categoryName: 'Grains/Cereals',
895
+ description: 'Breads, crackers, pasta, and cereal'
896
+ }
897
+ }, {
898
+ productID: 57,
899
+ productName: 'Ravioli Angelo',
900
+ supplierID: 26,
901
+ categoryID: 5,
902
+ quantityPerUnit: '24 - 250 g pkgs.',
903
+ unitPrice: 19.5000,
904
+ unitsInStock: 36,
905
+ unitsOnOrder: 0,
906
+ reorderLevel: 20,
907
+ discontinued: false,
908
+ category: {
909
+ categoryID: 5,
910
+ categoryName: 'Grains/Cereals',
911
+ description: 'Breads, crackers, pasta, and cereal'
912
+ }
913
+ }, {
914
+ productID: 58,
915
+ productName: 'Escargots de Bourgogne',
916
+ supplierID: 27,
917
+ categoryID: 8,
918
+ quantityPerUnit: '24 pieces',
919
+ unitPrice: 13.2500,
920
+ unitsInStock: 62,
921
+ unitsOnOrder: 0,
922
+ reorderLevel: 20,
923
+ discontinued: false,
924
+ category: {
925
+ categoryID: 8,
926
+ categoryName: 'Seafood',
927
+ description: 'Seaweed and fish'
928
+ }
929
+ }, {
930
+ productID: 59,
931
+ productName: 'Raclette Courdavault',
932
+ supplierID: 28,
933
+ categoryID: 4,
934
+ quantityPerUnit: '5 kg pkg.',
935
+ unitPrice: 55.0000,
936
+ unitsInStock: 79,
937
+ unitsOnOrder: 0,
938
+ reorderLevel: 0,
939
+ discontinued: false,
940
+ category: {
941
+ categoryID: 4,
942
+ categoryName: 'Dairy Products',
943
+ description: 'Cheeses'
944
+ }
945
+ }, {
946
+ productID: 60,
947
+ productName: 'Camembert Pierrot',
948
+ supplierID: 28,
949
+ categoryID: 4,
950
+ quantityPerUnit: '15 - 300 g rounds',
951
+ unitPrice: 34.0000,
952
+ unitsInStock: 19,
953
+ unitsOnOrder: 0,
954
+ reorderLevel: 0,
955
+ discontinued: false,
956
+ category: {
957
+ categoryID: 4,
958
+ categoryName: 'Dairy Products',
959
+ description: 'Cheeses'
960
+ }
961
+ }, {
962
+ productID: 61,
963
+ productName: 'Sirop dérable',
964
+ supplierID: 29,
965
+ categoryID: 2,
966
+ quantityPerUnit: '24 - 500 ml bottles',
967
+ unitPrice: 28.5000,
968
+ unitsInStock: 113,
969
+ unitsOnOrder: 0,
970
+ reorderLevel: 25,
971
+ discontinued: false,
972
+ category: {
973
+ categoryID: 2,
974
+ categoryName: 'Condiments',
975
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
976
+ }
977
+ }, {
978
+ productID: 62,
979
+ productName: 'Tarte au sucre',
980
+ supplierID: 29,
981
+ categoryID: 3,
982
+ quantityPerUnit: '48 pies',
983
+ unitPrice: 49.3000,
984
+ unitsInStock: 17,
985
+ unitsOnOrder: 0,
986
+ reorderLevel: 0,
987
+ discontinued: false,
988
+ category: {
989
+ categoryID: 3,
990
+ categoryName: 'Confections',
991
+ description: 'Desserts, candies, and sweet breads'
992
+ }
993
+ }, {
994
+ productID: 63,
995
+ productName: 'Vegie-spread',
996
+ supplierID: 7,
997
+ categoryID: 2,
998
+ quantityPerUnit: '15 - 625 g jars',
999
+ unitPrice: 43.9000,
1000
+ unitsInStock: 24,
1001
+ unitsOnOrder: 0,
1002
+ reorderLevel: 5,
1003
+ discontinued: false,
1004
+ category: {
1005
+ categoryID: 2,
1006
+ categoryName: 'Condiments',
1007
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
1008
+ }
1009
+ }, {
1010
+ productID: 64,
1011
+ productName: 'Wimmers gute Semmelknödel',
1012
+ supplierID: 12,
1013
+ categoryID: 5,
1014
+ quantityPerUnit: '20 bags x 4 pieces',
1015
+ unitPrice: 33.2500,
1016
+ unitsInStock: 22,
1017
+ unitsOnOrder: 80,
1018
+ reorderLevel: 30,
1019
+ discontinued: false,
1020
+ category: {
1021
+ categoryID: 5,
1022
+ categoryName: 'Grains/Cereals',
1023
+ description: 'Breads, crackers, pasta, and cereal'
1024
+ }
1025
+ }, {
1026
+ productID: 65,
1027
+ productName: 'Louisiana Fiery Hot Pepper Sauce',
1028
+ supplierID: 2,
1029
+ categoryID: 2,
1030
+ quantityPerUnit: '32 - 8 oz bottles',
1031
+ unitPrice: 21.0500,
1032
+ unitsInStock: 76,
1033
+ unitsOnOrder: 0,
1034
+ reorderLevel: 0,
1035
+ discontinued: false,
1036
+ category: {
1037
+ categoryID: 2,
1038
+ categoryName: 'Condiments',
1039
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
1040
+ }
1041
+ }, {
1042
+ productID: 66,
1043
+ productName: 'Louisiana Hot Spiced Okra',
1044
+ supplierID: 2,
1045
+ categoryID: 2,
1046
+ quantityPerUnit: '24 - 8 oz jars',
1047
+ unitPrice: 17.0000,
1048
+ unitsInStock: 4,
1049
+ unitsOnOrder: 100,
1050
+ reorderLevel: 20,
1051
+ discontinued: false,
1052
+ category: {
1053
+ categoryID: 2,
1054
+ categoryName: 'Condiments',
1055
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
1056
+ }
1057
+ }, {
1058
+ productID: 67,
1059
+ productName: 'Laughing Lumberjack Lager',
1060
+ supplierID: 16,
1061
+ categoryID: 1,
1062
+ quantityPerUnit: '24 - 12 oz bottles',
1063
+ unitPrice: 14.0000,
1064
+ unitsInStock: 52,
1065
+ unitsOnOrder: 0,
1066
+ reorderLevel: 10,
1067
+ discontinued: false,
1068
+ category: {
1069
+ categoryID: 1,
1070
+ categoryName: 'Beverages',
1071
+ description: 'Soft drinks, coffees, teas, beers, and ales'
1072
+ }
1073
+ }, {
1074
+ productID: 68,
1075
+ productName: 'Scottish Longbreads',
1076
+ supplierID: 8,
1077
+ categoryID: 3,
1078
+ quantityPerUnit: '10 boxes x 8 pieces',
1079
+ unitPrice: 12.5000,
1080
+ unitsInStock: 6,
1081
+ unitsOnOrder: 10,
1082
+ reorderLevel: 15,
1083
+ discontinued: false,
1084
+ category: {
1085
+ categoryID: 3,
1086
+ categoryName: 'Confections',
1087
+ description: 'Desserts, candies, and sweet breads'
1088
+ }
1089
+ }, {
1090
+ productID: 69,
1091
+ productName: 'Gudbrandsdalsost',
1092
+ supplierID: 15,
1093
+ categoryID: 4,
1094
+ quantityPerUnit: '10 kg pkg.',
1095
+ unitPrice: 36.0000,
1096
+ unitsInStock: 26,
1097
+ unitsOnOrder: 0,
1098
+ reorderLevel: 15,
1099
+ discontinued: false,
1100
+ category: {
1101
+ categoryID: 4,
1102
+ categoryName: 'Dairy Products',
1103
+ description: 'Cheeses'
1104
+ }
1105
+ }, {
1106
+ productID: 70,
1107
+ productName: 'Outback Lager',
1108
+ supplierID: 7,
1109
+ categoryID: 1,
1110
+ quantityPerUnit: '24 - 355 ml bottles',
1111
+ unitPrice: 15.0000,
1112
+ unitsInStock: 15,
1113
+ unitsOnOrder: 10,
1114
+ reorderLevel: 30,
1115
+ discontinued: false,
1116
+ category: {
1117
+ categoryID: 1,
1118
+ categoryName: 'Beverages',
1119
+ description: 'Soft drinks, coffees, teas, beers, and ales'
1120
+ }
1121
+ }, {
1122
+ productID: 71,
1123
+ productName: 'Flotemysost',
1124
+ supplierID: 15,
1125
+ categoryID: 4,
1126
+ quantityPerUnit: '10 - 500 g pkgs.',
1127
+ unitPrice: 21.5000,
1128
+ unitsInStock: 26,
1129
+ unitsOnOrder: 0,
1130
+ reorderLevel: 0,
1131
+ discontinued: false,
1132
+ category: {
1133
+ categoryID: 4,
1134
+ categoryName: 'Dairy Products',
1135
+ description: 'Cheeses'
1136
+ }
1137
+ }, {
1138
+ productID: 72,
1139
+ productName: 'Mozzarella di Giovanni',
1140
+ supplierID: 14,
1141
+ categoryID: 4,
1142
+ quantityPerUnit: '24 - 200 g pkgs.',
1143
+ unitPrice: 34.8000,
1144
+ unitsInStock: 14,
1145
+ unitsOnOrder: 0,
1146
+ reorderLevel: 0,
1147
+ discontinued: false,
1148
+ category: {
1149
+ categoryID: 4,
1150
+ categoryName: 'Dairy Products',
1151
+ description: 'Cheeses'
1152
+ }
1153
+ }, {
1154
+ productID: 73,
1155
+ productName: 'Röd Kaviar',
1156
+ supplierID: 17,
1157
+ categoryID: 8,
1158
+ quantityPerUnit: '24 - 150 g jars',
1159
+ unitPrice: 15.0000,
1160
+ unitsInStock: 101,
1161
+ unitsOnOrder: 0,
1162
+ reorderLevel: 5,
1163
+ discontinued: false,
1164
+ category: {
1165
+ categoryID: 8,
1166
+ categoryName: 'Seafood',
1167
+ description: 'Seaweed and fish'
1168
+ }
1169
+ }, {
1170
+ productID: 74,
1171
+ productName: 'Longlife Tofu',
1172
+ supplierID: 4,
1173
+ categoryID: 7,
1174
+ quantityPerUnit: '5 kg pkg.',
1175
+ unitPrice: 10.0000,
1176
+ unitsInStock: 4,
1177
+ unitsOnOrder: 20,
1178
+ reorderLevel: 5,
1179
+ discontinued: false,
1180
+ category: {
1181
+ categoryID: 7,
1182
+ categoryName: 'Produce',
1183
+ description: 'Dried fruit and bean curd'
1184
+ }
1185
+ }, {
1186
+ productID: 75,
1187
+ productName: 'Rhönbräu Klosterbier',
1188
+ supplierID: 12,
1189
+ categoryID: 1,
1190
+ quantityPerUnit: '24 - 0.5 l bottles',
1191
+ unitPrice: 7.7500,
1192
+ unitsInStock: 125,
1193
+ unitsOnOrder: 0,
1194
+ reorderLevel: 25,
1195
+ discontinued: false,
1196
+ category: {
1197
+ categoryID: 1,
1198
+ categoryName: 'Beverages',
1199
+ description: 'Soft drinks, coffees, teas, beers, and ales'
1200
+ }
1201
+ }, {
1202
+ productID: 76,
1203
+ productName: 'Lakkalikööri',
1204
+ supplierID: 23,
1205
+ categoryID: 1,
1206
+ quantityPerUnit: '500 ml',
1207
+ unitPrice: 18.0000,
1208
+ unitsInStock: 57,
1209
+ unitsOnOrder: 0,
1210
+ reorderLevel: 20,
1211
+ discontinued: false,
1212
+ category: {
1213
+ categoryID: 1,
1214
+ categoryName: 'Beverages',
1215
+ description: 'Soft drinks, coffees, teas, beers, and ales'
1216
+ }
1217
+ }, {
1218
+ productID: 77,
1219
+ productName: 'Original Frankfurter grüne Soße',
1220
+ supplierID: 12,
1221
+ categoryID: 2,
1222
+ quantityPerUnit: '12 boxes',
1223
+ unitPrice: 13.0000,
1224
+ unitsInStock: 32,
1225
+ unitsOnOrder: 0,
1226
+ reorderLevel: 15,
1227
+ discontinued: false,
1228
+ category: {
1229
+ categoryID: 2,
1230
+ categoryName: 'Condiments',
1231
+ description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
1232
+ }
1233
+ }];