charantejapolavarapu commited on
Commit
1e0b5f3
·
verified ·
1 Parent(s): a52cd57

Update products.json

Browse files
Files changed (1) hide show
  1. products.json +37 -8
products.json CHANGED
@@ -1,23 +1,52 @@
1
  [
2
  {
 
3
  "name": "Rice",
4
  "brand": "India Gate",
5
- "price_per_unit": 60,
6
  "unit": "kg",
7
- "description": "Premium basmati rice"
 
 
8
  },
9
  {
 
10
  "name": "Milk",
11
  "brand": "Heritage",
12
- "price_per_unit": 28,
13
  "unit": "liter",
14
- "description": "Full cream milk"
 
 
15
  },
16
  {
17
- "name": "Sugar",
18
- "brand": "Madhur",
19
- "price_per_unit": 45,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  "unit": "kg",
21
- "description": "Refined white sugar"
 
 
22
  }
23
  ]
 
1
  [
2
  {
3
+ "id": 1,
4
  "name": "Rice",
5
  "brand": "India Gate",
6
+ "price": 60,
7
  "unit": "kg",
8
+ "stock": 100,
9
+ "category": "Groceries",
10
+ "image": "https://m.media-amazon.com/images/I/61fZ+YAYGaL.jpg"
11
  },
12
  {
13
+ "id": 2,
14
  "name": "Milk",
15
  "brand": "Heritage",
16
+ "price": 28,
17
  "unit": "liter",
18
+ "stock": 200,
19
+ "category": "Groceries",
20
+ "image": "https://m.media-amazon.com/images/I/51tPzYF1bDL.jpg"
21
  },
22
  {
23
+ "id": 3,
24
+ "name": "Bath Soap",
25
+ "brand": "Lux",
26
+ "price": 35,
27
+ "unit": "piece",
28
+ "stock": 150,
29
+ "category": "Personal Care",
30
+ "image": "https://m.media-amazon.com/images/I/61JfGcL2ljL.jpg"
31
+ },
32
+ {
33
+ "id": 4,
34
+ "name": "Shampoo",
35
+ "brand": "Clinic Plus",
36
+ "price": 120,
37
+ "unit": "bottle",
38
+ "stock": 80,
39
+ "category": "Personal Care",
40
+ "image": "https://m.media-amazon.com/images/I/61m2p6pLq9L.jpg"
41
+ },
42
+ {
43
+ "id": 5,
44
+ "name": "Detergent Powder",
45
+ "brand": "Surf Excel",
46
+ "price": 110,
47
  "unit": "kg",
48
+ "stock": 60,
49
+ "category": "Cleaning",
50
+ "image": "https://m.media-amazon.com/images/I/71o6vHc9CJL.jpg"
51
  }
52
  ]