Is there a way to extract specific keys from this Json data?
I am looking to filter for "in_play" = true and "country" = "KR"
Here is a snippet of the large Json dataset:
Thank you!
{
"status": 200,
"errors": [],
"pagination": [],
"result": [
{
"id": "657efe5af506ea14",
"date": "2022-10-30 05:00:00",
"timer": "53:45",
"est_e_time": false,
"in_play": true,
"championship": {
"id": "bbdd811b816f199",
"name": "South Korea Cup",
"s_name": null,
"country": "KR"
}
{
"id": "25e94c1ff62386",
"date": "2022-10-30 05:00:00",
"timer": "51:15",
"est_e_time": false,
"in_play": true,
"championship": {
"id": "8e912fa760018f76",
"name": "Japan J2-League",
"s_name": null,
"country": "JP"
}
],