@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
@@ -1,7 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- //# sourceMappingURL=schema.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../../libs/schematics/src/charts/stock/schema.ts"],"names":[],"mappings":""}
@@ -1,285 +0,0 @@
1
- {
2
- "progress:name": "Stock Chart",
3
- "progress:icon": "stockchart",
4
- "progress:description": "Generate new Kendo UI for Angular Chart page",
5
- "$schema": "http://json-schema.org/schema",
6
- "$id": "Schema",
7
- "type": "object",
8
- "properties": {
9
- "path": {
10
- "type": "string",
11
- "format": "path",
12
- "progress:editorVisible": false
13
- },
14
- "name": {
15
- "type": "string",
16
- "$default": {
17
- "$source": "argv",
18
- "index": 0
19
- },
20
- "default": "ChartPage"
21
- },
22
- "inlineTemplate": {
23
- "progress:display-name": "Inline template",
24
- "description": "Include template inline in the component.ts file. By default, an external template file is created and referenced in the component.ts file.",
25
- "type": "boolean",
26
- "default": false,
27
- "alias": "t"
28
- },
29
- "inlineStyle": {
30
- "description": "Include styles inline in the component.ts file. Only CSS styles can be included inline. By default, an external styles file is created and referenced in the component.ts file.",
31
- "type": "boolean",
32
- "default": false,
33
- "alias": "s"
34
- },
35
- "skipTests": {
36
- "type": "boolean",
37
- "description": "Do not create \"spec.ts\" test files for the new component.",
38
- "default": false
39
- },
40
- "titleText": {
41
- "progress:category": "Title",
42
- "progress:displayName": "Text",
43
- "type": "string"
44
- },
45
- "titlePosition": {
46
- "progress:category": "Title",
47
- "progress:displayName": "Position",
48
- "type": "string",
49
- "enum": [
50
- "top",
51
- "bottom"
52
- ]
53
- },
54
- "titleAlign": {
55
- "progress:category": "Title",
56
- "progress:displayName": "Align",
57
- "type": "string",
58
- "enum": [
59
- "left",
60
- "right",
61
- "center"
62
- ]
63
- },
64
- "renderAs": {
65
- "type": "string",
66
- "enum": [
67
- "svg",
68
- "canvas"
69
- ]
70
- },
71
- "title": {
72
- "description": "Sets the Chart title",
73
- "type": "string",
74
- "hidden": true,
75
- "progress:type": "object",
76
- "properties": {
77
- "text": {"type": "string"},
78
- "color": {"type": "string"},
79
- "background": {"type": "string"},
80
- "font": {"type": "string"},
81
- "margin": {"type": "number"},
82
- "padding": {"type": "number"},
83
- "position": {
84
- "type": "string",
85
- "enum": [
86
- "top",
87
- "bottom"
88
- ]
89
- },
90
- "visible": {"type": "boolean"}
91
- }
92
- },
93
- "series": {
94
- "progress:category": "Chart Series",
95
- "progress:type": "array",
96
- "hidden": true,
97
- "description": "Configures the series in the Chart",
98
- "type": "string",
99
- "items": {
100
- "type": "object",
101
- "properties": {
102
- "type": {
103
- "type": "string",
104
- "enum": [
105
- "candlestick",
106
- "ohlc"
107
- ],
108
- "default": "candlestick"
109
- },
110
- "categoryField": {"type": "string"},
111
- "openField": {"type": "string"},
112
- "closeField": {"type": "string"},
113
- "lowField": {"type": "string"},
114
- "highField": {"type": "string"},
115
- "name": {"type": "string"},
116
- "width": {"type": "number"}
117
- }
118
- }
119
- },
120
- "categoryAxis": {
121
- "progress:category": "Chart Axis",
122
- "progress:type": "array",
123
- "hidden": true,
124
- "description": "Configures the category axis items in the Chart",
125
- "type": "string",
126
- "items": {
127
- "type": "object",
128
- "properties": {
129
- "name": {"type": "string"},
130
- "title": {"type": "string"},
131
- "type": {
132
- "type": "string",
133
- "enum": [
134
- "category",
135
- "date"
136
- ]
137
- }
138
- }
139
- }
140
- },
141
- "valueAxis": {
142
- "progress:category": "Chart Axis",
143
- "progress:type": "array",
144
- "hidden": true,
145
- "description": "Configures the value axis items in the Chart",
146
- "type": "string",
147
- "items": {
148
- "type": "object",
149
- "properties": {
150
- "name": {"type": "string"},
151
- "title": {"type": "string"},
152
- "type": {
153
- "type": "string",
154
- "enum": [
155
- "numeric",
156
- "log"
157
- ]
158
- }
159
- }
160
- }
161
- },
162
- "legend": {
163
- "description": "Determines whether the Chart legend will be rendered",
164
- "type": "boolean"
165
- },
166
- "legendTitleText": {
167
- "description": "The legend title",
168
- "type": "string"
169
- },
170
- "legendTitleAlign": {
171
- "description": "The legend title alignment",
172
- "type": "string",
173
- "enum": [
174
- "left",
175
- "right",
176
- "center"
177
- ]
178
- },
179
- "legendTitlePosition": {
180
- "description": "The legend title alignment",
181
- "type": "string",
182
- "enum": [
183
- "top",
184
- "bottom"
185
- ]
186
- },
187
- "legendAlign": {
188
- "description": "The legend alignment",
189
- "type": "string",
190
- "enum": [
191
- "center",
192
- "start",
193
- "end"
194
- ]
195
- },
196
- "legendPosition": {
197
- "description": "The legend position",
198
- "type": "string",
199
- "enum": [
200
- "top",
201
- "bottom",
202
- "left",
203
- "right",
204
- "custom"
205
- ]
206
- },
207
- "legendOrientation": {
208
- "description": "The legend orientation",
209
- "type": "string",
210
- "enum": [
211
- "vertical",
212
- "horizontal"
213
- ]
214
- },
215
- "navigator": {"type": "boolean"},
216
- "navigatorFrom": {"type": "string"},
217
- "navigatorTo": {"type": "string"},
218
- "navigatorSeries": {
219
- "progress:category": "Navigator Series",
220
- "progress:type": "array",
221
- "hidden": true,
222
- "description": "Configures the series in the Chart Navigator",
223
- "type": "string",
224
- "items": {
225
- "type": "object",
226
- "properties": {
227
- "type": {
228
- "type": "string",
229
- "enum": [
230
- "area",
231
- "column",
232
- "line",
233
- "candlestick",
234
- "ohlc"
235
- ],
236
- "default": "area"
237
- },
238
- "categoryField": {"type": "string"},
239
- "field": {"type": "string"},
240
- "openField": {"type": "string"},
241
- "closeField": {"type": "string"},
242
- "lowField": {"type": "string"},
243
- "highField": {"type": "string"},
244
- "name": {"type": "string"},
245
- "width": {"type": "number"}
246
- }
247
- }
248
- },
249
- "mockedData": {
250
- "description": "Enables the generation of a local data file",
251
- "type": "boolean"
252
- },
253
- "dataPath": {
254
- "description": "Sets a path to the local data file",
255
- "type": "string",
256
- "progress:hideOnPropertyValue": {
257
- "property": "mockedData",
258
- "value": true
259
- }
260
- },
261
- "dataName": {
262
- "description": "Sets a name to the local data property",
263
- "type": "string",
264
- "progress:hideOnPropertyValue": {
265
- "property": "mockedData",
266
- "value": true
267
- }
268
- },
269
- "dataSourceType": {
270
- "type": "string"
271
- },
272
- "dataSourceModule": {
273
- "type": "string"
274
- },
275
- "dataSourceMember": {
276
- "type": "string"
277
- },
278
- "dataSourceMethod": {
279
- "type": "string"
280
- }
281
- },
282
- "required": [
283
- "name"
284
- ]
285
- }
@@ -1,5 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export declare const productsSourceCode = "export const products = [{\n ProductID: 1,\n ProductName: 'Chai',\n SupplierID: 1,\n CategoryID: 1,\n QuantityPerUnit: '10 boxes x 20 bags',\n UnitPrice: 18.0000,\n UnitsInStock: 39,\n UnitsOnOrder: 0,\n ReorderLevel: 10,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 2,\n ProductName: 'Chang',\n SupplierID: 1,\n CategoryID: 1,\n QuantityPerUnit: '24 - 12 oz bottles',\n UnitPrice: 19.0000,\n UnitsInStock: 17,\n UnitsOnOrder: 40,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 3,\n ProductName: 'Aniseed Syrup',\n SupplierID: 1,\n CategoryID: 2,\n QuantityPerUnit: '12 - 550 ml bottles',\n UnitPrice: 10.0000,\n UnitsInStock: 13,\n UnitsOnOrder: 70,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 4,\n ProductName: 'Chef Antons Cajun Seasoning',\n SupplierID: 2,\n CategoryID: 2,\n QuantityPerUnit: '48 - 6 oz jars',\n UnitPrice: 22.0000,\n UnitsInStock: 53,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 5,\n ProductName: 'Chef Antons Gumbo Mix',\n SupplierID: 2,\n CategoryID: 2,\n QuantityPerUnit: '36 boxes',\n UnitPrice: 21.3500,\n UnitsInStock: 0,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: true,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 6,\n ProductName: 'Grandmas Boysenberry Spread',\n SupplierID: 3,\n CategoryID: 2,\n QuantityPerUnit: '12 - 8 oz jars',\n UnitPrice: 25.0000,\n UnitsInStock: 120,\n UnitsOnOrder: 0,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 7,\n ProductName: 'Uncle Bobs Organic Dried Pears',\n SupplierID: 3,\n CategoryID: 7,\n QuantityPerUnit: '12 - 1 lb pkgs.',\n UnitPrice: 30.0000,\n UnitsInStock: 15,\n UnitsOnOrder: 0,\n ReorderLevel: 10,\n Discontinued: false,\n Category: {\n CategoryID: 7,\n CategoryName: 'Produce',\n Description: 'Dried fruit and bean curd'\n }\n}, {\n ProductID: 8,\n ProductName: 'Northwoods Cranberry Sauce',\n SupplierID: 3,\n CategoryID: 2,\n QuantityPerUnit: '12 - 12 oz jars',\n UnitPrice: 40.0000,\n UnitsInStock: 6,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 9,\n ProductName: 'Mishi Kobe Niku',\n SupplierID: 4,\n CategoryID: 6,\n QuantityPerUnit: '18 - 500 g pkgs.',\n UnitPrice: 97.0000,\n UnitsInStock: 29,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: true,\n Category: {\n CategoryID: 6,\n CategoryName: 'Meat/Poultry',\n Description: 'Prepared meats'\n }\n}, {\n ProductID: 10,\n ProductName: 'Ikura',\n SupplierID: 4,\n CategoryID: 8,\n QuantityPerUnit: '12 - 200 ml jars',\n UnitPrice: 31.0000,\n UnitsInStock: 31,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 11,\n ProductName: 'Queso Cabrales',\n SupplierID: 5,\n CategoryID: 4,\n QuantityPerUnit: '1 kg pkg.',\n UnitPrice: 21.0000,\n UnitsInStock: 22,\n UnitsOnOrder: 30,\n ReorderLevel: 30,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 12,\n ProductName: 'Queso Manchego La Pastora',\n SupplierID: 5,\n CategoryID: 4,\n QuantityPerUnit: '10 - 500 g pkgs.',\n UnitPrice: 38.0000,\n UnitsInStock: 86,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 13,\n ProductName: 'Konbu',\n SupplierID: 6,\n CategoryID: 8,\n QuantityPerUnit: '2 kg box',\n UnitPrice: 6.0000,\n UnitsInStock: 24,\n UnitsOnOrder: 0,\n ReorderLevel: 5,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 14,\n ProductName: 'Tofu',\n SupplierID: 6,\n CategoryID: 7,\n QuantityPerUnit: '40 - 100 g pkgs.',\n UnitPrice: 23.2500,\n UnitsInStock: 35,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 7,\n CategoryName: 'Produce',\n Description: 'Dried fruit and bean curd'\n }\n}, {\n ProductID: 15,\n ProductName: 'Genen Shouyu',\n SupplierID: 6,\n CategoryID: 2,\n QuantityPerUnit: '24 - 250 ml bottles',\n UnitPrice: 15.5000,\n UnitsInStock: 39,\n UnitsOnOrder: 0,\n ReorderLevel: 5,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 16,\n ProductName: 'Pavlova',\n SupplierID: 7,\n CategoryID: 3,\n QuantityPerUnit: '32 - 500 g boxes',\n UnitPrice: 17.4500,\n UnitsInStock: 29,\n UnitsOnOrder: 0,\n ReorderLevel: 10,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 17,\n ProductName: 'Alice Mutton',\n SupplierID: 7,\n CategoryID: 6,\n QuantityPerUnit: '20 - 1 kg tins',\n UnitPrice: 39.0000,\n UnitsInStock: 0,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: true,\n Category: {\n CategoryID: 6,\n CategoryName: 'Meat/Poultry',\n Description: 'Prepared meats'\n }\n}, {\n ProductID: 18,\n ProductName: 'Carnarvon Tigers',\n SupplierID: 7,\n CategoryID: 8,\n QuantityPerUnit: '16 kg pkg.',\n UnitPrice: 62.5000,\n UnitsInStock: 42,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 19,\n ProductName: 'Teatime Chocolate Biscuits',\n SupplierID: 8,\n CategoryID: 3,\n QuantityPerUnit: '10 boxes x 12 pieces',\n UnitPrice: 9.2000,\n UnitsInStock: 25,\n UnitsOnOrder: 0,\n ReorderLevel: 5,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 20,\n ProductName: 'Sir Rodneys Marmalade',\n SupplierID: 8,\n CategoryID: 3,\n QuantityPerUnit: '30 gift boxes',\n UnitPrice: 81.0000,\n UnitsInStock: 40,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 21,\n ProductName: 'Sir Rodneys Scones',\n SupplierID: 8,\n CategoryID: 3,\n QuantityPerUnit: '24 pkgs. x 4 pieces',\n UnitPrice: 10.0000,\n UnitsInStock: 3,\n UnitsOnOrder: 40,\n ReorderLevel: 5,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 22,\n ProductName: 'Gustafs Kn\u00E4ckebr\u00F6d',\n SupplierID: 9,\n CategoryID: 5,\n QuantityPerUnit: '24 - 500 g pkgs.',\n UnitPrice: 21.0000,\n UnitsInStock: 104,\n UnitsOnOrder: 0,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 5,\n CategoryName: 'Grains/Cereals',\n Description: 'Breads, crackers, pasta, and cereal'\n }\n}, {\n ProductID: 23,\n ProductName: 'Tunnbr\u00F6d',\n SupplierID: 9,\n CategoryID: 5,\n QuantityPerUnit: '12 - 250 g pkgs.',\n UnitPrice: 9.0000,\n UnitsInStock: 61,\n UnitsOnOrder: 0,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 5,\n CategoryName: 'Grains/Cereals',\n Description: 'Breads, crackers, pasta, and cereal'\n }\n}, {\n ProductID: 24,\n ProductName: 'Guaran\u00E1 Fant\u00E1stica',\n SupplierID: 10,\n CategoryID: 1,\n QuantityPerUnit: '12 - 355 ml cans',\n UnitPrice: 4.5000,\n UnitsInStock: 20,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: true,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 25,\n ProductName: 'NuNuCa Nu\u00DF-Nougat-Creme',\n SupplierID: 11,\n CategoryID: 3,\n QuantityPerUnit: '20 - 450 g glasses',\n UnitPrice: 14.0000,\n UnitsInStock: 76,\n UnitsOnOrder: 0,\n ReorderLevel: 30,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 26,\n ProductName: 'Gumb\u00E4r Gummib\u00E4rchen',\n SupplierID: 11,\n CategoryID: 3,\n QuantityPerUnit: '100 - 250 g bags',\n UnitPrice: 31.2300,\n UnitsInStock: 15,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 27,\n ProductName: 'Schoggi Schokolade',\n SupplierID: 11,\n CategoryID: 3,\n QuantityPerUnit: '100 - 100 g pieces',\n UnitPrice: 43.9000,\n UnitsInStock: 49,\n UnitsOnOrder: 0,\n ReorderLevel: 30,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 28,\n ProductName: 'R\u00F6ssle Sauerkraut',\n SupplierID: 12,\n CategoryID: 7,\n QuantityPerUnit: '25 - 825 g cans',\n UnitPrice: 45.6000,\n UnitsInStock: 26,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: true,\n Category: {\n CategoryID: 7,\n CategoryName: 'Produce',\n Description: 'Dried fruit and bean curd'\n }\n}, {\n ProductID: 29,\n ProductName: 'Th\u00FCringer Rostbratwurst',\n SupplierID: 12,\n CategoryID: 6,\n QuantityPerUnit: '50 bags x 30 sausgs.',\n UnitPrice: 123.7900,\n UnitsInStock: 0,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: true,\n Category: {\n CategoryID: 6,\n CategoryName: 'Meat/Poultry',\n Description: 'Prepared meats'\n }\n}, {\n ProductID: 30,\n ProductName: 'Nord-Ost Matjeshering',\n SupplierID: 13,\n CategoryID: 8,\n QuantityPerUnit: '10 - 200 g glasses',\n UnitPrice: 25.8900,\n UnitsInStock: 10,\n UnitsOnOrder: 0,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 31,\n ProductName: 'Gorgonzola Telino',\n SupplierID: 14,\n CategoryID: 4,\n QuantityPerUnit: '12 - 100 g pkgs',\n UnitPrice: 12.5000,\n UnitsInStock: 0,\n UnitsOnOrder: 70,\n ReorderLevel: 20,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 32,\n ProductName: 'Mascarpone Fabioli',\n SupplierID: 14,\n CategoryID: 4,\n QuantityPerUnit: '24 - 200 g pkgs.',\n UnitPrice: 32.0000,\n UnitsInStock: 9,\n UnitsOnOrder: 40,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 33,\n ProductName: 'Geitost',\n SupplierID: 15,\n CategoryID: 4,\n QuantityPerUnit: '500 g',\n UnitPrice: 2.5000,\n UnitsInStock: 112,\n UnitsOnOrder: 0,\n ReorderLevel: 20,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 34,\n ProductName: 'Sasquatch Ale',\n SupplierID: 16,\n CategoryID: 1,\n QuantityPerUnit: '24 - 12 oz bottles',\n UnitPrice: 14.0000,\n UnitsInStock: 111,\n UnitsOnOrder: 0,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 35,\n ProductName: 'Steeleye Stout',\n SupplierID: 16,\n CategoryID: 1,\n QuantityPerUnit: '24 - 12 oz bottles',\n UnitPrice: 18.0000,\n UnitsInStock: 20,\n UnitsOnOrder: 0,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 36,\n ProductName: 'Inlagd Sill',\n SupplierID: 17,\n CategoryID: 8,\n QuantityPerUnit: '24 - 250 g jars',\n UnitPrice: 19.0000,\n UnitsInStock: 112,\n UnitsOnOrder: 0,\n ReorderLevel: 20,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 37,\n ProductName: 'Gravad lax',\n SupplierID: 17,\n CategoryID: 8,\n QuantityPerUnit: '12 - 500 g pkgs.',\n UnitPrice: 26.0000,\n UnitsInStock: 11,\n UnitsOnOrder: 50,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 38,\n ProductName: 'C\u00F4te de Blaye',\n SupplierID: 18,\n CategoryID: 1,\n QuantityPerUnit: '12 - 75 cl bottles',\n UnitPrice: 263.5000,\n UnitsInStock: 17,\n UnitsOnOrder: 0,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 39,\n ProductName: 'Chartreuse verte',\n SupplierID: 18,\n CategoryID: 1,\n QuantityPerUnit: '750 cc per bottle',\n UnitPrice: 18.0000,\n UnitsInStock: 69,\n UnitsOnOrder: 0,\n ReorderLevel: 5,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 40,\n ProductName: 'Boston Crab Meat',\n SupplierID: 19,\n CategoryID: 8,\n QuantityPerUnit: '24 - 4 oz tins',\n UnitPrice: 18.4000,\n UnitsInStock: 123,\n UnitsOnOrder: 0,\n ReorderLevel: 30,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 41,\n ProductName: 'Jacks New England Clam Chowder',\n SupplierID: 19,\n CategoryID: 8,\n QuantityPerUnit: '12 - 12 oz cans',\n UnitPrice: 9.6500,\n UnitsInStock: 85,\n UnitsOnOrder: 0,\n ReorderLevel: 10,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 42,\n ProductName: 'Singaporean Hokkien Fried Mee',\n SupplierID: 20,\n CategoryID: 5,\n QuantityPerUnit: '32 - 1 kg pkgs.',\n UnitPrice: 14.0000,\n UnitsInStock: 26,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: true,\n Category: {\n CategoryID: 5,\n CategoryName: 'Grains/Cereals',\n Description: 'Breads, crackers, pasta, and cereal'\n }\n}, {\n ProductID: 43,\n ProductName: 'Ipoh Coffee',\n SupplierID: 20,\n CategoryID: 1,\n QuantityPerUnit: '16 - 500 g tins',\n UnitPrice: 46.0000,\n UnitsInStock: 17,\n UnitsOnOrder: 10,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 44,\n ProductName: 'Gula Malacca',\n SupplierID: 20,\n CategoryID: 2,\n QuantityPerUnit: '20 - 2 kg bags',\n UnitPrice: 19.4500,\n UnitsInStock: 27,\n UnitsOnOrder: 0,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 45,\n ProductName: 'Rogede sild',\n SupplierID: 21,\n CategoryID: 8,\n QuantityPerUnit: '1k pkg.',\n UnitPrice: 9.5000,\n UnitsInStock: 5,\n UnitsOnOrder: 70,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 46,\n ProductName: 'Spegesild',\n SupplierID: 21,\n CategoryID: 8,\n QuantityPerUnit: '4 - 450 g glasses',\n UnitPrice: 12.0000,\n UnitsInStock: 95,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 47,\n ProductName: 'Zaanse koeken',\n SupplierID: 22,\n CategoryID: 3,\n QuantityPerUnit: '10 - 4 oz boxes',\n UnitPrice: 9.5000,\n UnitsInStock: 36,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 48,\n ProductName: 'Chocolade',\n SupplierID: 22,\n CategoryID: 3,\n QuantityPerUnit: '10 pkgs.',\n UnitPrice: 12.7500,\n UnitsInStock: 15,\n UnitsOnOrder: 70,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 49,\n ProductName: 'Maxilaku',\n SupplierID: 23,\n CategoryID: 3,\n QuantityPerUnit: '24 - 50 g pkgs.',\n UnitPrice: 20.0000,\n UnitsInStock: 10,\n UnitsOnOrder: 60,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 50,\n ProductName: 'Valkoinen suklaa',\n SupplierID: 23,\n CategoryID: 3,\n QuantityPerUnit: '12 - 100 g bars',\n UnitPrice: 16.2500,\n UnitsInStock: 65,\n UnitsOnOrder: 0,\n ReorderLevel: 30,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 51,\n ProductName: 'Manjimup Dried Apples',\n SupplierID: 24,\n CategoryID: 7,\n QuantityPerUnit: '50 - 300 g pkgs.',\n UnitPrice: 53.0000,\n UnitsInStock: 20,\n UnitsOnOrder: 0,\n ReorderLevel: 10,\n Discontinued: false,\n Category: {\n CategoryID: 7,\n CategoryName: 'Produce',\n Description: 'Dried fruit and bean curd'\n }\n}, {\n ProductID: 52,\n ProductName: 'Filo Mix',\n SupplierID: 24,\n CategoryID: 5,\n QuantityPerUnit: '16 - 2 kg boxes',\n UnitPrice: 7.0000,\n UnitsInStock: 38,\n UnitsOnOrder: 0,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 5,\n CategoryName: 'Grains/Cereals',\n Description: 'Breads, crackers, pasta, and cereal'\n }\n}, {\n ProductID: 53,\n ProductName: 'Perth Pasties',\n SupplierID: 24,\n CategoryID: 6,\n QuantityPerUnit: '48 pieces',\n UnitPrice: 32.8000,\n UnitsInStock: 0,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: true,\n Category: {\n CategoryID: 6,\n CategoryName: 'Meat/Poultry',\n Description: 'Prepared meats'\n }\n}, {\n ProductID: 54,\n ProductName: 'Tourti\u00E8re',\n SupplierID: 25,\n CategoryID: 6,\n QuantityPerUnit: '16 pies',\n UnitPrice: 7.4500,\n UnitsInStock: 21,\n UnitsOnOrder: 0,\n ReorderLevel: 10,\n Discontinued: false,\n Category: {\n CategoryID: 6,\n CategoryName: 'Meat/Poultry',\n Description: 'Prepared meats'\n }\n}, {\n ProductID: 55,\n ProductName: 'P\u00E2t\u00E9 chinois',\n SupplierID: 25,\n CategoryID: 6,\n QuantityPerUnit: '24 boxes x 2 pies',\n UnitPrice: 24.0000,\n UnitsInStock: 115,\n UnitsOnOrder: 0,\n ReorderLevel: 20,\n Discontinued: false,\n Category: {\n CategoryID: 6,\n CategoryName: 'Meat/Poultry',\n Description: 'Prepared meats'\n }\n}, {\n ProductID: 56,\n ProductName: 'Gnocchi di nonna Alice',\n SupplierID: 26,\n CategoryID: 5,\n QuantityPerUnit: '24 - 250 g pkgs.',\n UnitPrice: 38.0000,\n UnitsInStock: 21,\n UnitsOnOrder: 10,\n ReorderLevel: 30,\n Discontinued: false,\n Category: {\n CategoryID: 5,\n CategoryName: 'Grains/Cereals',\n Description: 'Breads, crackers, pasta, and cereal'\n }\n}, {\n ProductID: 57,\n ProductName: 'Ravioli Angelo',\n SupplierID: 26,\n CategoryID: 5,\n QuantityPerUnit: '24 - 250 g pkgs.',\n UnitPrice: 19.5000,\n UnitsInStock: 36,\n UnitsOnOrder: 0,\n ReorderLevel: 20,\n Discontinued: false,\n Category: {\n CategoryID: 5,\n CategoryName: 'Grains/Cereals',\n Description: 'Breads, crackers, pasta, and cereal'\n }\n}, {\n ProductID: 58,\n ProductName: 'Escargots de Bourgogne',\n SupplierID: 27,\n CategoryID: 8,\n QuantityPerUnit: '24 pieces',\n UnitPrice: 13.2500,\n UnitsInStock: 62,\n UnitsOnOrder: 0,\n ReorderLevel: 20,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 59,\n ProductName: 'Raclette Courdavault',\n SupplierID: 28,\n CategoryID: 4,\n QuantityPerUnit: '5 kg pkg.',\n UnitPrice: 55.0000,\n UnitsInStock: 79,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 60,\n ProductName: 'Camembert Pierrot',\n SupplierID: 28,\n CategoryID: 4,\n QuantityPerUnit: '15 - 300 g rounds',\n UnitPrice: 34.0000,\n UnitsInStock: 19,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 61,\n ProductName: 'Sirop d\u00E9rable',\n SupplierID: 29,\n CategoryID: 2,\n QuantityPerUnit: '24 - 500 ml bottles',\n UnitPrice: 28.5000,\n UnitsInStock: 113,\n UnitsOnOrder: 0,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 62,\n ProductName: 'Tarte au sucre',\n SupplierID: 29,\n CategoryID: 3,\n QuantityPerUnit: '48 pies',\n UnitPrice: 49.3000,\n UnitsInStock: 17,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 63,\n ProductName: 'Vegie-spread',\n SupplierID: 7,\n CategoryID: 2,\n QuantityPerUnit: '15 - 625 g jars',\n UnitPrice: 43.9000,\n UnitsInStock: 24,\n UnitsOnOrder: 0,\n ReorderLevel: 5,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 64,\n ProductName: 'Wimmers gute Semmelkn\u00F6del',\n SupplierID: 12,\n CategoryID: 5,\n QuantityPerUnit: '20 bags x 4 pieces',\n UnitPrice: 33.2500,\n UnitsInStock: 22,\n UnitsOnOrder: 80,\n ReorderLevel: 30,\n Discontinued: false,\n Category: {\n CategoryID: 5,\n CategoryName: 'Grains/Cereals',\n Description: 'Breads, crackers, pasta, and cereal'\n }\n}, {\n ProductID: 65,\n ProductName: 'Louisiana Fiery Hot Pepper Sauce',\n SupplierID: 2,\n CategoryID: 2,\n QuantityPerUnit: '32 - 8 oz bottles',\n UnitPrice: 21.0500,\n UnitsInStock: 76,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 66,\n ProductName: 'Louisiana Hot Spiced Okra',\n SupplierID: 2,\n CategoryID: 2,\n QuantityPerUnit: '24 - 8 oz jars',\n UnitPrice: 17.0000,\n UnitsInStock: 4,\n UnitsOnOrder: 100,\n ReorderLevel: 20,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}, {\n ProductID: 67,\n ProductName: 'Laughing Lumberjack Lager',\n SupplierID: 16,\n CategoryID: 1,\n QuantityPerUnit: '24 - 12 oz bottles',\n UnitPrice: 14.0000,\n UnitsInStock: 52,\n UnitsOnOrder: 0,\n ReorderLevel: 10,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 68,\n ProductName: 'Scottish Longbreads',\n SupplierID: 8,\n CategoryID: 3,\n QuantityPerUnit: '10 boxes x 8 pieces',\n UnitPrice: 12.5000,\n UnitsInStock: 6,\n UnitsOnOrder: 10,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 3,\n CategoryName: 'Confections',\n Description: 'Desserts, candies, and sweet breads'\n }\n}, {\n ProductID: 69,\n ProductName: 'Gudbrandsdalsost',\n SupplierID: 15,\n CategoryID: 4,\n QuantityPerUnit: '10 kg pkg.',\n UnitPrice: 36.0000,\n UnitsInStock: 26,\n UnitsOnOrder: 0,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 70,\n ProductName: 'Outback Lager',\n SupplierID: 7,\n CategoryID: 1,\n QuantityPerUnit: '24 - 355 ml bottles',\n UnitPrice: 15.0000,\n UnitsInStock: 15,\n UnitsOnOrder: 10,\n ReorderLevel: 30,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 71,\n ProductName: 'Flotemysost',\n SupplierID: 15,\n CategoryID: 4,\n QuantityPerUnit: '10 - 500 g pkgs.',\n UnitPrice: 21.5000,\n UnitsInStock: 26,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 72,\n ProductName: 'Mozzarella di Giovanni',\n SupplierID: 14,\n CategoryID: 4,\n QuantityPerUnit: '24 - 200 g pkgs.',\n UnitPrice: 34.8000,\n UnitsInStock: 14,\n UnitsOnOrder: 0,\n ReorderLevel: 0,\n Discontinued: false,\n Category: {\n CategoryID: 4,\n CategoryName: 'Dairy Products',\n Description: 'Cheeses'\n }\n}, {\n ProductID: 73,\n ProductName: 'R\u00F6d Kaviar',\n SupplierID: 17,\n CategoryID: 8,\n QuantityPerUnit: '24 - 150 g jars',\n UnitPrice: 15.0000,\n UnitsInStock: 101,\n UnitsOnOrder: 0,\n ReorderLevel: 5,\n Discontinued: false,\n Category: {\n CategoryID: 8,\n CategoryName: 'Seafood',\n Description: 'Seaweed and fish'\n }\n}, {\n ProductID: 74,\n ProductName: 'Longlife Tofu',\n SupplierID: 4,\n CategoryID: 7,\n QuantityPerUnit: '5 kg pkg.',\n UnitPrice: 10.0000,\n UnitsInStock: 4,\n UnitsOnOrder: 20,\n ReorderLevel: 5,\n Discontinued: false,\n Category: {\n CategoryID: 7,\n CategoryName: 'Produce',\n Description: 'Dried fruit and bean curd'\n }\n}, {\n ProductID: 75,\n ProductName: 'Rh\u00F6nbr\u00E4u Klosterbier',\n SupplierID: 12,\n CategoryID: 1,\n QuantityPerUnit: '24 - 0.5 l bottles',\n UnitPrice: 7.7500,\n UnitsInStock: 125,\n UnitsOnOrder: 0,\n ReorderLevel: 25,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 76,\n ProductName: 'Lakkalik\u00F6\u00F6ri',\n SupplierID: 23,\n CategoryID: 1,\n QuantityPerUnit: '500 ml',\n UnitPrice: 18.0000,\n UnitsInStock: 57,\n UnitsOnOrder: 0,\n ReorderLevel: 20,\n Discontinued: false,\n Category: {\n CategoryID: 1,\n CategoryName: 'Beverages',\n Description: 'Soft drinks, coffees, teas, beers, and ales'\n }\n}, {\n ProductID: 77,\n ProductName: 'Original Frankfurter gr\u00FCne So\u00DFe',\n SupplierID: 12,\n CategoryID: 2,\n QuantityPerUnit: '12 boxes',\n UnitPrice: 13.0000,\n UnitsInStock: 32,\n UnitsOnOrder: 0,\n ReorderLevel: 15,\n Discontinued: false,\n Category: {\n CategoryID: 2,\n CategoryName: 'Condiments',\n Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'\n }\n}];";