generated from jackyzha0/quartz
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstate.json
115 lines (106 loc) · 3.93 KB
/
state.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"State": {
"innings": {
"first": {
"battingTeam": "EEE",
"totalRuns": 56,
"over": 5.5,
"wicketsFallen": 4,
"Batting": {
"striker": { "name": "PlayerA", "runs": 34, "outReason": null },
"nonStriker": { "name": "PlayerD", "runs": 20, "outReason": null },
"order": [
{
"name": "PlayerX",
"runs": 0,
"status": "out",
"profileLink": "https://example.com/profile/playerx",
"outReason": ["b", "Bowler1", null]
},
{
"name": "PlayerY",
"runs": 10,
"status": "out",
"profileLink": "https://example.com/profile/playery",
"outReason": ["c", "Bowler2", "PlayerZ"]
},
{
"name": "PlayerZ",
"runs": 15,
"status": "out",
"profileLink": "https://example.com/profile/playerz",
"outReason": ["run_out", null, "PlayerX"]
},
{
"name": "PlayerB",
"runs": 5,
"status": "out",
"profileLink": "https://example.com/profile/playerb",
"outReason": ["st", "Bowler3", "WicketKeeperA"]
},
{
"name": "PlayerA",
"runs": 34,
"status": "not out",
"profileLink": "https://example.com/profile/playera",
"outReason": null
},
{
"name": "PlayerD",
"runs": 20,
"status": "not out",
"profileLink": "https://example.com/profile/playerd",
"outReason": null
}
]
},
"Bowling": {
"bowler": { "name": "Bowler1", "overs": 1.5, "runsConceded": 24, "wickets": 2 },
"currentOver": [
{ "ball": 1, "runs": 4, "illegal": null },
{ "ball": 2, "runs": 0, "illegal": "no_ball" },
{ "ball": 3, "runs": 1, "illegal": "free_hit_legal" },
{ "ball": 4, "runs": 0, "illegal": null },
{ "ball": 5, "runs": 6, "illegal": null },
{ "ball": 6, "runs": 0, "illegal": null },
{ "ball": 7, "runs": 0, "illegal": "wide" }
],
"order": [
{ "name": "Bowler1", "overs": 1.5, "runsConceded": 15, "wickets": 2, "profileLink": "https://example.com/profile/bowler1" },
{ "name": "Bowler2", "overs": 2.0, "runsConceded": 10, "wickets": 1, "profileLink": "https://example.com/profile/bowler2" },
{ "name": "Bowler3", "overs": 2.0, "runsConceded": 20, "wickets": 1, "profileLink": "https://example.com/profile/bowler3" }
],
"extras": { "noBalls": 1, "wides": 2, "byes": 0, "legByes": 0 }
},
"inningsStatus": "in_progress",
"target": null
},
"second": {
"battingTeam": "IT",
"totalRuns": 0,
"over": 0.0,
"wicketsFallen": 0,
"Batting": {
"striker": null,
"nonStriker": null,
"order": []
},
"Bowling": {
"bowler": null,
"currentOver": [],
"extras": { "noBalls": 0, "wides": 0, "byes": 0, "legByes": 0 }
},
"inningsStatus": "not_started",
"target": 57
}
},
"interrupted": "wet_outfield",
"teamACaptain": "CaptainA",
"teamBCaptain": "CaptainB",
"teamAWicketKeeper": "WicketKeeperA",
"teamBWicketKeeper": "WicketKeeperB",
"umpires": ["Umpire1", "Umpire2"],
"matchStatus": "in_progress",
"matchoutcome": ["EEE/IT/draw/no_result/null", "run/wickets/null", "32/4/null"]
}
}