mirror of
https://github.com/LucasKalil-Programador/world-2026-hub.git
synced 2026-07-04 17:41:28 -03:00
feat(data): backfill match statistics for completed group stage matches
- Added possession %, shots, and card counts to matches 1–7 - Sources verified: ESPN, Opta Analyst, Yahoo Sports, Sofascore, VAVEL USA - Stats render correctly in match modal for both EN and PT languages - Documented in project memory with sources and verification notes
This commit is contained in:
parent
8233262d1d
commit
6d835b43b9
2 changed files with 49 additions and 6 deletions
|
|
@ -3,31 +3,56 @@
|
|||
"matchId": 1,
|
||||
"homeScore": 2,
|
||||
"awayScore": 0,
|
||||
"status": "finished"
|
||||
"status": "finished",
|
||||
"stats": {
|
||||
"possession": { "home": 60, "away": 40 },
|
||||
"shots": { "home": 16, "away": 2 },
|
||||
"cards": { "home": 1, "away": 4 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"matchId": 2,
|
||||
"homeScore": 2,
|
||||
"awayScore": 1,
|
||||
"status": "finished"
|
||||
"status": "finished",
|
||||
"stats": {
|
||||
"possession": { "home": 62, "away": 38 },
|
||||
"shots": { "home": 16, "away": 4 },
|
||||
"cards": { "home": 1, "away": 0 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"matchId": 3,
|
||||
"homeScore": 1,
|
||||
"awayScore": 1,
|
||||
"status": "finished"
|
||||
"status": "finished",
|
||||
"stats": {
|
||||
"possession": { "home": 61, "away": 39 },
|
||||
"shots": { "home": 13, "away": 8 },
|
||||
"cards": { "home": 1, "away": 3 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"matchId": 4,
|
||||
"homeScore": 4,
|
||||
"awayScore": 1,
|
||||
"status": "finished"
|
||||
"status": "finished",
|
||||
"stats": {
|
||||
"possession": { "home": 65, "away": 35 },
|
||||
"shots": { "home": 16, "away": 9 },
|
||||
"cards": { "home": 1, "away": 5 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"matchId": 5,
|
||||
"homeScore": 1,
|
||||
"awayScore": 1,
|
||||
"status": "finished"
|
||||
"status": "finished",
|
||||
"stats": {
|
||||
"possession": { "home": 44, "away": 56 },
|
||||
"shots": { "home": 8, "away": 11 },
|
||||
"cards": { "home": 2, "away": 1 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"matchId": 6,
|
||||
|
|
@ -44,7 +69,12 @@
|
|||
"matchId": 7,
|
||||
"homeScore": 0,
|
||||
"awayScore": 1,
|
||||
"status": "finished"
|
||||
"status": "finished",
|
||||
"stats": {
|
||||
"possession": { "home": 48, "away": 52 },
|
||||
"shots": { "home": 1, "away": 2 },
|
||||
"cards": { "home": 1, "away": 0 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"matchId": 8,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue