Skip to content

Instantly share code, notes, and snippets.

@BexTuychiev
Created September 12, 2024 12:25
Show Gist options
  • Save BexTuychiev/f9c30f43128c14438856d222276a68ed to your computer and use it in GitHub Desktop.
Save BexTuychiev/f9c30f43128c14438856d222276a68ed to your computer and use it in GitHub Desktop.
{
"league": {
"name": "Premier League"
},
"clubs": [
{
"name": "Manchester United",
"founded_year": 1878
},
{
"name": "Liverpool",
"founded_year": 1892
},
{
"name": "Arsenal",
"founded_year": 1886
}
],
"matches": [
{
"date": "2023-08-13",
"score": "2-1"
},
{
"date": "2023-08-20",
"score": "0-0"
},
{
"date": "2023-08-27",
"score": "3-2"
},
{
"date": "2023-09-03",
"score": "1-1"
},
{
"date": "2023-09-10",
"score": "2-2"
}
],
"players": [
{
"name": "Bruno Fernandes",
"age": 28,
"position": "Midfielder",
"club": "Manchester United"
},
{
"name": "Marcus Rashford",
"age": 25,
"position": "Forward",
"club": "Manchester United"
},
{
"name": "Harry Maguire",
"age": 30,
"position": "Defender",
"club": "Manchester United"
},
{
"name": "Luke Shaw",
"age": 28,
"position": "Defender",
"club": "Manchester United"
},
{
"name": "David de Gea",
"age": 32,
"position": "Goalkeeper",
"club": "Manchester United"
},
{
"name": "Mohamed Salah",
"age": 31,
"position": "Forward",
"club": "Liverpool"
},
{
"name": "Virgil van Dijk",
"age": 32,
"position": "Defender",
"club": "Liverpool"
},
{
"name": "Trent Alexander-Arnold",
"age": 24,
"position": "Defender",
"club": "Liverpool"
},
{
"name": "Alisson",
"age": 30,
"position": "Goalkeeper",
"club": "Liverpool"
},
{
"name": "Jordan Henderson",
"age": 33,
"position": "Midfielder",
"club": "Liverpool"
},
{
"name": "Bukayo Saka",
"age": 21,
"position": "Forward",
"club": "Arsenal"
},
{
"name": "Martin Ødegaard",
"age": 24,
"position": "Midfielder",
"club": "Arsenal"
},
{
"name": "Gabriel Jesus",
"age": 26,
"position": "Forward",
"club": "Arsenal"
},
{
"name": "William Saliba",
"age": 22,
"position": "Defender",
"club": "Arsenal"
},
{
"name": "Aaron Ramsdale",
"age": 25,
"position": "Goalkeeper",
"club": "Arsenal"
}
],
"coaches": [
{
"name": "Erik ten Hag",
"age": 53,
"club": "Manchester United"
},
{
"name": "Jürgen Klopp",
"age": 56,
"club": "Liverpool"
},
{
"name": "Mikel Arteta",
"age": 41,
"club": "Arsenal"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment