Numbers represent phase possession sequences. USA dominated in build-up, final-third entries, and counter-press; Paraguay's low phase counts reflect their defensive containment throughout.
| Player | Team | Distance (m) | Sprint Distance (m) | Top Speed (km/h) | Time Played (min) |
|---|---|---|---|---|---|
| Antonee Robinson | USA | 11,927 | 248 | 103.6 | |
| Weston McKennie | USA | 11,833 | 354 | 103.6 | |
| Andrés Cubas | PAR | 11,792 | 139 | 103.6 | |
| Tyler Adams | USA | 11,205 | 105 | 103.6 | |
| Alex Freeman | USA | 11,003 | 56 | 103.6 | |
| Chris Richards | USA | 10,830 | 42 | 103.6 | |
| Julio Enciso | PAR | 10,676 | 215 | 103.6 | |
| Junior Alonso | PAR | 10,277 | 149 | 103.6 | |
| Malik Tillman | USA | 9,570 | 221 | 86.6 | |
| Tim Ream (C) | USA | 9,655 | 90 | 103.6 |
| Player | Team | Goals | Assists | Distance (m) | Top Speed (km/h) | Time Played (min) |
|---|---|---|---|---|---|---|
| Folarin Balogun | USA | 2 | 0 | 7,742 | 30.82 | 76.8 |
| Giovanni Reyna | USA | 1 | 0 | 2,184 | 25.46 | 17.0 |
| Mauricio | PAR | 1 | 0 | 5,909 | 27.61 | 53.4 |
| Christian Pulisic | USA | 0 | 1 | 5,907 | 31.62 | 50.2 |
| Malik Tillman | USA | 0 | 1 | 9,570 | 30.47 | 86.6 |
| Julio Enciso | PAR | 0 | 1 | 10,676 | 33.26 | 103.6 |
The following queries can be run against the demo.openlinksw.com SPARQL endpoint to reproduce the data shown on this page.
PREFIX fifa: <https://www.openlinksw.com/ontology/fifa#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?goal ?minute ?periodLabel ?goalTypeLabel ?scorerName ?teamName
WHERE {
<http://demo.openlinksw.com/fifa-kg#match-400021458>
fifa:hasGoal ?goal .
?goal fifa:goalMinute ?minute .
OPTIONAL { ?goal fifa:goalPeriod ?p . ?p rdfs:label ?periodLabel }
OPTIONAL { ?goal fifa:goalType ?gt . ?gt rdfs:label ?goalTypeLabel }
OPTIONAL { ?goal fifa:player ?scorer . ?scorer rdfs:label ?scorerName }
OPTIONAL { ?goal fifa:team ?t . ?t rdfs:label ?teamName }
}
ORDER BY ?minute
PREFIX fifa: <https://www.openlinksw.com/ontology/fifa#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?teamName ?passes ?passesCompleted ?possession
?attemptAtGoal ?attemptAtGoalOnTarget ?goals ?yellowCards
WHERE {
<http://demo.openlinksw.com/fifa-kg#match-400021458>
fifa:hasTeamAnalyticsReport ?report .
OPTIONAL { ?report fifa:team ?t . ?t rdfs:label ?teamName }
OPTIONAL { ?report fifa:passes ?passes }
OPTIONAL { ?report fifa:passesCompleted ?passesCompleted }
OPTIONAL { ?report fifa:possession ?possession }
OPTIONAL { ?report fifa:attemptAtGoal ?attemptAtGoal }
OPTIONAL { ?report fifa:attemptAtGoalOnTarget ?attemptAtGoalOnTarget }
OPTIONAL { ?report fifa:goals ?goals }
OPTIONAL { ?report fifa:yellowCards ?yellowCards }
}
GROUP BY ?teamName ?passes ?passesCompleted ?possession
?attemptAtGoal ?attemptAtGoalOnTarget ?goals ?yellowCards
ORDER BY ?teamName
PREFIX fifa: <https://www.openlinksw.com/ontology/fifa#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?playerName ?teamName
?totalDistance ?distanceHighSpeedSprinting
?topSpeed ?timePlayed
WHERE {
<http://demo.openlinksw.com/fifa-kg#match-400021458>
fifa:hasPlayerAnalyticsReport ?report .
?report fifa:player ?player .
?player rdfs:label ?playerName .
OPTIONAL { ?report fifa:team ?t . ?t rdfs:label ?teamName }
OPTIONAL { ?report fifa:totalDistance ?totalDistance }
OPTIONAL { ?report fifa:distanceHighSpeedSprinting ?distanceHighSpeedSprinting }
OPTIONAL { ?report fifa:topSpeed ?topSpeed }
OPTIONAL { ?report fifa:timePlayed ?timePlayed }
}
GROUP BY ?playerName ?teamName ?totalDistance ?distanceHighSpeedSprinting
?topSpeed ?timePlayed
ORDER BY DESC(?totalDistance)
LIMIT 15