-
Notifications
You must be signed in to change notification settings - Fork 10
/
data.json
72 lines (72 loc) · 1.05 KB
/
data.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
[
{
"id": "EVT_1",
"name": "Real Madrid vs Barcelona",
"markets": [
{
"id": "MKT_1",
"name": "Team to Win",
"selections": [
{
"id": "SEL_1",
"name": "Real Madrid",
"price": 1.23
},
{
"id": "SEL_2",
"name": "Barcelona",
"price": 2.05
}
]
},
{
"id": "MKT_2",
"name": "Player to Score First",
"selections": [
{
"id": "SEL_3",
"name": "Ronaldo",
"price": 1.15
},
{
"id": "SEL_4",
"name": "Messi",
"price": 1.30
},
{
"id": "SEL_5",
"name": "Bale",
"price": 1.35
}
]
}
]
},
{
"id": "EVT_2",
"name": "Atletico Madrid vs Malaga",
"markets": [
{
"id": "MKT_3",
"name": "Team to Win",
"selections": [
{
"id": "SEL_6",
"name": "Atletico",
"price": 1.40
},
{
"id": "SEL_7",
"name": "Malaga",
"price": 3.05
}
]
}
]
},
{
"id": "EVT_3",
"name": "Empty Event that shouldn't render",
"markets": []
}
]