@prefix : <#> .
@prefix schema: <http://schema.org/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix dbr: <http://dbpedia.org/resource/> .
@prefix wd: <http://www.wikidata.org/entity/> .

# ── Self-describing document ────────────────────────────────────────────────

<> a schema:CreativeWork ;
    schema:name "2026 FIFA World Cup — Knowledge Graph Meshup"@en ;
    schema:description "RDF knowledge graph combining data from Visual Capitalist (48 nations, groups, confederations) and The Guardian (team profiles, coaches, FIFA ranks, star players) for the 2026 FIFA World Cup."@en ;
    schema:about :worldCup2026 ;
    schema:dateCreated "2026-06-08T00:00:00Z"^^xsd:dateTime ;
    schema:dateModified "2026-06-09T18:00:00Z"^^xsd:dateTime ;
    schema:author <https://www.linkedin.com/in/kidehen#this> ;
    prov:wasDerivedFrom <https://www.visualcapitalist.com/every-country-playing-in-the-2026-world-cup/> ,
                        <https://www.theguardian.com/football/ng-interactive/2026/jun/04/world-cup-2026-complete-player-guide> ;
    prov:wasGeneratedBy <https://github.com/OpenLinkSoftware/ai-agent-skills/tree/main/kg-generator#this> .

# ── Source pages ────────────────────────────────────────────────────────────

<https://www.visualcapitalist.com/every-country-playing-in-the-2026-world-cup/> a schema:WebPage ;
    schema:name "Every Country Playing in the 2026 World Cup"@en ;
    schema:publisher <http://dbpedia.org/resource/Visual_Capitalist> ;
    schema:about :worldCup2026 .

<https://www.theguardian.com/football/ng-interactive/2026/jun/04/world-cup-2026-complete-player-guide> a schema:WebPage ;
    schema:name "World Cup 2026: complete player guide"@en ;
    schema:publisher <http://dbpedia.org/resource/The_Guardian> ;
    schema:about :worldCup2026 .

# ── Generating skill ────────────────────────────────────────────────────────

<https://github.com/OpenLinkSoftware/ai-agent-skills/tree/main/kg-generator#this> a schema:SoftwareApplication ;
    schema:name "kg-generator"@en ;
    schema:url <https://github.com/OpenLinkSoftware/ai-agent-skills/tree/main/kg-generator> .

# ── Custom property ─────────────────────────────────────────────────────────

:fifaWorldRanking a owl:DatatypeProperty ;
    rdfs:label "FIFA World Ranking"@en ;
    rdfs:range xsd:integer ;
    rdfs:domain schema:SportsTeam .

# ── Tournament ──────────────────────────────────────────────────────────────

:worldCup2026 a schema:SportsEvent ;
    schema:name "2026 FIFA World Cup"@en ;
    schema:alternateName "FIFA World Cup 2026"@en ;
    schema:description "The 23rd FIFA World Cup, hosted across 16 cities in the USA, Canada, and Mexico. First edition with 48 participating nations in 12 groups of 4."@en ;
    schema:startDate "2026-06-11"^^xsd:date ;
    schema:endDate "2026-07-19"^^xsd:date ;
    schema:location dbr:United_States , dbr:Canada , dbr:Mexico ;
    schema:organizer <http://dbpedia.org/resource/FIFA> ;
    schema:sport dbr:Association_football ;
    owl:sameAs dbr:2026_FIFA_World_Cup .

# ── Confederations ──────────────────────────────────────────────────────────

:uefa a schema:SportsOrganization ;
    schema:name "UEFA"@en ;
    schema:description "Union of European Football Associations — 16 teams in 2026 World Cup."@en ;
    schema:memberOf :worldCup2026 ;
    owl:sameAs dbr:UEFA .

:conmebol a schema:SportsOrganization ;
    schema:name "CONMEBOL"@en ;
    schema:description "South American Football Confederation — 6 teams in 2026 World Cup."@en ;
    schema:memberOf :worldCup2026 ;
    owl:sameAs dbr:CONMEBOL .

:concacaf a schema:SportsOrganization ;
    schema:name "CONCACAF"@en ;
    schema:description "Confederation of North, Central American and Caribbean Association Football — 6 teams including the three hosts (USA, Canada, Mexico)."@en ;
    schema:memberOf :worldCup2026 ;
    owl:sameAs dbr:CONCACAF .

:caf a schema:SportsOrganization ;
    schema:name "CAF"@en ;
    schema:description "Confederation of African Football — 9 teams in 2026 World Cup."@en ;
    schema:memberOf :worldCup2026 ;
    owl:sameAs dbr:Confederation_of_African_Football .

:afc a schema:SportsOrganization ;
    schema:name "AFC"@en ;
    schema:description "Asian Football Confederation — 8 teams in 2026 World Cup."@en ;
    schema:memberOf :worldCup2026 ;
    owl:sameAs dbr:Asian_Football_Confederation .

:ofc a schema:SportsOrganization ;
    schema:name "OFC"@en ;
    schema:description "Oceania Football Confederation — 1 team (New Zealand) in 2026 World Cup."@en ;
    schema:memberOf :worldCup2026 ;
    owl:sameAs dbr:Oceania_Football_Confederation .

# ── Groups ──────────────────────────────────────────────────────────────────

:groupA a schema:Event ;
    schema:name "Group A — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupB a schema:Event ;
    schema:name "Group B — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupC a schema:Event ;
    schema:name "Group C — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupD a schema:Event ;
    schema:name "Group D — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupE a schema:Event ;
    schema:name "Group E — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupF a schema:Event ;
    schema:name "Group F — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupG a schema:Event ;
    schema:name "Group G — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupH a schema:Event ;
    schema:name "Group H — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupI a schema:Event ;
    schema:name "Group I — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupJ a schema:Event ;
    schema:name "Group J — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupK a schema:Event ;
    schema:name "Group K — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

:groupL a schema:Event ;
    schema:name "Group L — 2026 FIFA World Cup"@en ;
    schema:superEvent :worldCup2026 .

# ── Teams — Group A ─────────────────────────────────────────────────────────

:teamCzechia a schema:SportsTeam ;
    schema:name "Czechia"@en ;
    schema:memberOf :groupA , :worldCup2026 , :uefa ;
    :fifaWorldRanking 41 ;
    schema:coach :coachKoubek ;
    schema:athlete :playerSchick ;
    owl:sameAs dbr:Czech_Republic_national_football_team , wd:Q483868 .

:coachKoubek a schema:Person ;
    schema:name "Ivan Hašek"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Ivan_Ha%C5%A1ek , wd:Q31376 .

:playerSchick a schema:Person ;
    schema:name "Patrik Schick"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Patrik_Schick , wd:Q16910257 .

:teamMexico a schema:SportsTeam ;
    schema:name "Mexico"@en ;
    schema:description "Host nation."@en ;
    schema:memberOf :groupA , :worldCup2026 , :concacaf ;
    :fifaWorldRanking 15 ;
    schema:coach :coachAguirre ;
    schema:athlete :playerJimenez ;
    owl:sameAs dbr:Mexico_national_football_team , wd:Q164089 .

:coachAguirre a schema:Person ;
    schema:name "Javier Aguirre"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Javier_Aguirre , wd:Q194311 .

:playerJimenez a schema:Person ;
    schema:name "Raúl Jiménez"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Ra%C3%BAl_Jim%C3%A9nez> , wd:Q1925465 .

:teamSouthAfrica a schema:SportsTeam ;
    schema:name "South Africa"@en ;
    schema:memberOf :groupA , :worldCup2026 , :caf ;
    :fifaWorldRanking 60 ;
    schema:coach :coachBroos ;
    schema:athlete :playerMokoena ;
    owl:sameAs dbr:South_Africa_national_football_team , wd:Q170327 .

:coachBroos a schema:Person ;
    schema:name "Hugo Broos"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Hugo_Broos , wd:Q2224676 .

:playerMokoena a schema:Person ;
    schema:name "Teboho Mokoena"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Teboho_Mokoena , wd:Q101677113 .

:teamSouthKorea a schema:SportsTeam ;
    schema:name "South Korea"@en ;
    schema:memberOf :groupA , :worldCup2026 , :afc ;
    :fifaWorldRanking 25 ;
    schema:coach :coachHongMyungbo ;
    schema:athlete :playerSonHeungmin ;
    owl:sameAs dbr:South_Korea_national_football_team , wd:Q543842 .

:coachHongMyungbo a schema:Person ;
    schema:name "Hong Myung-bo"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs <http://dbpedia.org/resource/Hong_Myung-bo> , wd:Q313940 .

:playerSonHeungmin a schema:Person ;
    schema:name "Son Heung-min"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Son_Heung-min> , wd:Q439722 .

# ── Teams — Group B ─────────────────────────────────────────────────────────

:teamBosnia a schema:SportsTeam ;
    schema:name "Bosnia and Herzegovina"@en ;
    schema:memberOf :groupB , :worldCup2026 , :uefa ;
    :fifaWorldRanking 64 ;
    schema:coach :coachBarbarez ;
    schema:athlete :playerDzeko ;
    owl:sameAs dbr:Bosnia_and_Herzegovina_national_football_team , wd:Q181190 .

:coachBarbarez a schema:Person ;
    schema:name "Sergej Barbarez"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Sergej_Barbarez , wd:Q431455 .

:playerDzeko a schema:Person ;
    schema:name "Edin Džeko"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Edin_D%C5%BEeko> , wd:Q153786 .

:teamCanada a schema:SportsTeam ;
    schema:name "Canada"@en ;
    schema:description "Host nation."@en ;
    schema:memberOf :groupB , :worldCup2026 , :concacaf ;
    :fifaWorldRanking 30 ;
    schema:coach :coachMarsch ;
    schema:athlete :playerDavies ;
    owl:sameAs <http://dbpedia.org/resource/Canada_men%27s_national_soccer_team> , wd:Q208635 .

:coachMarsch a schema:Person ;
    schema:name "Jesse Marsch"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Jesse_Marsch , wd:Q1336179 .

:playerDavies a schema:Person ;
    schema:name "Alphonso Davies"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Alphonso_Davies , wd:Q23540953 .

:teamQatar a schema:SportsTeam ;
    schema:name "Qatar"@en ;
    schema:memberOf :groupB , :worldCup2026 , :afc ;
    :fifaWorldRanking 55 ;
    schema:coach :coachLopetegui ;
    schema:athlete :playerAfif ;
    owl:sameAs dbr:Qatar_national_football_team , wd:Q232731 .

:coachLopetegui a schema:Person ;
    schema:name "Julen Lopetegui"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Julen_Lopetegui , wd:Q115119 .

:playerAfif a schema:Person ;
    schema:name "Akram Afif"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Akram_Afif , wd:Q19882804 .

:teamSwitzerland a schema:SportsTeam ;
    schema:name "Switzerland"@en ;
    schema:memberOf :groupB , :worldCup2026 , :uefa ;
    :fifaWorldRanking 19 ;
    schema:coach :coachYakin ;
    schema:athlete :playerXhaka ;
    owl:sameAs dbr:Switzerland_national_football_team , wd:Q165141 .

:coachYakin a schema:Person ;
    schema:name "Murat Yakin"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Murat_Yakin , wd:Q113245 .

:playerXhaka a schema:Person ;
    schema:name "Granit Xhaka"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Granit_Xhaka , wd:Q514427 .

# ── Teams — Group C ─────────────────────────────────────────────────────────

:teamBrazil a schema:SportsTeam ;
    schema:name "Brazil"@en ;
    schema:memberOf :groupC , :worldCup2026 , :conmebol ;
    :fifaWorldRanking 6 ;
    schema:coach :coachAncelotti ;
    schema:athlete :playerVinicius ;
    owl:sameAs dbr:Brazil_national_football_team , wd:Q83459 .

:coachAncelotti a schema:Person ;
    schema:name "Carlo Ancelotti"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Carlo_Ancelotti , wd:Q174614 .

:playerVinicius a schema:Person ;
    schema:name "Vinícius Júnior"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Vin%C3%ADcius_J%C3%BAnior> , wd:Q28973866 .

:teamHaiti a schema:SportsTeam ;
    schema:name "Haiti"@en ;
    schema:memberOf :groupC , :worldCup2026 , :concacaf ;
    :fifaWorldRanking 82 ;
    schema:coach :coachMigne ;
    schema:athlete :playerIsidor ;
    owl:sameAs dbr:Haiti_national_football_team , wd:Q236006 .

:coachMigne a schema:Person ;
    schema:name "Marc Wilmots"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Marc_Wilmots , wd:Q346427 .

:playerIsidor a schema:Person ;
    schema:name "Frantzdy Pierrot"@en ;
    schema:jobTitle "Footballer"@en .

:teamMorocco a schema:SportsTeam ;
    schema:name "Morocco"@en ;
    schema:memberOf :groupC , :worldCup2026 , :caf ;
    :fifaWorldRanking 7 ;
    schema:coach :coachOuahbi ;
    schema:athlete :playerHakimi ;
    owl:sameAs dbr:Morocco_national_football_team , wd:Q207337 .

:coachOuahbi a schema:Person ;
    schema:name "Walid Regragui"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Walid_Regragui , wd:Q3052128 .

:playerHakimi a schema:Person ;
    schema:name "Achraf Hakimi"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Achraf_Hakimi , wd:Q26932598 .

:teamScotland a schema:SportsTeam ;
    schema:name "Scotland"@en ;
    schema:memberOf :groupC , :worldCup2026 , :uefa ;
    :fifaWorldRanking 43 ;
    schema:coach :coachClarke ;
    schema:athlete :playerMcTominay ;
    owl:sameAs dbr:Scotland_national_football_team , wd:Q34044 .

:coachClarke a schema:Person ;
    schema:name "Steve Clarke"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs <http://dbpedia.org/resource/Steve_Clarke_(footballer)> , wd:Q379535 .

:playerMcTominay a schema:Person ;
    schema:name "Scott McTominay"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Scott_McTominay , wd:Q29624459 .

# ── Teams — Group D ─────────────────────────────────────────────────────────

:teamAustralia a schema:SportsTeam ;
    schema:name "Australia"@en ;
    schema:memberOf :groupD , :worldCup2026 , :afc ;
    :fifaWorldRanking 27 ;
    schema:coach :coachPopovic ;
    schema:athlete :playerIrvine ;
    owl:sameAs dbr:Australia_national_soccer_team , wd:Q115799259 .

:coachPopovic a schema:Person ;
    schema:name "Tony Popovic"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Tony_Popovic , wd:Q361247 .

:playerIrvine a schema:Person ;
    schema:name "Jackson Irvine"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Jackson_Irvine , wd:Q10544594 .

:teamParaguay a schema:SportsTeam ;
    schema:name "Paraguay"@en ;
    schema:memberOf :groupD , :worldCup2026 , :conmebol ;
    :fifaWorldRanking 40 ;
    schema:coach :coachAlfaro ;
    schema:athlete :playerEnciso ;
    owl:sameAs dbr:Paraguay_national_football_team , wd:Q172020 .

:coachAlfaro a schema:Person ;
    schema:name "Gustavo Alfaro"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Gustavo_Alfaro , wd:Q5621337 .

:playerEnciso a schema:Person ;
    schema:name "Julio Enciso"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Julio_Enciso , wd:Q87301049 .

:teamTurkiye a schema:SportsTeam ;
    schema:name "Türkiye"@en ;
    schema:memberOf :groupD , :worldCup2026 , :uefa ;
    :fifaWorldRanking 22 ;
    schema:coach :coachMontella ;
    schema:athlete :playerGuler ;
    owl:sameAs dbr:Turkey_national_football_team , wd:Q483856 .

:coachMontella a schema:Person ;
    schema:name "Vincenzo Montella"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Vincenzo_Montella , wd:Q297768 .

:playerGuler a schema:Person ;
    schema:name "Arda Güler"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Arda_G%C3%BCler> , wd:Q108159340 .

:teamUSA a schema:SportsTeam ;
    schema:name "United States"@en ;
    schema:description "Host nation."@en ;
    schema:memberOf :groupD , :worldCup2026 , :concacaf ;
    :fifaWorldRanking 16 ;
    schema:coach :coachPochettino ;
    schema:athlete :playerPulisic ;
    owl:sameAs <http://dbpedia.org/resource/United_States_men%27s_national_soccer_team> , wd:Q164134 .

:coachPochettino a schema:Person ;
    schema:name "Mauricio Pochettino"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Mauricio_Pochettino , wd:Q313000 .

:playerPulisic a schema:Person ;
    schema:name "Christian Pulisic"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Christian_Pulisic , wd:Q22279773 .

# ── Teams — Group E ─────────────────────────────────────────────────────────

:teamCuracao a schema:SportsTeam ;
    schema:name "Curaçao"@en ;
    schema:description "World Cup debut."@en ;
    schema:memberOf :groupE , :worldCup2026 , :concacaf ;
    :fifaWorldRanking 83 ;
    schema:coach :coachAdvocat ;
    schema:athlete :playerBacuna ;
    owl:sameAs <http://dbpedia.org/resource/Cura%C3%A7ao_national_football_team> , wd:Q729640 .

:coachAdvocat a schema:Person ;
    schema:name "Dick Advocaat"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Dick_Advocaat , wd:Q11949 .

:playerBacuna a schema:Person ;
    schema:name "Leandro Bacuna"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Leandro_Bacuna , wd:Q249344 .

:teamEcuador a schema:SportsTeam ;
    schema:name "Ecuador"@en ;
    schema:memberOf :groupE , :worldCup2026 , :conmebol ;
    :fifaWorldRanking 24 ;
    schema:coach :coachBeccacece ;
    schema:athlete :playerCaicedo ;
    owl:sameAs dbr:Ecuador_national_football_team , wd:Q987584 .

:coachBeccacece a schema:Person ;
    schema:name "Sebastián Beccacece"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Sebasti%C3%A1n_Beccacece , wd:Q7442628 .

:playerCaicedo a schema:Person ;
    schema:name "Moisés Caicedo"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Mois%C3%A9s_Caicedo> , wd:Q87715532 .

:teamGermany a schema:SportsTeam ;
    schema:name "Germany"@en ;
    schema:memberOf :groupE , :worldCup2026 , :uefa ;
    :fifaWorldRanking 10 ;
    schema:coach :coachNagelsmann ;
    schema:athlete :playerWirtz ;
    owl:sameAs dbr:Germany_national_football_team , wd:Q43310 .

:coachNagelsmann a schema:Person ;
    schema:name "Julian Nagelsmann"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Julian_Nagelsmann , wd:Q21226404 .

:playerWirtz a schema:Person ;
    schema:name "Florian Wirtz"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Florian_Wirtz , wd:Q94699949 .

:teamCoteDIvoire a schema:SportsTeam ;
    schema:name "Côte d'Ivoire"@en ;
    schema:memberOf :groupE , :worldCup2026 , :caf ;
    :fifaWorldRanking 34 ;
    schema:coach :coachFae ;
    schema:athlete :playerPepe ;
    owl:sameAs <http://dbpedia.org/resource/Ivory_Coast_national_football_team> , wd:Q175145 .

:coachFae a schema:Person ;
    schema:name "Emerse Faé"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Emerse_Fa%C3%A9 , wd:Q726238 .

:playerPepe a schema:Person ;
    schema:name "Nicolas Pépé"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Nicolas_P%C3%A9p%C3%A9> , wd:Q20641306 .

# ── Teams — Group F ─────────────────────────────────────────────────────────

:teamJapan a schema:SportsTeam ;
    schema:name "Japan"@en ;
    schema:memberOf :groupF , :worldCup2026 , :afc ;
    :fifaWorldRanking 18 ;
    schema:coach :coachMoriyasu ;
    schema:athlete :playerKubo ;
    owl:sameAs dbr:Japan_national_football_team , wd:Q170566 .

:coachMoriyasu a schema:Person ;
    schema:name "Hajime Moriyasu"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Hajime_Moriyasu , wd:Q2428403 .

:playerKubo a schema:Person ;
    schema:name "Takefusa Kubo"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Takefusa_Kubo , wd:Q27067753 .

:teamNetherlands a schema:SportsTeam ;
    schema:name "Netherlands"@en ;
    schema:memberOf :groupF , :worldCup2026 , :uefa ;
    :fifaWorldRanking 8 ;
    schema:coach :coachKoeman ;
    schema:athlete :playerVanDijk ;
    owl:sameAs dbr:Netherlands_national_football_team , wd:Q47050 .

:coachKoeman a schema:Person ;
    schema:name "Ronald Koeman"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Ronald_Koeman , wd:Q192635 .

:playerVanDijk a schema:Person ;
    schema:name "Virgil van Dijk"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Virgil_van_Dijk , wd:Q133903 .

:teamSweden a schema:SportsTeam ;
    schema:name "Sweden"@en ;
    schema:memberOf :groupF , :worldCup2026 , :uefa ;
    :fifaWorldRanking 38 ;
    schema:coach :coachPotter ;
    schema:athlete :playerIsak ;
    owl:sameAs dbr:Sweden_national_football_team , wd:Q127925698 .

:coachPotter a schema:Person ;
    schema:name "Graham Potter"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Graham_Potter , wd:Q5593150 .

:playerIsak a schema:Person ;
    schema:name "Alexander Isak"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Alexander_Isak , wd:Q23759917 .

:teamTunisia a schema:SportsTeam ;
    schema:name "Tunisia"@en ;
    schema:memberOf :groupF , :worldCup2026 , :caf ;
    :fifaWorldRanking 46 ;
    schema:coach :coachLamouchi ;
    schema:athlete :playerMejbri ;
    owl:sameAs dbr:Tunisia_national_football_team , wd:Q27971 .

:coachLamouchi a schema:Person ;
    schema:name "Sabri Lamouchi"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Sabri_Lamouchi , wd:Q1883 .

:playerMejbri a schema:Person ;
    schema:name "Hannibal Mejbri"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Hannibal_Mejbri , wd:Q96755704 .

# ── Teams — Group G ─────────────────────────────────────────────────────────

:teamBelgium a schema:SportsTeam ;
    schema:name "Belgium"@en ;
    schema:memberOf :groupG , :worldCup2026 , :uefa ;
    :fifaWorldRanking 9 ;
    schema:coach :coachGarcia ;
    schema:athlete :playerDeBruyne ;
    owl:sameAs dbr:Belgium_national_football_team , wd:Q166776 .

:coachGarcia a schema:Person ;
    schema:name "Rudi Garcia"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Rudi_Garcia , wd:Q923131 .

:playerDeBruyne a schema:Person ;
    schema:name "Kevin De Bruyne"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Kevin_De_Bruyne , wd:Q357984 .

:teamEgypt a schema:SportsTeam ;
    schema:name "Egypt"@en ;
    schema:memberOf :groupG , :worldCup2026 , :caf ;
    :fifaWorldRanking 29 ;
    schema:coach :coachHossamHassan ;
    schema:athlete :playerSalah ;
    owl:sameAs dbr:Egypt_national_football_team , wd:Q28089 .

:coachHossamHassan a schema:Person ;
    schema:name "Hossam Hassan"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Hossam_Hassan , wd:Q448937 .

:playerSalah a schema:Person ;
    schema:name "Mohamed Salah"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Mohamed_Salah , wd:Q1354960 .

:teamIran a schema:SportsTeam ;
    schema:name "Iran"@en ;
    schema:memberOf :groupG , :worldCup2026 , :afc ;
    :fifaWorldRanking 21 ;
    schema:coach :coachGhalenoei ;
    schema:athlete :playerTaremi ;
    owl:sameAs dbr:Iran_national_football_team , wd:Q184602 .

:coachGhalenoei a schema:Person ;
    schema:name "Amir Ghalenoei"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Amir_Ghalenoei , wd:Q472003 .

:playerTaremi a schema:Person ;
    schema:name "Mehdi Taremi"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Mehdi_Taremi , wd:Q17070837 .

:teamNewZealand a schema:SportsTeam ;
    schema:name "New Zealand"@en ;
    schema:memberOf :groupG , :worldCup2026 , :ofc ;
    :fifaWorldRanking 85 ;
    schema:coach :coachBazeley ;
    schema:athlete :playerWood ;
    owl:sameAs dbr:New_Zealand_national_football_team , wd:Q136682891 .

:coachBazeley a schema:Person ;
    schema:name "Darren Bazeley"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Darren_Bazeley , wd:Q8353918 .

:playerWood a schema:Person ;
    schema:name "Chris Wood"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Chris_Wood_(footballer)> , wd:Q18913420 .

# ── Teams — Group H ─────────────────────────────────────────────────────────

:teamCaboVerde a schema:SportsTeam ;
    schema:name "Cabo Verde"@en ;
    schema:description "World Cup debut."@en ;
    schema:memberOf :groupH , :worldCup2026 , :caf ;
    :fifaWorldRanking 68 ;
    schema:coach :coachBubista ;
    schema:athlete :playerLivramento ;
    owl:sameAs dbr:Cape_Verde_national_football_team , wd:Q330039 .

:coachBubista a schema:Person ;
    schema:name "Pedro Brito 'Bubista'"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Bubista , wd:Q99597038 .

:playerLivramento a schema:Person ;
    schema:name "Tino Livramento"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Tino_Livramento , wd:Q107930811 .

:teamSaudiArabia a schema:SportsTeam ;
    schema:name "Saudi Arabia"@en ;
    schema:memberOf :groupH , :worldCup2026 , :afc ;
    :fifaWorldRanking 61 ;
    schema:coach :coachDonis ;
    schema:athlete :playerAlDawsari ;
    owl:sameAs dbr:Saudi_Arabia_national_football_team , wd:Q189723 .

:coachDonis a schema:Person ;
    schema:name "Herve Renard"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Herv%C3%A9_Renard , wd:Q463158 .

:playerAlDawsari a schema:Person ;
    schema:name "Salem Al-Dawsari"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Salem_Al-Dawsari , wd:Q3945419 .

:teamSpain a schema:SportsTeam ;
    schema:name "Spain"@en ;
    schema:memberOf :groupH , :worldCup2026 , :uefa ;
    :fifaWorldRanking 2 ;
    schema:coach :coachDeLaFuente ;
    schema:athlete :playerYamal ;
    owl:sameAs dbr:Spain_national_football_team , wd:Q42267 .

:coachDeLaFuente a schema:Person ;
    schema:name "Luis de la Fuente"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs <http://dbpedia.org/resource/Luis_de_la_Fuente_(footballer)> , wd:Q3840425 .

:playerYamal a schema:Person ;
    schema:name "Lamine Yamal"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Lamine_Yamal , wd:Q113704154 .

:teamUruguay a schema:SportsTeam ;
    schema:name "Uruguay"@en ;
    schema:memberOf :groupH , :worldCup2026 , :conmebol ;
    :fifaWorldRanking 17 ;
    schema:coach :coachBielsa ;
    schema:athlete :playerValverde ;
    owl:sameAs dbr:Uruguay_national_football_team , wd:Q134916 .

:coachBielsa a schema:Person ;
    schema:name "Marcelo Bielsa"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Marcelo_Bielsa , wd:Q31575 .

:playerValverde a schema:Person ;
    schema:name "Federico Valverde"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Federico_Valverde , wd:Q19509544 .

# ── Teams — Group I ─────────────────────────────────────────────────────────

:teamFrance a schema:SportsTeam ;
    schema:name "France"@en ;
    schema:memberOf :groupI , :worldCup2026 , :uefa ;
    :fifaWorldRanking 1 ;
    schema:coach :coachDeschamps ;
    schema:athlete :playerMbappe ;
    owl:sameAs dbr:France_national_football_team , wd:Q47774 .

:coachDeschamps a schema:Person ;
    schema:name "Didier Deschamps"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Didier_Deschamps , wd:Q508711 .

:playerMbappe a schema:Person ;
    schema:name "Kylian Mbappé"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Kylian_Mbapp%C3%A9> , wd:Q21621995 .

:teamIraq a schema:SportsTeam ;
    schema:name "Iraq"@en ;
    schema:memberOf :groupI , :worldCup2026 , :afc ;
    :fifaWorldRanking 57 ;
    schema:coach :coachArnold ;
    schema:athlete :playerHussein ;
    owl:sameAs dbr:Iraq_national_football_team , wd:Q186243 .

:coachArnold a schema:Person ;
    schema:name "Graham Arnold"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Graham_Arnold , wd:Q1336203 .

:playerHussein a schema:Person ;
    schema:name "Aymen Hussein"@en ;
    schema:jobTitle "Footballer"@en .

:teamNorway a schema:SportsTeam ;
    schema:name "Norway"@en ;
    schema:memberOf :groupI , :worldCup2026 , :uefa ;
    :fifaWorldRanking 31 ;
    schema:coach :coachSolbakken ;
    schema:athlete :playerHaaland ;
    owl:sameAs dbr:Norway_national_football_team , wd:Q184387 .

:coachSolbakken a schema:Person ;
    schema:name "Ståle Solbakken"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs <http://dbpedia.org/resource/St%C3%A5le_Solbakken> , wd:Q455291 .

:playerHaaland a schema:Person ;
    schema:name "Erling Haaland"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Erling_Haaland , wd:Q28967995 .

:teamSenegal a schema:SportsTeam ;
    schema:name "Senegal"@en ;
    schema:memberOf :groupI , :worldCup2026 , :caf ;
    :fifaWorldRanking 14 ;
    schema:coach :coachThiaw ;
    schema:athlete :playerMane ;
    owl:sameAs dbr:Senegal_national_football_team , wd:Q207441 .

:coachThiaw a schema:Person ;
    schema:name "Aliou Cissé"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Aliou_Ciss%C3%A9 , wd:Q2604671 .

:playerMane a schema:Person ;
    schema:name "Sadio Mané"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Sadio_Man%C3%A9> , wd:Q209942 .

# ── Teams — Group J ─────────────────────────────────────────────────────────

:teamAlgeria a schema:SportsTeam ;
    schema:name "Algeria"@en ;
    schema:memberOf :groupJ , :worldCup2026 , :caf ;
    :fifaWorldRanking 28 ;
    schema:coach :coachPetkovic ;
    schema:athlete :playerMahrez ;
    owl:sameAs dbr:Algeria_national_football_team , wd:Q181903 .

:coachPetkovic a schema:Person ;
    schema:name "Vladimir Petkovic"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Vladimir_Petković , wd:Q123937 .

:playerMahrez a schema:Person ;
    schema:name "Riyad Mahrez"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Riyad_Mahrez , wd:Q8338725 .

:teamArgentina a schema:SportsTeam ;
    schema:name "Argentina"@en ;
    schema:memberOf :groupJ , :worldCup2026 , :conmebol ;
    :fifaWorldRanking 3 ;
    schema:coach :coachScaloni ;
    schema:athlete :playerMessi ;
    owl:sameAs dbr:Argentina_national_football_team , wd:Q79800 .

:coachScaloni a schema:Person ;
    schema:name "Lionel Scaloni"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Lionel_Scaloni , wd:Q311586 .

:playerMessi a schema:Person ;
    schema:name "Lionel Messi"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Lionel_Messi , wd:Q615 .

:teamAustria a schema:SportsTeam ;
    schema:name "Austria"@en ;
    schema:memberOf :groupJ , :worldCup2026 , :uefa ;
    :fifaWorldRanking 23 ;
    schema:coach :coachRangnick ;
    schema:athlete :playerLaimer ;
    owl:sameAs dbr:Austria_national_football_team , wd:Q163534 .

:coachRangnick a schema:Person ;
    schema:name "Ralf Rangnick"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Ralf_Rangnick , wd:Q57902 .

:playerLaimer a schema:Person ;
    schema:name "Konrad Laimer"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Konrad_Laimer , wd:Q18670270 .

:teamJordan a schema:SportsTeam ;
    schema:name "Jordan"@en ;
    schema:description "World Cup debut."@en ;
    schema:memberOf :groupJ , :worldCup2026 , :afc ;
    :fifaWorldRanking 63 ;
    schema:coach :coachSellami ;
    schema:athlete :playerAlTamari ;
    owl:sameAs dbr:Jordan_national_football_team , wd:Q275940 .

:coachSellami a schema:Person ;
    schema:name "Jamal Sellami"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Jamal_Sellami , wd:Q2407770 .

:playerAlTamari a schema:Person ;
    schema:name "Musa Al-Tamari"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Musa_Al-Tamari .

# ── Teams — Group K ─────────────────────────────────────────────────────────

:teamColombia a schema:SportsTeam ;
    schema:name "Colombia"@en ;
    schema:memberOf :groupK , :worldCup2026 , :conmebol ;
    :fifaWorldRanking 13 ;
    schema:coach :coachLorenzo ;
    schema:athlete :playerDiaz ;
    owl:sameAs dbr:Colombia_national_football_team , wd:Q212564 .

:coachLorenzo a schema:Person ;
    schema:name "Néstor Lorenzo"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:N%C3%A9stor_Lorenzo , wd:Q655975 .

:playerDiaz a schema:Person ;
    schema:name "Luis Díaz"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Luis_D%C3%ADaz_(footballer)> , wd:Q1642173 .

:teamDRCongo a schema:SportsTeam ;
    schema:name "DR Congo"@en ;
    schema:memberOf :groupK , :worldCup2026 , :caf ;
    :fifaWorldRanking 45 ;
    schema:coach :coachDesabre ;
    schema:athlete :playerWissa ;
    owl:sameAs <http://dbpedia.org/resource/DR_Congo_national_football_team> , wd:Q270080 .

:coachDesabre a schema:Person ;
    schema:name "Sébastien Desabre"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:S%C3%A9bastien_Desabre , wd:Q3510036 .

:playerWissa a schema:Person ;
    schema:name "Yoane Wissa"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Yoane_Wissa , wd:Q28101965 .

:teamPortugal a schema:SportsTeam ;
    schema:name "Portugal"@en ;
    schema:memberOf :groupK , :worldCup2026 , :uefa ;
    :fifaWorldRanking 5 ;
    schema:coach :coachMartinez ;
    schema:athlete :playerRonaldo ;
    owl:sameAs dbr:Portugal_national_football_team , wd:Q267245 .

:coachMartinez a schema:Person ;
    schema:name "Roberto Martínez"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs <http://dbpedia.org/resource/Roberto_Mart%C3%ADnez_(manager)> , wd:Q357994 .

:playerRonaldo a schema:Person ;
    schema:name "Cristiano Ronaldo"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Cristiano_Ronaldo , wd:Q11571 .

:teamUzbekistan a schema:SportsTeam ;
    schema:name "Uzbekistan"@en ;
    schema:description "World Cup debut."@en ;
    schema:memberOf :groupK , :worldCup2026 , :afc ;
    :fifaWorldRanking 50 ;
    schema:coach :coachCannavaro ;
    schema:athlete :playerKhusanov ;
    owl:sameAs dbr:Uzbekistan_national_football_team , wd:Q487321 .

:coachCannavaro a schema:Person ;
    schema:name "Fabio Cannavaro"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Fabio_Cannavaro , wd:Q102027 .

:playerKhusanov a schema:Person ;
    schema:name "Abdukodir Khusanov"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Abdukodir_Khusanov , wd:Q111479885 .

# ── Teams — Group L ─────────────────────────────────────────────────────────

:teamCroatia a schema:SportsTeam ;
    schema:name "Croatia"@en ;
    schema:memberOf :groupL , :worldCup2026 , :uefa ;
    :fifaWorldRanking 11 ;
    schema:coach :coachDalic ;
    schema:athlete :playerModric ;
    owl:sameAs dbr:Croatia_national_football_team , wd:Q134479 .

:coachDalic a schema:Person ;
    schema:name "Zlatko Dalić"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs <http://dbpedia.org/resource/Zlatko_Dali%C4%87> , wd:Q8072990 .

:playerModric a schema:Person ;
    schema:name "Luka Modrić"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs <http://dbpedia.org/resource/Luka_Modri%C4%87> , wd:Q483837 .

:teamEngland a schema:SportsTeam ;
    schema:name "England"@en ;
    schema:memberOf :groupL , :worldCup2026 , :uefa ;
    :fifaWorldRanking 4 ;
    schema:coach :coachTuchel ;
    schema:athlete :playerKane ;
    owl:sameAs dbr:England_national_football_team , wd:Q47762 .

:coachTuchel a schema:Person ;
    schema:name "Thomas Tuchel"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Thomas_Tuchel , wd:Q702233 .

:playerKane a schema:Person ;
    schema:name "Harry Kane"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Harry_Kane , wd:Q969725 .

:teamGhana a schema:SportsTeam ;
    schema:name "Ghana"@en ;
    schema:memberOf :groupL , :worldCup2026 , :caf ;
    :fifaWorldRanking 73 ;
    schema:coach :coachQueiroz ;
    schema:athlete :playerSemenyo ;
    owl:sameAs dbr:Ghana_national_football_team , wd:Q172014 .

:coachQueiroz a schema:Person ;
    schema:name "Carlos Queiroz"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Carlos_Queiroz , wd:Q313209 .

:playerSemenyo a schema:Person ;
    schema:name "Antoine Semenyo"@en ;
    schema:jobTitle "Footballer"@en ;
    owl:sameAs dbr:Antoine_Semenyo , wd:Q52990659 .

:teamPanama a schema:SportsTeam ;
    schema:name "Panama"@en ;
    schema:memberOf :groupL , :worldCup2026 , :concacaf ;
    :fifaWorldRanking 33 ;
    schema:coach :coachChristiansen ;
    schema:athlete :playerMurillo ;
    owl:sameAs dbr:Panama_national_football_team , wd:Q223748 .

:coachChristiansen a schema:Person ;
    schema:name "Thomas Christiansen"@en ;
    schema:jobTitle "Head Coach"@en ;
    owl:sameAs dbr:Thomas_Christiansen , wd:Q505800 .

:playerMurillo a schema:Person ;
    schema:name "Édgar Murillo"@en ;
    schema:jobTitle "Footballer"@en .

# ── Notable facts ───────────────────────────────────────────────────────────

:fact1 a schema:Observation ;
    schema:description "The 2026 FIFA World Cup is the first edition with 48 participating teams — up from 32 — organised into 12 groups of 4."@en ;
    schema:about :worldCup2026 .

:fact2 a schema:Observation ;
    schema:description "Five teams are making their World Cup debuts in 2026: Curaçao, Cabo Verde, Jordan, and Uzbekistan."@en ;
    schema:about :worldCup2026 .

:fact3 a schema:Observation ;
    schema:description "France (FIFA rank 1), Spain (rank 2), and Argentina (rank 3) are the top-ranked sides heading into the 2026 World Cup."@en ;
    schema:about :worldCup2026 .

:fact4 a schema:Observation ;
    schema:description "The three host nations — USA, Canada, and Mexico — are drawn into Groups D, B, and A respectively."@en ;
    schema:about :worldCup2026 .
