|
1 | | -{ |
2 | | - "Fruits": [ |
3 | | - {"Apples": 3}, |
4 | | - {"Oranges": 3}, |
5 | | - {"Tangerines": 2}, |
6 | | - {"Dragonfruit": 6}, |
7 | | - {"Pineapple": 5}, |
8 | | - {"Watermelon": 3}, |
9 | | - {"Grapefruit": 5}, |
10 | | - {"Strawberres": 5}, |
11 | | - {"Blueberries": 6}, |
12 | | - {"Raspberries": 5}, |
13 | | - {"Bananas": 4}, |
14 | | - {"Pears": 4}, |
15 | | - {"Kiwis": 5} |
16 | | - ], |
17 | | - "Vegetables": [ |
18 | | - {"Romaine Lettuce": 3}, |
19 | | - {"Broccoli": 4}, |
20 | | - {"Onion": 2}, |
21 | | - {"Garlic": 3}, |
22 | | - {"Cucumbers": 2}, |
23 | | - {"Red Bell Peppers", 4}, |
24 | | - {"Orange Bell Peppers", 4}, |
25 | | - {"Yellow Bell Peppers", 4}, |
26 | | - {"Green Bell Peppers", 4}, |
27 | | - {"Tomatoes", 3}, |
28 | | - {"Radishes", 2}, |
29 | | - {"Carrots", 2}, |
30 | | - {"Parsley", 4} |
31 | | - ], |
32 | | - "Meats": [ |
33 | | - {"Beef", 6}, |
34 | | - {"Chicken", 4}, |
35 | | - {"Turkey", 3}, |
36 | | - {"Salmon", 7}, |
37 | | - {"Pollock", 6}, |
38 | | - {"Pork", 4} |
39 | | - ], |
40 | | - "Dairy": [ |
41 | | - {"Milk", 4}, |
42 | | - {"Eggs", 3}, |
43 | | - {"Yogurt", 4}, |
44 | | - {"Cheese", 3}, |
45 | | - {"Butter", 2} |
46 | | - ], |
47 | | - "Beverages": [ |
48 | | - {"Coconut Milk", 4}, |
49 | | - {"Almond Milk", 4}, |
50 | | - {"Watermellon Juice", 5}, |
51 | | - {"Blueberry Juice", 4} |
52 | | - ], |
53 | | - "Grains": [ |
54 | | - {"Bread", 4}, |
55 | | - {"Cereal", 4}, |
56 | | - {"Oats", 2}, |
57 | | - {"Sourdough", 3} |
58 | | - ], |
59 | | - "Legumes": [ |
60 | | - {"Kidney Beans", 2}, |
61 | | - {"Garbanzo Beans", 2}, |
62 | | - {"Lentils", 2}, |
63 | | - {"Pinto Beans", 2} |
64 | | - ], |
65 | | - "Pets": [ |
66 | | - {"Rat Food", 8} |
67 | | - ], |
68 | | - "Other": [ |
69 | | - {"Crocodile Tail", 25} |
| 1 | +{ |
| 2 | + "items":[ |
| 3 | + {"category": "Fruits", "name": "Apples", "price": 3, "stocked": true }, |
| 4 | + {"category": "Fruits", "name": "Oranges", "price": 3, "stocked": true }, |
| 5 | + {"category": "Fruits", "name": "Tangerines", "price": 2, "stocked": true }, |
| 6 | + {"category": "Fruits", "name": "Dragnfruit", "price": 6, "stocked": true }, |
| 7 | + {"category": "Fruits", "name": "Pineapple", "price": 5, "stocked": true }, |
| 8 | + {"category": "Fruits", "name": "Watermelon", "price": 3, "stocked": true }, |
| 9 | + {"category": "Fruits", "name": "Grapefruit", "price": 5, "stocked": true }, |
| 10 | + {"category": "Fruits", "name": "Strawberries", "price": 5, "stocked": true }, |
| 11 | + {"category": "Fruits", "name": "Blueberries", "price": 6, "stocked": true }, |
| 12 | + {"category": "Fruits", "name": "Raspberries", "price": 5, "stocked": true }, |
| 13 | + {"category": "Fruits", "name": "Bananas", "price": 4, "stocked": true }, |
| 14 | + {"category": "Fruits", "name": "Pears", "price": 4, "stocked": true }, |
| 15 | + {"category": "Fruits", "name": "Kiwis", "price": 5, "stocked": true }, |
| 16 | + {"category": "Vegetables", "name": "Romaine", "price": 3, "stocked": true }, |
| 17 | + {"category": "Vegetables", "name": "Broccoli", "price": 4, "stocked": true }, |
| 18 | + {"category": "Vegetables", "name": "Onion", "price": 2, "stocked": true }, |
| 19 | + {"category": "Vegetables", "name": "Garlic", "price": 3, "stocked": true }, |
| 20 | + {"category": "Vegetables", "name": "Cucumbers", "price": 2, "stocked": true }, |
| 21 | + {"category": "Vegetables", "name": "Red Bell Peppers", "price": 4, "stocked": true }, |
| 22 | + {"category": "Vegetables", "name": "Orange Bell Peppers", "price": 4, "stocked": true }, |
| 23 | + {"category": "Vegetables", "name": "Yellow Bell Peppers", "price": 4, "stocked": true }, |
| 24 | + {"category": "Vegetables", "name": "Green Bell Peppers", "price": 4, "stocked": true }, |
| 25 | + {"category": "Vegetables", "name": "Tomatoes", "price": 3, "stocked": true }, |
| 26 | + {"category": "Vegetables", "name": "Radishes", "price": 2, "stocked": true }, |
| 27 | + {"category": "Vegetables", "name": "Carrots", "price": 2, "stocked": true }, |
| 28 | + {"category": "Vegetables", "name": "Parsley", "price": 4, "stocked": true }, |
| 29 | + {"category": "Meats", "name": "Beaf", "price": 6, "stocked": true }, |
| 30 | + {"category": "Meats", "name": "Chicken", "price": 4, "stocked": true }, |
| 31 | + {"category": "Meats", "name": "Turkey", "price": 3, "stocked": true }, |
| 32 | + {"category": "Meats", "name": "Salmon", "price": 7, "stocked": true }, |
| 33 | + {"category": "Meats", "name": "Pollock", "price": 6, "stocked": true }, |
| 34 | + {"category": "Meats", "name": "Pork", "price": 4, "stocked": true }, |
| 35 | + {"category": "Dairy", "name": "Milk", "price": 4, "stocked": true }, |
| 36 | + {"category": "Dairy", "name": "Eggs", "price": 3, "stocked": true }, |
| 37 | + {"category": "Dairy", "name": "Yogurt", "price": 4, "stocked": true }, |
| 38 | + {"category": "Dairy", "name": "Cheese", "price": 3, "stocked": true }, |
| 39 | + {"category": "Dairy", "name": "Butter", "price": 2, "stocked": true }, |
| 40 | + {"category": "Beverages", "name": "Coconut Milk", "price": 4, "stocked": true }, |
| 41 | + {"category": "Beverages", "name": "Almond Milk", "price": 4, "stocked": true }, |
| 42 | + {"category": "Beverages", "name": "Watermelon Juice", "price": 5, "stocked": true }, |
| 43 | + {"category": "Beverages", "name": "Blueberry Juice", "price": 4, "stocked": true }, |
| 44 | + {"category": "Grains", "name": "Bread", "price": 4, "stocked": true }, |
| 45 | + {"category": "Grains", "name": "Cereal", "price": 4, "stocked": true }, |
| 46 | + {"category": "Grains", "name": "Oats", "price": 2, "stocked": true }, |
| 47 | + {"category": "Grains", "name": "Souredough", "price": 3, "stocked": true }, |
| 48 | + {"category": "Legumes", "name": "Kidney Beans", "price": 2, "stocked": true }, |
| 49 | + {"category": "Legumes", "name": "Garbanzo Beans", "price": 2, "stocked": true }, |
| 50 | + {"category": "Legumes", "name": "Lentils", "price": 2, "stocked": true }, |
| 51 | + {"category": "Legumes", "name": "Pinto Beans", "price": 2, "stocked": true }, |
| 52 | + {"category": "For Pets", "name": "Rat Food", "price": 8, "stocked": true }, |
| 53 | + {"category": "Other", "name": "Crocodile Tail", "price": 25, "stocked": true } |
70 | 54 | ] |
71 | 55 | } |
0 commit comments