-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
28 lines (28 loc) · 768 Bytes
/
db.json
File metadata and controls
28 lines (28 loc) · 768 Bytes
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
{
"inventory_items": [
{
"product_id": 1,
"name": "LENOVO B111 8TH GEN",
"category": "PC",
"initial_stock": 500,
"current_stock": 9,
"product": {
"id": 1,
"title": "Lenovo B111",
"price": 900.0,
"suppliers": [
{
"id": 1,
"name": "Supplier A",
"address": "Supplier direction"
},
{
"id": 1,
"name": "Supplier B",
"address": "Supplier direction 2"
}
]
}
}
]
}