-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
145 lines (145 loc) · 4.16 KB
/
db.json
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"products": [
{
"id": 1,
"name": "Driscoll’s Strawberries",
"description": "Driscoll’s Strawberries are consistently the best, sweetest, juiciest strawberries available. This size is the best selling, as it is both convenient for completing a cherished family recipes and for preparing a quick snack straight from the fridge.",
"price": 4.99,
"available": 0,
"weight": 1,
"perishable": true,
"categories": [
"produce",
"fruits"
]
},
{
"id": 2,
"name": "Nestle Toll House Cookie Dough",
"description": "Get the classic taste that America loves in a ready to bake dough. Full of our famous morsels, these cookies deliver the semi-sweet chocolate flavor youve come to expect from Nestle Toll House.",
"price": 7.49,
"available": 325,
"weight": 2.25,
"perishable": true,
"categories": [
"snacks",
"baking"
]
},
{
"id": 3,
"name": "Gotham Greens Gourmet Lettuce Medley",
"description": "This lovely blend features Gotham Greens' Tropicana green leaf, Red Sail red leaf, Oak leaf, Lollo Rossa and tender Butterhead lettuces. Perfect for a colorful salad that's (almost) grown right in your own backyard!",
"price": 3.49,
"available": 10,
"weight": 0.3,
"perishable": true,
"categories": [
"produce",
"vegetables"
]
},
{
"id": 4,
"name": "Gold Medal All Purpose Flour",
"description": "All-purpose bleached flour is great for just about everything but doesn't add any color. It's perfect for baked goods like white sandwich bread and cake.",
"price": 2.09,
"available": 299,
"weight": 2,
"perishable": false,
"categories": [
"baking"
]
},
{
"id": 5,
"name": "Honey Nut Cheerios",
"description": "You already know that Honey Nut Cheerios Naturally Flavored has the irresistible taste of golden honey, making it a family favorite. Something that everyone can smile about! ",
"price": 3.99,
"available": 400,
"weight": 0.68,
"perishable": false,
"categories": [
"breakfast"
]
},
{
"id": 6,
"name": "Eggo Nutri-Grain Whole Wheat Waffles",
"description": "Eggo® Nutri-Grain® waffles made with whole wheat have the same light and crispy texture as our original Eggo® Waffles, only with the added bonus of nutritious whole grain! ",
"price": 3.79,
"available": 236,
"weight": 0.25,
"perishable": true,
"categories": [
"breakfast",
"frozen"
]
},
{
"id": 7,
"name": "Amy's Cheese Pizza",
"description": "The classic favorite, made with our savory pizza sauce and grated part-skim mozzarella cheese.",
"price": 8.49,
"available": 125,
"weight": 0.81,
"perishable": true,
"categories": [
"frozen",
"snacks"
]
},
{
"id": 8,
"name": "Birds Eye Steamfresh Fresh Frozen Vegetable Mix",
"description": "Delicious Birds Eye vegetables in blends that are just right for side dishes and your recipes.",
"price": 2.99,
"available": 99,
"weight": 0.68,
"perishable": true,
"categories": [
"frozen",
"vegetables"
]
},
{
"id": 9,
"name": "Bare Coconut Chips",
"description": "Simply made with coconuts, cane sugar, and sea salt.",
"price": 4.99,
"available": 3,
"weight": 0.21,
"perishable": false,
"categories": [
"snacks"
]
},
{
"id": 10,
"name": "Snapple Peach Tea",
"description": "To Peach their own. Smooth Snapple tea, perfect peach flavor. We made it just for you from the Best Stuff on Earth.",
"price": 12.99,
"available": 4,
"weight": 12,
"perishable": false,
"categories": [
"beverages"
]
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
},
{
"id": 2,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode"
}
}