gokursu/db.json
2024-05-23 21:16:20 +03:00

24 lines
No EOL
413 B
JSON

{
"products": [
{ "id": 1,
"productName": "Laptop",
"categoryId": 1,
"unitPrice": 5000.99
},
{ "id": 2,
"productName": "Mouse",
"categoryId": 1,
"unitPrice": 50.99 },
{ "id": 3,
"productName": "Water",
"categoryId": 2,
"unitPrice": 0.99 }
],
"categories": [
{ "id": 1,
"categoryName": "Computers" },
{ "id": 2,
"categoryName": "Beverages" }
]
}