-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
50 lines (50 loc) · 825 Bytes
/
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
{
"products": [
{
"id": 1,
"productName": "Laptop",
"categoryId": "1",
"unitPrice": 590.1
},
{
"id": 2,
"productName": "Mouse",
"categoryId": "1",
"unitPrice": 100.5
},
{
"id": 3,
"productName": "Battery",
"categoryId": "1",
"unitPrice": 450.99
},
{
"id": 4,
"productName": "Charging",
"categoryId": 1,
"unitPrice": 500
},
{
"id": 5,
"productName": "Microphone",
"categoryId": 1,
"unitPrice": 2500
},
{
"id": 6,
"productName": "Telephone",
"categoryId": 1,
"unitPrice": 17000
}
],
"categories": [
{
"id": 1,
"categoryName": "Computers"
},
{
"id": 2,
"categoryName": "Technology"
}
]
}