-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.json
75 lines (75 loc) · 1.63 KB
/
example.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"variants": [
"Jeep",
"Hyundai Accent",
"Mazda MX5"
],
"criteria": [
"Size",
"Offroad",
"Maintenance Cost",
"Look",
"Cost",
"Comfort"
],
"comparison_variants": [
{
"criterion": "Size",
"variant": "Jeep",
"comparisons": [
{"name": "Hyundai Accent", "value": "3"},
{"name": "Mazda MX5", "value": "6"}
]
},
{
"criterion": "Offroad",
"variant": "Jeep",
"comparisons": [
{"name": "Hyundai Accent", "value": "7"},
{"name": "Mazda MX5", "value": "9"}
]
},
{
"criterion": "Maintenance Cost",
"variant": "Jeep",
"comparisons": [
{"name": "Hyundai Accent", "value": "1/2"},
{"name": "Mazda MX5", "value": "1/3"}
]
},
{
"criterion": "Look",
"variant": "Jeep",
"comparisons": [
{"name": "Hyundai Accent", "value": "1"},
{"name": "Mazda MX5", "value": "1/7"}
]
},
{
"criterion": "Cost",
"variant": "Jeep",
"comparisons": [
{"name": "Hyundai Accent", "value": "2"},
{"name": "Mazda MX5", "value": "4"}
]
},
{
"criterion": "Comfort",
"variant": "Jeep",
"comparisons": [
{"name": "Hyundai Accent", "value": "5"},
{"name": "Mazda MX5", "value": "1/2"}
]
}
],
"comparison_criteria": {
"criterion": "Size",
"comparisons": [
{"name": "Offroad", "value": "2"},
{"name": "Maintenance Cost", "value": "3"},
{"name": "Look", "value": "1/5"},
{"name": "Cost", "value": "3"},
{"name": "Comfort", "value": "5"}
]
}
}