lol040604lol commited on
Commit
9d2be7b
·
verified ·
1 Parent(s): 4fb44e7

Create data/sap_data.json

Browse files
Files changed (1) hide show
  1. data/sap_data.json +45 -0
data/sap_data.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vendors": [
3
+ {
4
+ "id": "V001",
5
+ "name": "ABC Supplies",
6
+ "rating": 4.6,
7
+ "delivery_time": 5,
8
+ "category": "Electronics"
9
+ },
10
+ {
11
+ "id": "V002",
12
+ "name": "SmartVendor",
13
+ "rating": 4.2,
14
+ "delivery_time": 7,
15
+ "category": "Electronics"
16
+ },
17
+ {
18
+ "id": "V003",
19
+ "name": "TechTraders",
20
+ "rating": 3.9,
21
+ "delivery_time": 10,
22
+ "category": "Electronics"
23
+ }
24
+ ],
25
+ "products": [
26
+ {
27
+ "id": "P101",
28
+ "name": "Dell Laptop",
29
+ "vendor_id": "V001",
30
+ "price": 48000
31
+ },
32
+ {
33
+ "id": "P102",
34
+ "name": "HP Laptop",
35
+ "vendor_id": "V002",
36
+ "price": 50000
37
+ },
38
+ {
39
+ "id": "P103",
40
+ "name": "Lenovo Laptop",
41
+ "vendor_id": "V003",
42
+ "price": 47000
43
+ }
44
+ ]
45
+ }