-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
69 lines (67 loc) · 1.3 KB
/
data.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
[{
"productId": "P004",
"productName": "Product 4",
"qtyPerUnit": 20,
"unitPrice": 15,
"unitInStock": 200,
"discontinued": false,
"categoryId": "C003"
},{
"productId": "P005",
"productName": "Product 5",
"qtyPerUnit": 8,
"unitPrice": 40,
"unitInStock": 120,
"discontinued": true,
"categoryId": "C002"
},{
"productId": "P006",
"productName": "Product 6",
"qtyPerUnit": 12,
"unitPrice": 35,
"unitInStock": 150,
"discontinued": false,
"categoryId": "C001"
},{
"productId": "P007",
"productName": "Product 7",
"qtyPerUnit": 25,
"unitPrice": 10,
"unitInStock": 300,
"discontinued": false,
"categoryId": "C003"
},{
"productId": "P008",
"productName": "Product 8",
"qtyPerUnit": 18,
"unitPrice": 22,
"unitInStock": 90,
"discontinued": true,
"categoryId": "C002"
},{
"productId": "P009",
"productName": "Product 9",
"qtyPerUnit": 6,
"unitPrice": 50,
"unitInStock": 60,
"discontinued": false,
"categoryId": "C003"
},{
"productId": "P010",
"productName": "Product 10",
"qtyPerUnit": 14,
"unitPrice": 18,
"unitInStock": 180,
"discontinued": false,
"categoryId": "C001"
},
{
"productId": "P011",
"productName": "Product 11",
"qtyPerUnit": 20,
"unitPrice": 40,
"unitInStock": 200,
"discontinued": true,
"categoryId": "C003"
}
]