Hole | Wins | Losses | Score | +10 |
---|---|---|---|---|
1 | 3 | 6 | +2 | Dbl Bogey (+2) |
2 | 4 | 5 | +3 | Bogey (+1) |
3 | 6 | 3 | +2 | Birdie (-1) |
4 | 1 | 8 | +6 | Quadruple Bogey (+4) |
5 | 2 | 7 | +9 | Trpl Bogey (+3) |
6 | 4 | 5 | +10 | Bogey (+1) |
7 | ||||
Avg | 3 | 6 | +2 | Dbl Bogey |
Here is the data in a JSON format:
{
"games": [
{
"team": "Arizona",
"opponent": "Atlanta Braves",
"score": "5-0"
},
{
"team": "Arizona",
"opponent": "Chicago White Sox",
"score": "10-2"
},
{
"team": "Arizona",
"opponent": "Houston Astros",
"score": "5-2"
},
{
"team": "Arizona",
"opponent": "Milwaukee Brewers",
"score": "4-2"
},
{
"team": "Arizona",
"opponent": "Philadelphia Phillies",
"score": "13-2"
},
{
"team": "Arizona",
"opponent": "San Diego Padres",
"score": "0-5"
},
{
"team": "Arizona",
"opponent": "St. Louis Cardinals",
"score": "1-0"
}
]
}
However, the data you provided is not in a JSON format. It appears to be a list of strings representing baseball games, with each string containing information about a single game (e.g. "Arizona 5, Atlanta Braves 0").
Here's a possible way to parse and organize this data into a more structured format:
{
"games": [
{
"date": "",
"team": "",
"opponent": "",
"score": ""
},
{
"date": "",
"team": "",
"opponent": "",
"score": ""
},
{
"date": "",
"team": "",
"opponent": "",
"score": ""
},
...
]
}
And here's the data in a JSON format:
{
"games": [
{"date":"","team":"Arizona","opponent":"Atlanta Braves","score":"5-0"},
{"date":"","team":"Arizona","opponent":"Chicago White Sox","score":"10-2"},
{"date":"","team":"Arizona","opponent":"Houston Astros","score":"5-2"},
{"date":"","team":"Arizona","opponent":"Milwaukee Brewers","score":"4-2"},
{"date":"","team":"Arizona","opponent":"Philadelphia Phillies","score":"13-2"},
{"date":"","team":"Arizona","opponent":"San Diego Padres","score":"0-5"},
{"date":"","team":"Arizona","opponent":"St. Louis Cardinals","score":"1-0"}
]
}
Updated: June 26, 2025 at 9:36 PM