I have a json file that I want to read A sample code from the file I have
[
{
"id": "bd91c44716e562f025eb70f7df083f2e",
"title": "ATP Australian Open",
"commence_time": "2022-01-18T03:24:34Z",
"bookmakers": [
{
"key": "corn",
"title": "corn",
"last_update": "2022-01-18T06:56:38Z",
"markets": [
{
"key": "spreads",
"outcomes": [
{
"name": "two",
"number": 56
},
{
"name": "one",
"point": -67
}
]
}
]
}
]
},
{
"id": "5d9a5870d42fa199d0ab330b4c3767ce",
"title": "Open",
"commence_time": "2022-01-18T04:07:20Z",
"bookmakers": [
As you can see, there are four parameters with similar names Now how do I get all four? I'm a novice, please help me