File size: 1,014 Bytes
9d2be7b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
    "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
        }
    ]
}