NeoProcure / data /sap_data.json
lol040604lol's picture
Create data/sap_data.json
9d2be7b verified
{
"vendors": [
{
"id": "V001",
"name": "ABC Supplies",
"rating": 4.6,
"delivery_time": 5,
"category": "Electronics"
},
{
"id": "V002",
"name": "SmartVendor",
"rating": 4.2,
"delivery_time": 7,
"category": "Electronics"
},
{
"id": "V003",
"name": "TechTraders",
"rating": 3.9,
"delivery_time": 10,
"category": "Electronics"
}
],
"products": [
{
"id": "P101",
"name": "Dell Laptop",
"vendor_id": "V001",
"price": 48000
},
{
"id": "P102",
"name": "HP Laptop",
"vendor_id": "V002",
"price": 50000
},
{
"id": "P103",
"name": "Lenovo Laptop",
"vendor_id": "V003",
"price": 47000
}
]
}