-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
62 lines (62 loc) · 1.02 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
{
"products": [
{
"id": 1,
"productName": "Laptop",
"categoryId": 1,
"UnitPrice": 500.99
},
{
"id": 2,
"productName": "Mouse",
"categoryId": 1,
"UnitPrice": 50.99
},
{
"id": 3,
"productName": "Water",
"categoryId": 2,
"UnitPrice": 0.99
},
{
"id": 4,
"productName": "Telephone",
"categoryId": 1,
"unitPrice": 6000
},
{
"id": 5,
"productName": "Microphone",
"categoryId": 1,
"unitPrice": 2000
},
{
"id": 8,
"productName": "Microphone",
"categoryId": 1,
"unitPrice": 2000
},
{
"id": 12,
"productName": "Microphone2",
"categoryId": 1,
"unitPrice": 2000
},
{
"id": 13,
"productName": "Microphone3",
"categoryId": 1,
"unitPrice": 2000
}
],
"categories": [
{
"id": 1,
"categoryName": "Technology"
},
{
"id": 2,
"categoryName": "Beverages"
}
]
}