gokursu/db.json

33 lines
500 B
JSON
Raw Normal View History

2024-05-23 17:36:06 +00:00
{
"products": [
{
"id": "1",
"productName": "Laptop",
"categoryId": 1,
"unitPrice": 5000.99
}
{
"id": "2",
"productName": "Mouse",
"categoryId": 2,
"unitPrice": 50.99
}
{
"id": "3",
"productName": "Water",
"categoryId": 3,
"unitPrice": 0.99
}
],
"categories": [
{
"id": "1",
"categoryName": "Computers"
},
{
"id": "2",
"categoryName": "Beverages"
}
]
}